/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --blue1:#1a6ef5;
    --blue2:#0f4fd4;
    --blue3:#0a2e91;

    --yellow:#ffe000;

    --bg:#081120;
    --card:#101b2d;
    --card2:#122038;

    --text:#ffffff;
    --muted:#9cb3d9;

    --border:rgba(255,255,255,.08);

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --radius:24px;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    min-height:100vh;
    min-height:100dvh;

    overscroll-behavior:none;

    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
}

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

.container{
    width:min(1280px,92%);
    margin:auto;
}

/* =========================================================
   BACKGROUND
========================================================= */

.bg-gradient{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(26,110,245,.28),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,224,0,.10),
    transparent 25%),

    #081120;

    z-index:-3;
}

.bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.16;

    z-index:-2;
}

.glow1{

    width:320px;
    height:320px;

    background:#1a6ef5;

    top:-100px;
    left:-100px;
}

.glow2{

    width:280px;
    height:280px;

    background:#ffe000;

    right:-100px;
    bottom:-100px;
}

/* =========================================================
   PREMIUM HEADER
========================================================= */

.app-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding-top:
    calc(14px + env(safe-area-inset-top));
    
    padding-bottom:
    calc(6px + env(safe-area-inset-top));
}

.premium-navbar{

    height:74px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    padding:0 18px;

    border-radius:24px;

    background:
    linear-gradient(180deg,
    rgba(18,32,56,.88),
    rgba(10,20,38,.82));

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    rgba(10,20,38,.94);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* =========================================================
   BRAND
========================================================= */

.brand-wrap{

    display:flex;

    align-items:center;

    gap:14px;

    flex-shrink:0;
}

.logo-box{

    width:48px;
    height:48px;

    border-radius:16px;

    background:
    linear-gradient(135deg,
    rgba(255,224,0,.12),
    rgba(26,110,245,.18));

    border:
    1px solid rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08);
}

.brand-logo{

    width:30px;
    height:30px;

    object-fit:contain;
}

.brand-text{

    font-size:26px;

    font-weight:900;

    letter-spacing:-1px;
}

.brand-text span{

    color:var(--yellow);
}

/* =========================================================
   NAVIGATION
========================================================= */

.desktop-nav{

    display:flex;

    align-items:center;

    gap:12px;
}

.nav-link{

    position:relative;

    height:46px;

    padding:0 18px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--muted);

    font-size:14px;

    font-weight:700;

    transition:.25s;
}

.nav-link:hover{

    color:#fff;

    background:
    rgba(255,255,255,.05);
}

.active-nav{

    color:#fff;

    background:
    linear-gradient(135deg,
    rgba(26,110,245,.24),
    rgba(15,79,212,.12));

    border:
    1px solid rgba(255,255,255,.06);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05);
}

/* =========================================================
   ACTIONS
========================================================= */

.header-actions{

    display:flex;

    align-items:center;

    gap:12px;
}

.premium-login-btn,
.premium-join-btn{

    height:46px;

    padding:0 22px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:800;

    transition:.25s;
}

.premium-login-btn{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;
}

.premium-login-btn:hover{

    background:
    rgba(255,255,255,.08);
}

