/*
Theme Name: Linebet APK
Theme URI: https://dev.linebet-apk.website
Description: Custom theme for Linebet APK landing page
Version: 1.0
Author: Dev Team
Text Domain: linebet-apk
*/

/* === FONTS === */
@font-face {
    font-family: 'Aqum';
    src: url('assets/fonts/Aqum.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* === RESET & GLOBALS === */
*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #f1f1f1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #323232;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1632px) {
    .container {
        padding: 0 12px;
    }
}

/* === MAIN === */
.main {
    padding-bottom: 100px;
}

/* === HEADER === */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    z-index: 10;
}
.header__inner {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 40px;
    width: 100%;
    z-index: 10;
    border-radius: 40px;
}
.header__logo {
    object-fit: contain;
    display: block;
    width: 118px;
    height: 38px;
}
@media screen and (max-width: 600px) {
    .header__logo {
        min-width: 90px;
        min-height: 30px;
    }
}

/* === LANGUAGES === */
.languages {
    position: relative;
}
.languages__title {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    color: #121212;
    cursor: default;
}
.languages__chevron {
    transition: transform 0.3s linear;
    width: 24px;
    height: 24px;
}
.languages__chevron.active {
    transform: rotate(180deg);
}
.languages__list {
    position: absolute;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    background-color: #FFF5F59C;
    list-style-type: none;
    width: 80px;
    border-radius: 10px;
    border-top-right-radius: 0;
    right: 0;
    z-index: 10;
}
.languages__list.active {
    max-height: 1000px;
    transition: max-height 0.3s ease-in;
}
.languages__list li:first-child {
    margin-top: 25px;
}
.languages__list li {
    padding-left: 10px;
    cursor: pointer;
    color: #121212;
    display: flex;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    align-items: center;
}
.languages__list li a {
    display: flex;
    align-items: center;
}
.languages__list li img {
    margin-right: 8px;
    width: 18px;
    height: auto;
}

/* === PROMO (HERO) === */
.promo {
    height: 100vh;
    min-height: 960px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/images/promo.jpg') center center/cover no-repeat;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    position: relative;
}
@media screen and (max-width: 1160px) {
    .promo {
        padding-top: 270px;
        min-height: 730px;
    }
}
@media screen and (max-width: 650px) {
    .promo {
        padding: 270px 0 100px;
    }
}
.promo__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo__description {
    width: 49%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 1160px) {
    .promo__description {
        width: 100%;
    }
}
.promo__description h1 {
    margin-bottom: 32px;
    text-align: center;
}
@media screen and (max-width: 1160px) {
    .promo__description h1 {
        text-align: center;
        font-size: 41px;
    }
}