.premium-join-btn{

    background:
    linear-gradient(135deg,
    var(--yellow),
    #ffbf00);

    color:#111;

    box-shadow:
    0 12px 30px rgba(255,224,0,.22),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.premium-join-btn:hover{

    transform:
    translateY(-2px);
}

/* =========================================================
   SCROLLED HEADER
========================================================= */

.scrolled-header .premium-navbar{

    background:
    rgba(10,18,32,.94);

    box-shadow:
    0 25px 70px rgba(0,0,0,.45);
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px){

    .desktop-nav{

        display:none;
    }

    .premium-navbar{

        height:66px;

        padding:0 10px;

        border-radius:20px;
    }

    .brand-text{

        font-size:22px;
    }

    .logo-box{

        width:42px;
        height:42px;
    }

    .brand-logo{

        width:26px;
        height:26px;
    }
}

@media(max-width:520px){

    .premium-navbar{

        height:62px;

        padding:0 8px;
    }

    .premium-join-btn{

        display:none;
    }

    .premium-login-btn{

        height:40px;

        padding:0 18px;

        border-radius:14px;

        font-size: 15px;
        
        color: var(--yellow);
        
        border-color: var(--yellow);
    }

    .brand-text{

        font-size:20px;
    }

    .brand-logo{

        width:66px;
        height:auto;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero-section{

    padding-top:130px;
    padding-bottom:90px;

    position:relative;
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:60px;

    align-items:center;
}

.live-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    color:var(--yellow);

    font-size:13px;

    font-weight:800;

    margin-bottom:28px;
}

.live-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#1eff6d;
}

.hero-title{

    font-size:78px;

    line-height:.98;

    letter-spacing:-4px;

    font-weight:900;

    margin-bottom:28px;
}

.hero-title span{
    color:var(--yellow);
}

.hero-description{

    max-width:620px;

    color:var(--muted);

    font-size:18px;

    line-height:1.8;

    margin-bottom:38px;
}

.hero-actions{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:48px;

    flex-wrap:wrap;
}

.hero-btn-primary,
.hero-btn-secondary{

    height:60px;

    padding:0 32px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:800;

    transition:.25s;
}

.hero-btn-primary{

    background:linear-gradient(135deg,
    var(--yellow),
    #ffbf00);

    color:#111;
}

.hero-btn-secondary{

    border:1px solid var(--border);

    background:rgba(255,255,255,.05);

    color:var(--text);
}

.hero-stats{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.hero-stat-card{

    min-width:170px;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);
}

.hero-stat-card strong{

    display:block;

    font-size:28px;

    font-weight:900;

    color:var(--yellow);

    margin-bottom:8px;
}

.hero-stat-card span{

    color:var(--muted);

    font-size:13px;

    font-weight:600;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual{

    position:relative;
}

.main-game-card{

    background:linear-gradient(180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03));

    border:1px solid var(--border);

    border-radius:32px;

    overflow:hidden;

    box-shadow:var(--shadow);
}

.game-card-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:22px 24px;
}

.game-live-pill{

    display:flex;

    align-items:center;

    gap:8px;

    color:#1eff6d;

    font-size:12px;

    font-weight:800;
}

.game-live-pill span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#1eff6d;
}

.players-count{

    color:var(--muted);

    font-size:13px;

    font-weight:700;
}

.main-game-image{

    width:100%;

    aspect-ratio:16/11;

    object-fit:cover;
}

.main-game-content{

    padding:28px;
}

.main-game-content h3{

    font-size:34px;

    font-weight:900;

    margin-bottom:10px;
}

.main-game-content p{

    color:var(--muted);

    line-height:1.7;

    margin-bottom:18px;
}

.game-prize{

    color:var(--yellow);

    font-size:28px;

    font-weight:900;
}

.floating-win-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:18px;

    background:#101b2d;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    animation:floaty 4s ease-in-out infinite;
}

.floating1{

    top:-20px;
    right:-20px;
}

.floating2{

    bottom:-20px;
    left:-20px;

    animation-delay:1s;
}

.winner-avatar{

    width:44px;
    height:44px;

    border-radius:50%;

    background:linear-gradient(135deg,
    var(--blue1),
    var(--blue2));

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;
}

.floating-win-card strong{

    display:block;

    color:var(--yellow);

    margin-top:4px;
}

@keyframes floaty{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

/* =========================================================
   FINAL iPHONE FIXED MOBILE NAV
========================================================= */

.mobile-bottom-nav{

    position:fixed;

    left:12px;
    right:12px;

    bottom:calc(8px + env(safe-area-inset-bottom));

    height:78px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 10px;

    z-index:999999;

    border-radius:28px;

    background:
    rgba(10,18,32,.96);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 18px 50px rgba(0,0,0,.42);

    /* IMPORTANT FIX */
    overflow:visible;

    /* REMOVE BLUR BUGS */
    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    transform:
    translate3d(0,0,0);

    -webkit-transform:
    translate3d(0,0,0);

    will-change:transform;

    isolation:isolate;
}

/* =========================================================
   NAV ITEMS
========================================================= */

.mobile-nav-item{

    flex:1;

    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:6px;

    flex-shrink:0;

    color:rgba(255,255,255,.5);

    transition:.2s;
}

.mobile-nav-item small{

    font-size:11px;

    font-weight:700;
}

/* =========================================================
   ICON BOX
========================================================= */

.mobile-icon-wrap{

    width:42px;
    height:42px;

    min-width:42px;
    min-height:42px;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;
}

.mobile-icon-wrap i{

    font-size:20px;
}

/* =========================================================
   ACTIVE
========================================================= */

.active-mobile-nav{

    color:#fff;
}

.active-mobile-nav .mobile-icon-wrap{

    background:
    linear-gradient(
    135deg,
    rgba(26,110,245,.25),
    rgba(15,79,212,.18));

    box-shadow:
    0 8px 20px rgba(26,110,245,.2);
}

.active-mobile-nav i{

    color:var(--yellow);
}

/* =========================================================
   CENTER BUTTON
========================================================= */

.mobile-nav-center{

    position:relative;

    width:82px;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    overflow:visible;
}

.center-action-btn{

    position:absolute;

    top:-30px;

    width:76px;
    height:76px;

    border-radius:26px;

    background:
    linear-gradient(
    135deg,
    var(--yellow),
    #ffbf00);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 16px 40px rgba(255,224,0,.35),
    0 0 0 6px #081120;

    z-index:10;

    overflow:visible;

    transform:
    translateZ(0);
}

.center-action-inner{

    width:64px;
    height:64px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.06));

    color:#111;

    font-size:24px;

    font-weight:900;
}

/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.floating-support-btn{

    position:fixed;

    right:18px;

    bottom:calc(110px + env(safe-area-inset-bottom));

    width:62px;
    height:62px;

    border-radius:22px;

    background:
    linear-gradient(
    135deg,
    #25d366,
    #1ebe5d);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    z-index:999999;

    box-shadow:
    0 16px 40px rgba(37,211,102,.28);

    transform:
    translate3d(0,0,0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(min-width:769px){

    .mobile-bottom-nav{

        display:none;
    }
}

@media(max-width:768px){

    body{

        padding-bottom:120px;
    }
}

@media(max-width:420px){

    .mobile-bottom-nav{

        left:10px;
        right:10px;

        height:74px;

        border-radius:24px;
    }

    .mobile-icon-wrap{

        width:38px;
        height:38px;

        min-width:38px;
        min-height:38px;
    }

    .mobile-icon-wrap i{

        font-size:18px;
    }

    .center-action-btn{

        width:68px;
        height:68px;

        top:-22px;
    }

    .center-action-inner{

        width:58px;
        height:58px;

        border-radius:18px;

        font-size:22px;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-visual{
        max-width:580px;
        margin:auto;
    }

    .hero-title{
        font-size:62px;
    }
}

@media(max-width:768px){

    .desktop-nav{
        display:none;
    }

    .header-inner{
        height:64px;
    }

    .hero-section{

        padding-top:110px;
        padding-bottom:120px;
    }

    .hero-title{

        font-size:48px;

        letter-spacing:-2px;
    }

    .hero-description{

        font-size:15px;
    }

    .hero-actions{

        flex-direction:column;

        align-items:stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary{

        width:100%;
    }

    .hero-stats{

        display:grid;

        grid-template-columns:1fr;
    }

    .main-game-content h3{

        font-size:28px;
    }

    .floating-win-card{

        transform:scale(.88);
    }

    .mobile-bottom-nav{

        display:flex;
    }

    body{

        padding-bottom:90px;
    }
}

@media(max-width:520px){

    .hero-title{

        font-size:40px;
    }

    .main-game-content{

        padding:22px;
    }

    .floating-win-card{

        display:none;
    }

    /* HIDE JOIN BUTTON */
    .btn-primary{

        display:none;
    }

    /* KEEP LOGIN BUTTON */
    .btn-outline{

        display:flex;

        height:40px;

        padding:0 18px;

        font-size:13px;

        border-radius:12px;
        
        background: linear-gradient(135deg, var(--yellow), #ffbf00);
        
        color: #111;
    }
}

/* =========================================================
   SECTION COMMON
========================================================= */

.section-heading{

    display:flex;

    align-items:end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:42px;

    flex-wrap:wrap;
}

.center-heading{

    text-align:center;

    justify-content:center;
}

.section-badge{

    display:inline-flex;

    align-items:center;

    height:36px;

    padding:0 16px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    color:var(--yellow);

    font-size:12px;

    font-weight:800;

    letter-spacing:.12em;

    margin-bottom:16px;
}

.section-title{

    font-size:56px;

    line-height:1;

    letter-spacing:-3px;

    font-weight:900;
}

.section-title span{
    color:var(--yellow);
}

.section-description{

    max-width:420px;

    color:var(--muted);

    line-height:1.8;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{

    padding:24px 0 10px;
}

.trust-strip-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.trust-item{

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    text-align:center;
}

.trust-item strong{

    display:block;

    color:var(--yellow);

    font-size:32px;

    font-weight:900;

    margin-bottom:8px;
}

.trust-item span{

    color:var(--muted);

    font-size:14px;

    font-weight:600;
}

/* =========================================================
   GAMES SECTION
========================================================= */

.games-section{

    padding:90px 0;
}

.games-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.game-item-card{

    border-radius:32px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    transition:.3s;
}

.game-item-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,224,0,.3);

    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.featured-card{

    transform:scale(1.02);
}

.game-image-wrap{

    position:relative;

    overflow:hidden;
}

.game-image-wrap img{

    width:100%;

    aspect-ratio:16/11;

    object-fit:cover;

    transition:transform .5s;
}

.game-item-card:hover img{

    transform:scale(1.06);
}

.game-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.55),
    transparent);
}

.game-top-row{

    position:absolute;

    top:16px;
    left:16px;
    right:16px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    z-index:2;
}

.live-status{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 12px;

    border-radius:999px;

    background:rgba(0,0,0,.45);

    color:#1eff6d;

    font-size:11px;

    font-weight:800;
}

.live-status span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#1eff6d;
}

.players-live{

    padding:8px 12px;

    border-radius:999px;

    background:rgba(0,0,0,.45);

    color:#fff;

    font-size:11px;

    font-weight:700;
}

.game-card-body-new{

    padding:28px;
}

.game-category{

    display:inline-flex;

    align-items:center;

    height:30px;

    padding:0 12px;

    border-radius:999px;

    background:rgba(255,224,0,.14);

    color:var(--yellow);

    font-size:11px;

    font-weight:800;

    margin-bottom:16px;
}

.blue-cat{

    background:rgba(26,110,245,.14);

    color:#70a9ff;
}

.green-cat{

    background:rgba(30,255,109,.12);

    color:#1eff6d;
}

.game-card-body-new h3{

    font-size:30px;

    font-weight:900;

    margin-bottom:14px;
}

.game-card-body-new p{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:24px;
}

.game-meta-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

    margin-bottom:24px;
}

.meta-box{

    padding:16px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);
}