/* === HEADINGS === */
h1, h2, h3 {
    text-transform: uppercase;
}
.heading-aqum {
    font-family: 'Aqum', sans-serif;
}
.heading-inter {
    font-family: 'Inter', sans-serif;
}
h1 {
    font-size: 56px;
    font-weight: 700;
}
@media screen and (max-width: 850px) {
    h1 { font-size: 44px; }
}
@media screen and (max-width: 650px) {
    h1 { font-size: 32px; }
}
h2 {
    font-size: 36px;
    color: #323232;
    font-weight: 700;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
.heading-light {
    color: #FFF;
}
.heading-green {
    color: #32674E;
}
.heading-dark {
    color: #323232;
}
.heading-fz44 {
    font-size: 44px;
}
@media screen and (max-width: 750px) {
    .heading-fz44 {
        font-size: 28px;
    }
}

/* === DOWNLOAD LINK (BUTTON) === */
.download-link {
    display: inline-block;
    background: linear-gradient(180deg, #FFF3B7 0%, #FFD600 100%);
    border: 2px solid #FFC400;
    color: #614C07;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    font-size: 24px;
    border-radius: 60px;
    padding: 27px 50px;
    transition: 0.2s linear all;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
@media screen and (max-width: 1160px) {
    .download-link {
        padding: 24px 46px;
        font-size: 18px;
    }
}

/* === TABLE OF CONTENTS === */
.toc-wrapper {
    padding-top: 120px;
    padding-bottom: 40px;
}
@media screen and (max-width: 650px) {
    .toc-wrapper {
        padding: 28px 0;
    }
}
.toc-inner {
    background-color: #FFFFFF;
    padding: 60px;
    box-shadow: 0px 0px 20px 0px #00000026;
    border-radius: 40px;
}
@media screen and (max-width: 980px) {
    .toc-inner {
        padding: 40px 20px;
    }
}
.toc-inner h2 {
    margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
    .toc-inner h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
}
.toc-list {
    padding-left: 20px;
    list-style: disc;
}
.toc-list li {
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s linear;
    font-size: 20px;
    line-height: 24px;
}
@media screen and (max-width: 650px) {
    .toc-list li {
        font-size: 16px;
    }
}
@media (hover: hover) {
    .toc-list li:hover {
        color: #2CB85F;
    }
}
.toc-list li:not(:last-child) {
    margin-bottom: 20px;
}
@media screen and (max-width: 650px) {
    .toc-list li:not(:last-child) {
        margin-bottom: 15px;
    }
}
.toc-download {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
@media screen and (max-width: 980px) {
    .toc-download .download-link {
        padding: 24px 0;
        width: 100%;
    }
}

/* === CONTENT SECTIONS === */
.section:not(:last-child) {
    margin-bottom: 40px;
}
.section__inner {
    position: relative;
    display: flex;
    gap: 40px;
}
@media screen and (max-width: 1230px) {
    .section__inner {
        gap: 20px;
    }
}
@media screen and (max-width: 980px) {
    .section__inner {
        flex-direction: column-reverse;
        align-items: center;
    }
}
.section__inner.reverse {
    flex-direction: row-reverse;
}
@media screen and (max-width: 980px) {
    .section__inner.reverse {
        flex-direction: column-reverse;
        align-items: center;
    }
}
.section__content {
    flex: 1;
    padding: 29px 40px 24px;
    background-color: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0px 0px 20px 0px #00000026;
}
@media screen and (max-width: 650px) {
    .section__content {
        padding: 24px 20px;
    }
}
.section__content h2 {
    margin-bottom: 25px;
}
@media screen and (max-width: 800px) {
    .section__content h2 {
        font-size: 20px;
    }
}
.section__content p,
.section__content ul {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}
.section__content ul {
    padding-left: 20px;
    list-style: disc;
}
.section__content strong {
    color: #323232;
    font-size: 20px;
    font-weight: 700;
}
.section__content .num {
    margin-right: 12px;
    color: #2CB85F;
    font-weight: 700;
}
.section__img {
    display: block;
    object-fit: cover;
    border-radius: 24px;
    width: 431px;
}
@media screen and (max-width: 650px) {
    .section__img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* === DOWNLOAD LINK CENTER === */
.download-center {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 1160px) {
    .download-center {
        margin: 28px 0;
    }
}

/* === REVIEWS === */
.review {
    box-shadow: 0px 0px 20px 0px #00000026;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 40px;
    column-gap: 210px;
}
@media screen and (max-width: 1160px) {
    .review {
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 1100px) {
    .review {
        padding: 80px 12px 24px;
    }
}
.review__wrapper {
    width: 40%;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 1160px) {
    .review__wrapper {
        width: 100%;
    }
}
@media screen and (max-width: 650px) {
    .review__wrapper {
        justify-content: flex-start;
    }
}
.review__skew {
    position: absolute;
    background-color: #FFC400;
    width: 200px;
    height: 100%;
    left: 35%;
    top: 0;
    transform: skewX(330deg);
    z-index: -1;
}
@media screen and (max-width: 1340px) {
    .review__skew {
        width: 150px;
        left: 30%;
    }
}
@media screen and (max-width: 1160px) {
    .review__skew {
        left: 40%;
    }
}
@media screen and (max-width: 650px) {
    .review__skew {
        width: 100px;
        left: 20%;
    }
}
@media screen and (max-width: 460px) {
    .review__skew {
        left: 30%;
    }
}
.review__img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 650px) {
    .review__img {
        width: 100%;
        object-fit: contain;
        height: inherit;
    }
}
.review__content {
    max-width: 576px;
    width: 100%;
    position: relative;
    padding: 40px;
}
.review__content h3 {
    margin-bottom: 24px;
}
@media screen and (max-width: 650px) {
    .review__content h3 {
        margin-bottom: 8px;
        font-size: 20px;
        text-transform: none;
    }
}
.review__content p {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}
.review__article-symbol {
    position: absolute;
    top: 0;
    left: -120px;
}
@media screen and (max-width: 1000px) {
    .review__article-symbol {
        width: 47px;
        height: 40px;
        left: 0;
        top: -50px;
    }
}

/* === 404 PAGE === */
.error-404 {
    padding: 200px 0 100px;
}
.error-404__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}
.error-404__inner h1 {
    font-size: 120px;
    line-height: 1;
}
.error-404__inner p {
    font-size: 20px;
    font-weight: 500;
    color: #323232;
}

/* === FOOTER === */
.footer {
    box-shadow: 0px 0px 20px 0px #00000026;
    background-color: #FFFFFF;
    padding: 20px 0 47px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
@media screen and (max-width: 600px) {
    .footer {
        padding: 20px 0 40px;
    }
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__logo {
    flex: 1;
}
.footer__logo-img {
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
    width: 140px;
    height: 40px;
}
.footer__logo p {
    font-size: 16px;
    width: 50%;
    color: #7F7F7F;
}
@media screen and (max-width: 1200px) {
    .footer__logo p {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .footer__logo p {
        font-size: 10px;
    }
}
.footer__support {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.footer__socials {
    display: flex;
    list-style-type: none;
    justify-content: center;
    margin-bottom: 10px;
}
.footer__socials li:not(:last-child) {
    margin-right: 10px;
}
.footer__socials li a img {
    width: 32px;
    height: 32px;
}
.footer__support dl {
    display: flex;
    flex-direction: column;
}
.footer__support dd {
    margin-top: 5px;
}
.footer__support dt {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #3EB581;
    text-align: right;
}
@media screen and (max-width: 600px) {
    .footer__support dt {
        font-size: 16px;
    }
}
.footer__support a {
    display: flex;
    justify-content: flex-end;
    color: #3EB581;
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    .footer__support a {
        font-size: 12px;
    }
}

/* === GAMBLING WARNING === */
.gambling-warning {
    padding: 10px 0;
    font-size: 12px;
    color: #7F7F7F;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gambling-warning a {
    color: #3EB581;
}