.meta-box small{

    display:block;

    color:var(--muted);

    margin-bottom:8px;
}

.meta-box strong{

    font-size:22px;

    font-weight:900;
}

.play-btn-new{

    width:100%;

    height:56px;

    border-radius:18px;

    background:linear-gradient(135deg,
    var(--yellow),
    #ffbf00);

    color:#111;

    font-size:15px;

    font-weight:900;

    display:flex;

    align-items:center;

    justify-content:center;
}

/* =========================================================
   WINNERS SECTION
========================================================= */

.winners-section{

    padding:30px 0 90px;
}

.winners-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;
}

.winner-card{

    padding:24px;

    border-radius:26px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

.winner-left{

    display:flex;

    align-items:center;

    gap:16px;
}

.winner-profile{

    width:58px;
    height:58px;

    border-radius:50%;

    background:linear-gradient(135deg,
    var(--blue1),
    var(--blue2));

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:900;
}

.winner-left h4{

    font-size:18px;

    margin-bottom:6px;
}

.winner-left span{

    color:var(--muted);

    font-size:14px;
}

.winner-amount{

    color:#1eff6d;

    font-size:28px;

    font-weight:900;
}

/* =========================================================
   FEATURES SECTION
========================================================= */

.features-section{

    padding:0 0 100px;
}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;
}

.feature-box{

    padding:34px 28px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    transition:.25s;
}

.feature-box:hover{

    transform:translateY(-6px);

    border-color:rgba(255,224,0,.3);
}

.feature-icon{

    width:72px;
    height:72px;

    border-radius:22px;

    background:linear-gradient(135deg,
    rgba(26,110,245,.25),
    rgba(15,79,212,.15));

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:24px;
}

.feature-box h3{

    font-size:22px;

    font-weight:800;

    margin-bottom:14px;
}

.feature-box p{

    color:var(--muted);

    line-height:1.8;
}

/* =========================================================
   RESPONSIVE PART 2
========================================================= */

@media(max-width:1100px){

    .games-grid,
    .features-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .trust-strip-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .section-title{

        font-size:40px;

        letter-spacing:-2px;
    }

    .games-grid,
    .winners-grid,
    .features-grid,
    .trust-strip-grid{

        grid-template-columns:1fr;
    }

    .featured-card{

        transform:none;
    }

    .winner-card{

        flex-direction:column;

        align-items:flex-start;
    }

    .winner-amount{

        font-size:24px;
    }
}

/* =========================================================
   BIG CTA SECTION
========================================================= */

.big-cta-section{

    padding:0 0 100px;
}

.big-cta-box{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:90px 70px;

    background:linear-gradient(135deg,
    rgba(26,110,245,.22),
    rgba(255,224,0,.08));

    border:1px solid rgba(255,255,255,.1);
}

.cta-glow{

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,224,0,.12);

    filter:blur(120px);

    top:-120px;
    right:-120px;
}

.big-cta-content{

    position:relative;

    z-index:2;

    max-width:820px;
}

.big-cta-content h2{

    font-size:68px;

    line-height:1;

    letter-spacing:-4px;

    font-weight:900;

    margin-bottom:24px;
}

.big-cta-content h2 span{
    color:var(--yellow);
}

.big-cta-content p{

    max-width:720px;

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

    margin-bottom:38px;
}

.big-cta-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.cta-main-btn,
.cta-second-btn{

    height:60px;

    padding:0 34px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:900;
}

.cta-main-btn{

    background:linear-gradient(135deg,
    var(--yellow),
    #ffbf00);

    color:#111;
}

.cta-second-btn{

    border:1px solid var(--border);

    background:rgba(255,255,255,.05);
}

/* =========================================================
   FAQ
========================================================= */

.faq-section{

    padding:0 0 100px;
}

.faq-grid{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:50px;
}

.faq-right{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.faq-item{

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    overflow:hidden;
}

.faq-question{

    width:100%;

    border:none;

    background:none;

    color:var(--text);

    padding:24px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:18px;

    font-weight:800;

    cursor:pointer;
}

.faq-question span{

    font-size:24px;

    color:var(--yellow);
}

.faq-answer{

    display:none;

    padding:0 28px 24px;

    color:var(--muted);

    line-height:1.8;
}

.active-faq .faq-answer{

    display:block;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-section{

    border-top:1px solid var(--border);

    background:rgba(0,0,0,.18);

    padding:80px 0 0;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;
}

.footer-brand{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:22px;
}

.footer-brand img{

    height:46px;
}

.footer-text{

    max-width:420px;

    color:var(--muted);

    line-height:1.9;
}

.footer-title{

    font-size:20px;

    font-weight:800;

    margin-bottom:24px;
}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-links a{

    color:var(--muted);

    transition:.2s;
}

.footer-links a:hover{

    color:var(--yellow);
}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid var(--border);

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:var(--muted);

    font-size:14px;
}

/* =========================================================
   FLOATING SUPPORT
========================================================= */

.floating-support-btn{

    position:fixed;

    right:20px;
    bottom:110px;

    width:66px;
    height:66px;

    border-radius:22px;

    background:
    linear-gradient(135deg,
    #25d366,
    #1ebe5d);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    z-index:9999;

    box-shadow:
    0 18px 40px rgba(37,211,102,.32);

    animation:supportFloat 2.5s ease-in-out infinite;

    transition:.25s;
}

.floating-support-btn:hover{

    transform:translateY(-4px);
}

.floating-support-btn:active{

    transform:scale(.94);
}

@keyframes supportFloat{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-8px);
    }
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.scroll-reveal{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;
}

.show-reveal{

    opacity:1;

    transform:none;
}

/* =========================================================
   HEADER SCROLL EFFECT
========================================================= */

.scrolled-header{

    background:rgba(8,17,32,.96);

    box-shadow:0 12px 40px rgba(0,0,0,.35);
}

/* =========================================================
   RESPONSIVE PART 3
========================================================= */

@media(max-width:1100px){

    .faq-grid,
    .footer-grid{

        grid-template-columns:1fr;
    }

    .big-cta-content h2{

        font-size:56px;
    }
}

@media(max-width:768px){

    .big-cta-box{

        padding:60px 28px;

        border-radius:32px;
    }

    .big-cta-content h2{

        font-size:42px;

        letter-spacing:-2px;
    }

    .big-cta-content p{

        font-size:15px;
    }

    .big-cta-actions{

        flex-direction:column;
    }

    .cta-main-btn,
    .cta-second-btn{

        width:100%;
    }

    .faq-question{

        font-size:16px;

        padding:22px;
    }

    .faq-answer{

        padding:0 22px 22px;
    }

    .footer-section{

        padding-bottom:110px;
    }

    .floating-support-btn{

        width:58px;
        height:58px;

        right:16px;
        bottom:100px;
    }
}