/*======================================================
ROOT VARIABLES
======================================================*/

:root{

    --primary:#257c14;
    --primary-light:#34c759;
    --secondary:#16a34a;
    --accent:#facc15;

    --bg:#04110a;
    --bg2:#071b0f;
    --card:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.12);

    --text:#ffffff;
    --text2:#d1d5db;

    --shadow:0 20px 60px rgba(0,0,0,.45);

    --radius:22px;

    --transition:.35s ease;

    --max-width:1300px;

}


/*======================================================
RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(180deg,var(--bg),#07170f 35%,#0d2418);

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    cursor:pointer;

    font-family:inherit;

}

section{

    width:100%;

    padding:110px 7%;

    position:relative;

}

.container{

    width:100%;

    max-width:var(--max-width);

    margin:auto;

}


/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#031008;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#39d353;

}



/*======================================================
LOADER
======================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#021008;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    width:90px;

    margin:auto;

    margin-bottom:25px;

}

.loader-logo img{

    width:100%;

}

.loader-ring{

    width:75px;

    height:75px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.1);

    border-top:5px solid var(--primary);

    margin:25px auto;

    animation:spin 1s linear infinite;

}

.loader-content h2{

    font-size:30px;

    font-weight:700;

}

.loader-content p{

    color:var(--text2);

    margin-top:10px;

}


/*======================================================
FLOATING BACKGROUND
======================================================*/

.floating-bg{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:-1;

}

.bubble{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    opacity:.3;

}

.bubble1{

    width:350px;

    height:350px;

    background:#16a34a;

    left:-100px;

    top:-80px;

}

.bubble2{

    width:250px;

    height:250px;

    background:#22c55e;

    right:5%;

    top:10%;

}

.bubble3{

    width:200px;

    height:200px;

    background:#facc15;

    bottom:10%;

    left:10%;

}

.bubble4{

    width:320px;

    height:320px;

    background:#34d399;

    right:-120px;

    bottom:-100px;

}

.bubble5{

    width:180px;

    height:180px;

    background:#10b981;

    top:45%;

    left:45%;

}

.bubble6{

    width:240px;

    height:240px;

    background:#22c55e;

    right:30%;

    bottom:25%;

}



/*======================================================
NAVBAR
======================================================*/

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

}

.navbar{

    width:min(1300px,94%);

    margin:18px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 24px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:50px;

}

.logo h2{

    font-size:26px;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-links a{

    color:white;

    transition:.3s;

    position:relative;

}

.nav-links a:hover{

    color:#7fff84;

}

.nav-links a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--primary-light);

    left:0;

    bottom:-8px;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.join-btn{

    padding:14px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    color:white;

    font-weight:600;

    box-shadow:0 10px 30px rgba(34,197,94,.35);

    transition:var(--transition);

}

.join-btn:hover{

    transform:translateY(-4px);

}

#menuBtn{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:22px;

}



/*======================================================
HERO
======================================================*/

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding-top:170px;

}

.hero-badge{

    display:inline-flex;

    gap:12px;

    align-items:center;

    background:rgba(34,197,94,.12);

    border:1px solid rgba(34,197,94,.25);

    padding:12px 22px;

    border-radius:40px;

    margin-bottom:25px;

    color:#8dff95;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    background:linear-gradient(135deg,#7fff84,#facc15);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    color:var(--text2);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin:45px 0;

}

.primary-btn{

    background:linear-gradient(135deg,var(--primary),#22c55e);

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    color:white;

    transition:.35s;

}

.secondary-btn{

    padding:18px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.04);

}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-6px);

}
*======================================================
ROOT VARIABLES
======================================================*/

:root{

    --primary:#257c14;
    --primary-light:#34c759;
    --secondary:#16a34a;
    --accent:#facc15;

    --bg:#04110a;
    --bg2:#071b0f;
    --card:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.12);

    --text:#ffffff;
    --text2:#d1d5db;

    --shadow:0 20px 60px rgba(0,0,0,.45);

    --radius:22px;

    --transition:.35s ease;

    --max-width:1300px;

}


/*======================================================
RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(180deg,var(--bg),#07170f 35%,#0d2418);

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    cursor:pointer;

    font-family:inherit;

}

section{

    width:100%;

    padding:110px 7%;

    position:relative;

}

.container{

    width:100%;

    max-width:var(--max-width);

    margin:auto;

}


/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#031008;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#39d353;

}



/*======================================================
LOADER
======================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#021008;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    width:90px;

    margin:auto;

    margin-bottom:25px;

}

.loader-logo img{

    width:100%;

}

.loader-ring{

    width:75px;

    height:75px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.1);

    border-top:5px solid var(--primary);

    margin:25px auto;

    animation:spin 1s linear infinite;

}

.loader-content h2{

    font-size:30px;

    font-weight:700;

}

.loader-content p{

    color:var(--text2);

    margin-top:10px;

}


/*======================================================
FLOATING BACKGROUND
======================================================*/

.floating-bg{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:-1;

}

.bubble{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    opacity:.3;

}

.bubble1{

    width:350px;

    height:350px;

    background:#16a34a;

    left:-100px;

    top:-80px;

}

.bubble2{

    width:250px;

    height:250px;

    background:#22c55e;

    right:5%;

    top:10%;

}

.bubble3{

    width:200px;

    height:200px;

    background:#facc15;

    bottom:10%;

    left:10%;

}

.bubble4{

    width:320px;

    height:320px;

    background:#34d399;

    right:-120px;

    bottom:-100px;

}

.bubble5{

    width:180px;

    height:180px;

    background:#10b981;

    top:45%;

    left:45%;

}

.bubble6{

    width:240px;

    height:240px;

    background:#22c55e;

    right:30%;

    bottom:25%;

}



/*======================================================
NAVBAR
======================================================*/

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

}

.navbar{

    width:min(1300px,94%);

    margin:18px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 24px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:50px;

}

.logo h2{

    font-size:26px;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-links a{

    color:white;

    transition:.3s;

    position:relative;

}

.nav-links a:hover{

    color:#7fff84;

}

.nav-links a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--primary-light);

    left:0;

    bottom:-8px;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.join-btn{

    padding:14px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    color:white;

    font-weight:600;

    box-shadow:0 10px 30px rgba(34,197,94,.35);

    transition:var(--transition);

}

.join-btn:hover{

    transform:translateY(-4px);

}

#menuBtn{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:22px;

}



/*======================================================
HERO
======================================================*/

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding-top:170px;

}

.hero-badge{

    display:inline-flex;

    gap:12px;

    align-items:center;

    background:rgba(34,197,94,.12);

    border:1px solid rgba(34,197,94,.25);

    padding:12px 22px;

    border-radius:40px;

    margin-bottom:25px;

    color:#8dff95;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    background:linear-gradient(135deg,#7fff84,#facc15);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    color:var(--text2);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin:45px 0;

}

.primary-btn{

    background:linear-gradient(135deg,var(--primary),#22c55e);

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    color:white;

    transition:.35s;

}

.secondary-btn{

    padding:18px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.04);

}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-6px);

}/*======================================================
ROOT VARIABLES
======================================================*/

:root{

    --primary:#257c14;
    --primary-light:#34c759;
    --secondary:#16a34a;
    --accent:#facc15;

    --bg:#04110a;
    --bg2:#071b0f;
    --card:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.12);

    --text:#ffffff;
    --text2:#d1d5db;

    --shadow:0 20px 60px rgba(0,0,0,.45);

    --radius:22px;

    --transition:.35s ease;

    --max-width:1300px;

}


/*======================================================
RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(180deg,var(--bg),#07170f 35%,#0d2418);

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    cursor:pointer;

    font-family:inherit;

}

section{

    width:100%;

    padding:110px 7%;

    position:relative;

}

.container{

    width:100%;

    max-width:var(--max-width);

    margin:auto;

}


/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#031008;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#39d353;

}



/*======================================================
LOADER
======================================================*/

#loader{

    position:fixed;

    inset:0;

    background:#021008;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    width:90px;

    margin:auto;

    margin-bottom:25px;

}

.loader-logo img{

    width:100%;

}

.loader-ring{

    width:75px;

    height:75px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.1);

    border-top:5px solid var(--primary);

    margin:25px auto;

    animation:spin 1s linear infinite;

}

.loader-content h2{

    font-size:30px;

    font-weight:700;

}

.loader-content p{

    color:var(--text2);

    margin-top:10px;

}


/*======================================================
FLOATING BACKGROUND
======================================================*/

.floating-bg{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:-1;

}

.bubble{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    opacity:.3;

}

.bubble1{

    width:350px;

    height:350px;

    background:#16a34a;

    left:-100px;

    top:-80px;

}

.bubble2{

    width:250px;

    height:250px;

    background:#22c55e;

    right:5%;

    top:10%;

}

.bubble3{

    width:200px;

    height:200px;

    background:#facc15;

    bottom:10%;

    left:10%;

}

.bubble4{

    width:320px;

    height:320px;

    background:#34d399;

    right:-120px;

    bottom:-100px;

}

.bubble5{

    width:180px;

    height:180px;

    background:#10b981;

    top:45%;

    left:45%;

}

.bubble6{

    width:240px;

    height:240px;

    background:#22c55e;

    right:30%;

    bottom:25%;

}



/*======================================================
NAVBAR
======================================================*/

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

}

.navbar{

    width:min(1300px,94%);

    margin:18px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 24px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:50px;

}

.logo h2{

    font-size:26px;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-links a{

    color:white;

    transition:.3s;

    position:relative;

}

.nav-links a:hover{

    color:#7fff84;

}

.nav-links a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--primary-light);

    left:0;

    bottom:-8px;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.join-btn{

    padding:14px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    color:white;

    font-weight:600;

    box-shadow:0 10px 30px rgba(34,197,94,.35);

    transition:var(--transition);

}

.join-btn:hover{

    transform:translateY(-4px);

}

#menuBtn{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:22px;

}



/*======================================================
HERO
======================================================*/

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding-top:170px;

}

.hero-badge{

    display:inline-flex;

    gap:12px;

    align-items:center;

    background:rgba(34,197,94,.12);

    border:1px solid rgba(34,197,94,.25);

    padding:12px 22px;

    border-radius:40px;

    margin-bottom:25px;

    color:#8dff95;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero h1 span{

    background:linear-gradient(135deg,#7fff84,#facc15);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    color:var(--text2);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin:45px 0;

}

.primary-btn{

    background:linear-gradient(135deg,var(--primary),#22c55e);

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    color:white;

    transition:.35s;

}

.secondary-btn{

    padding:18px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.04);

}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-6px);

}



/*======================================================
PHONE MOCKUP
======================================================*/

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.phone{
    width:360px;
    background:#101010;
    border-radius:45px;
    padding:18px;
    border:8px solid #1d1d1d;
    box-shadow:0 35px 90px rgba(0,0,0,.6);
    position:relative;
    z-index:2;
}

.phone-top{
    width:130px;
    height:22px;
    background:#000;
    margin:auto;
    border-radius:20px;
    margin-bottom:20px;
}

.phone-screen{
    background:linear-gradient(180deg,#0d2215,#12361d);
    border-radius:28px;
    padding:22px;
    min-height:640px;
}

.balance-card{
    background:linear-gradient(135deg,var(--primary),#22c55e);
    border-radius:22px;
    padding:24px;
    color:#fff;
    margin-bottom:22px;
    box-shadow:0 20px 40px rgba(34,197,94,.35);
}

.balance-card p{
    color:rgba(255,255,255,.85);
}

.balance-card h2{
    font-size:34px;
    margin:12px 0;
}

.balance-card span{
    opacity:.9;
    font-size:14px;
}

.mini-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
    transition:.35s;
}

.mini-card:hover{
    transform:translateX(8px);
    background:rgba(255,255,255,.09);
}

.mini-card div{
    display:flex;
    align-items:center;
    gap:15px;
}

.mini-card i{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:15px;
    background:rgba(34,197,94,.18);
    color:#7fff84;
    font-size:22px;
}

.mini-card h4{
    font-size:16px;
}

.mini-card span{
    color:#8dff95;
    font-weight:700;
}

/*======================================================
FLOATING INFO CARDS
======================================================*/

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.1);
    padding:18px 22px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    animation:float 5s ease-in-out infinite;
}

.floating-card i{
    color:#7fff84;
    font-size:24px;
}

.card1{
    left:-70px;
    top:80px;
}

.card2{
    right:-60px;
    top:210px;
    animation-delay:1s;
}

.card3{
    left:-40px;
    bottom:60px;
    animation-delay:2s;
}

/*======================================================
HERO STATS
======================================================*/

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.stat{
    flex:1;
    min-width:170px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:22px;
    backdrop-filter:blur(16px);
    transition:.35s;
}

.stat:hover{
    transform:translateY(-10px);
    border-color:#22c55e;
}

.stat h2{
    font-size:34px;
    color:#7fff84;
}

.stat p{
    margin-top:8px;
    color:#cdd5d7;
    font-size:15px;
}

/*======================================================
TRUST BAR
======================================================*/

.trust-bar{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:-40px;
}

.trust-item{
    background:rgba(255,255,255,.05);
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    padding:28px;
    text-align:center;
    transition:.35s;
}

.trust-item:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.08);
}

.trust-item i{
    font-size:34px;
    color:#7fff84;
    margin-bottom:16px;
}

.trust-item span{
    font-weight:600;
}

/*======================================================
SECTION TITLES
======================================================*/

.section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.subtitle{
    display:inline-block;
    color:#7fff84;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:18px;
    font-weight:700;
}

.section-title h2{
    font-size:50px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.section-title h2 span{
    background:linear-gradient(135deg,#7fff84,#facc15);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title p{
    color:#cfd5d9;
    font-size:18px;
    line-height:1.8;
}

/*======================================================
EARNING GRID
======================================================*/

.earn-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.earn-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:35px;
    backdrop-filter:blur(16px);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.earn-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
        rgba(34,197,94,.12),
        transparent);
    opacity:0;
    transition:.35s;
}

.earn-card:hover::before{
    opacity:1;
}

.earn-card:hover{
    transform:translateY(-12px);
    border-color:#22c55e;
    box-shadow:0 25px 60px rgba(34,197,94,.18);
}

.featured{
    border:2px solid #22c55e;
}

.card-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--primary),#22c55e);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    margin-bottom:28px;
    box-shadow:0 15px 35px rgba(34,197,94,.3);
}

.earn-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.earn-card p{
    color:#d0d6d8;
    line-height:1.8;
    margin-bottom:22px;
}

.earn-card ul{
    list-style:none;
    margin-bottom:28px;
}

.earn-card li{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:12px;
    color:#d7d7d7;
}

.earn-card li i{
    color:#7fff84;
}

.earn-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:16px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--primary),#22c55e);
    font-weight:700;
    transition:.35s;
}

.earn-card a:hover{
    transform:scale(1.03);
}

.tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.tags span{
    background:rgba(34,197,94,.18);
    color:#8dff95;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
}

/*======================================================
HOW IT WORKS
======================================================*/

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.step{
    background:rgba(255,255,255,.05);
    border-radius:25px;
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    text-align:center;
    transition:.35s;
    position:relative;
}

.step:hover{
    transform:translateY(-10px);
}

.step-number{
    position:absolute;
    top:20px;
    right:20px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.step i{
    font-size:48px;
    color:#7fff84;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:15px;
}

.step p{
    color:#d0d6d8;
    line-height:1.8;
}

/*======================================================
WHY CHOOSE US
======================================================*/

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.why-card{
    background:rgba(255,255,255,.05);
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#22c55e;
}

.why-card i{
    width:75px;
    height:75px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary),#22c55e);
    color:#fff;
    font-size:30px;
    margin-bottom:22px;
}

.why-card h3{
    margin-bottom:16px;
    font-size:24px;
}

.why-card p{
    color:#d2d7da;
    line-height:1.8;
}

/*======================================================
CTA BANNER
======================================================*/

.cta-banner{
    padding:60px 7%;
}

.cta-content{
    max-width:1200px;
    margin:auto;
    background:linear-gradient(135deg,var(--primary),#22c55e);
    border-radius:35px;
    padding:70px;
    text-align:center;
    box-shadow:0 30px 70px rgba(34,197,94,.25);
}

.cta-content h2{
    font-size:48px;
    margin-bottom:18px;
}

.cta-content p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.9);
    line-height:1.9;
}

.cta-content a{
    display:inline-block;
    margin-top:35px;
    padding:18px 40px;
    background:#fff;
    color:var(--primary);
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.cta-content a:hover{
    transform:translateY(-6px);
}

/*======================================================
VIDEO TESTIMONIALS
======================================================*/

.videos-section{
    position:relative;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.video-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    overflow:hidden;
    backdrop-filter:blur(15px);
    transition:var(--transition);
    box-shadow:var(--shadow);
}

.video-card:hover{
    transform:translateY(-12px);
    border-color:var(--primary-light);
}

.video-card video{
    width:100%;
    display:block;
    aspect-ratio:9/16;
    background:#000;
}

.video-info{
    padding:24px;
}

.video-info h3{
    font-size:22px;
    margin-bottom:6px;
}

.video-info span{
    color:var(--text2);
}

/*======================================================
IMAGE GALLERY
======================================================*/

.gallery-grid{
    columns:4 280px;
    column-gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:20px;
    cursor:pointer;
    break-inside:avoid;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
}

.gallery-item img{
    width:100%;
    display:block;
    transition:.6s;
}

.gallery-item::after{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    color:#fff;

    background:rgba(0,0,0,.45);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

/*======================================================
TESTIMONIALS
======================================================*/

.testimonial-slider{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

}

.testimonial-card{

    background:rgba(255,255,255,.05);

    border-radius:28px;

    border:1px solid rgba(255,255,255,.08);

    padding:35px;

    backdrop-filter:blur(15px);

    transition:.35s;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#22c55e;

}

.stars{

    color:#FFD700;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:18px;

}

.testimonial-card p{

    color:#d8dde0;

    line-height:1.9;

    margin-bottom:28px;

    font-size:16px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary-light);

}

.testimonial-user h4{

    font-size:18px;

}

.testimonial-user span{

    color:#9ca3af;

}

.testimonial-note{

    margin-top:45px;

    text-align:center;

    color:#9ca3af;

    font-size:15px;

}

/*======================================================
LIVE ACTIVITY
======================================================*/

.activity-feed{

    max-width:900px;

    margin:auto;

}

.activity-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    padding:22px 28px;

    border-radius:20px;

    margin-bottom:18px;

    transition:.35s;

}

.activity-item:hover{

    transform:translateX(12px);

    border-color:#22c55e;

}

.activity-item i{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(34,197,94,.15);

    color:#7fff84;

    font-size:20px;

    flex-shrink:0;

}

.activity-item span{

    color:#d7dde0;

    font-size:16px;

}

/*======================================================
SECOND CTA
======================================================*/

.cta-section{

    padding:90px 7%;

}

.cta-box{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:70px 50px;

    border-radius:35px;

    background:linear-gradient(135deg,#0d3319,var(--primary));

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(34,197,94,.25);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-250px;

    right:-150px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.03);

    border-radius:50%;

    bottom:-180px;

    left:-100px;

}

.cta-box h2{

    position:relative;

    z-index:2;

    font-size:48px;

    margin-bottom:20px;

}

.cta-box p{

    position:relative;

    z-index:2;

    max-width:700px;

    margin:auto;

    color:rgba(255,255,255,.88);

    line-height:1.9;

}

.cta-box a{

    position:relative;

    z-index:2;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:35px;

    padding:18px 40px;

    border-radius:50px;

    background:#fff;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.cta-box a:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(255,255,255,.18);

}

/*======================================================
FAQ SECTION
======================================================*/

.faq-section{
    position:relative;
}

.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
    transition:var(--transition);
    backdrop-filter:blur(12px);
}

.faq-item:hover{
    border-color:var(--primary-light);
    box-shadow:0 15px 35px rgba(34,197,94,.12);
}

.faq-question{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 28px;
    font-size:18px;
    font-weight:600;
}

.faq-question i{
    transition:.35s;
    color:var(--primary-light);
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 28px 28px;
    color:var(--text2);
    line-height:1.9;
}

/*======================================================
FINAL CTA
======================================================*/

.final-cta{

    position:relative;

    padding:140px 7%;

    overflow:hidden;

}

.final-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(34,197,94,.18),
    transparent 45%),

    radial-gradient(circle at bottom left,
    rgba(250,204,21,.12),
    transparent 40%);

    z-index:0;

}

.final-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:80px 60px;

    border-radius:35px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 80px rgba(0,0,0,.35);

}

.final-content h2{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.final-content p{

    max-width:720px;

    margin:auto;

    color:var(--text2);

    font-size:18px;

    line-height:2;

}

.final-content a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:45px;

    padding:20px 42px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 20px 45px rgba(34,197,94,.35);

}

.final-content a:hover{

    transform:translateY(-6px) scale(1.03);

    box-shadow:0 30px 60px rgba(34,197,94,.45);

}

.final-content a i{

    transition:.35s;

}

.final-content a:hover i{

    transform:translateX(6px);

}

/*======================================================
FOOTER
======================================================*/

footer{

    position:relative;

    background:linear-gradient(
        180deg,
        #07130d,
        #030805
    );

    border-top:1px solid rgba(255,255,255,.08);

    padding:90px 7% 35px;

    overflow:hidden;

}

footer::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(34,197,94,.08);

    filter:blur(80px);

    top:-220px;

    right:-120px;

}

footer::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(250,204,21,.05);

    filter:blur(70px);

    bottom:-180px;

    left:-120px;

}

.footer-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    max-width:1300px;

    margin:auto;

}

.footer-about img{

    width:75px;

    margin-bottom:18px;

}

.footer-about h2{

    font-size:32px;

    margin-bottom:20px;

    font-weight:700;

}

.footer-about p{

    color:var(--text2);

    line-height:2;

    max-width:380px;

}

.footer-links h3{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer-links h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    border-radius:10px;

    background:var(--primary-light);

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#d1d5db;

    margin-bottom:16px;

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.footer-links a::before{

    content:"›";

    color:var(--primary-light);

    font-size:18px;

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-links a:hover::before{

    transform:translateX(4px);

}

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.footer-bottom p{

    color:#9ca3af;

    font-size:15px;

    text-align:center;

    letter-spacing:.4px;

}

/*======================================================
FLOATING REGISTER BUTTON
======================================================*/

.floating-register{

    position:fixed;

    right:30px;

    bottom:35px;

    z-index:999;

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 28px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    font-weight:700;

    font-size:16px;

    box-shadow:0 20px 45px rgba(34,197,94,.35);

    transition:.35s;

}

.floating-register:hover{

    transform:translateY(-8px) scale(1.05);

}

.floating-register i{

    font-size:20px;

}

/*======================================================
BACK TO TOP
======================================================*/

#backToTop{

    position:fixed;

    right:35px;

    bottom:110px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    font-size:20px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.3);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-8px);

}

/*======================================================
IMAGE MODAL
======================================================*/

.image-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.image-modal.active{

    opacity:1;

    visibility:visible;

}

.image-modal img{

    max-width:90%;

    max-height:90vh;

    border-radius:20px;

    box-shadow:0 25px 70px rgba(0,0,0,.5);

}

.close-image{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:42px;

    cursor:pointer;

}

/*======================================================
VIDEO MODAL
======================================================*/

.video-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.92);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.video-modal.active{

    opacity:1;

    visibility:visible;

}

.video-modal video{

    width:min(900px,92%);

    border-radius:20px;

    box-shadow:0 25px 70px rgba(0,0,0,.5);

}

.close-video{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:42px;

    cursor:pointer;

}

/*======================================================
FLOATING PARTICLES
======================================================*/

.particles{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:-1;

}

.particles span{

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    animation:particleFloat 18s linear infinite;

}

.particles span:nth-child(1){left:8%;animation-delay:0s;}
.particles span:nth-child(2){left:18%;animation-delay:2s;}
.particles span:nth-child(3){left:28%;animation-delay:4s;}
.particles span:nth-child(4){left:40%;animation-delay:6s;}
.particles span:nth-child(5){left:52%;animation-delay:8s;}
.particles span:nth-child(6){left:64%;animation-delay:10s;}
.particles span:nth-child(7){left:76%;animation-delay:12s;}
.particles span:nth-child(8){left:86%;animation-delay:14s;}
.particles span:nth-child(9){left:94%;animation-delay:16s;}
.particles span:nth-child(10){left:98%;animation-delay:18s;}

/*======================================================
ANIMATIONS
======================================================*/

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

}

@keyframes particleFloat{

    0%{

        transform:
        translateY(100vh)
        scale(.4);

        opacity:0;

    }

    10%{
        opacity:1;
    }

    90%{
        opacity:1;
    }

    100%{

        transform:
        translateY(-120px)
        scale(1.4);

        opacity:0;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:
        translateY(40px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}

@keyframes pulseGlow{

    0%{

        box-shadow:
        0 0 0 rgba(34,197,94,.25);

    }

    50%{

        box-shadow:
        0 0 40px rgba(34,197,94,.45);

    }

    100%{

        box-shadow:
        0 0 0 rgba(34,197,94,.25);

    }

}

/*======================================================
ANIMATION HELPERS
======================================================*/

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:
    opacity .7s ease,
    transform .7s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.join-btn,
.primary-btn,
.floating-register{

    animation:
    pulseGlow 4s infinite;

}

/*======================================================
LARGE SCREENS
======================================================*/

@media (max-width:1200px){

    .hero{

        gap:50px;

    }

    .hero h1{

        font-size:55px;

    }

    .section-title h2{

        font-size:42px;

    }

    .footer-container{

        grid-template-columns:
        repeat(2,1fr);

    }

}

/*======================================================
TABLET
======================================================*/

@media (max-width:992px){

    section{

        padding:90px 6%;

    }

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .hero-left{

        order:2;

    }

    .hero-right{

        order:1;

    }

    .hero p{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .floating-card{

        display:none;

    }

    .trust-bar{

        grid-template-columns:
        repeat(2,1fr);

    }

    .footer-container{

        grid-template-columns:1fr 1fr;

        gap:40px;

    }

    .cta-content{

        padding:55px 35px;

    }

    .cta-content h2{

        font-size:40px;

    }

    .final-content{

        padding:60px 35px;

    }

    .final-content h2{

        font-size:46px;

    }

}

/*======================================================
MOBILE NAVIGATION
======================================================*/

@media (max-width:768px){

    #menuBtn{

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .nav-links{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        flex-direction:column;

        gap:0;

        background:#06130d;

        border-radius:18px;

        overflow:hidden;

        max-height:0;

        transition:.4s;

    }

    .nav-links.active{

        max-height:500px;

        padding:15px 0;

    }

    .nav-links li{

        width:100%;

    }

    .nav-links a{

        display:block;

        padding:18px 25px;

    }

    .hero{

        padding-top:150px;

    }

    .hero h1{

        font-size:42px;

    }

    .section-title h2{

        font-size:36px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;

    }

    .phone{

        width:320px;

    }

    .trust-bar{

        grid-template-columns:1fr;

    }

    .video-grid,
    .testimonial-slider,
    .steps,
    .why-grid{

        grid-template-columns:1fr;

    }

    .footer-container{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        columns:2 180px;

    }

}

/*======================================================
SMALL MOBILE
======================================================*/

@media (max-width:576px){

    section{

        padding:75px 5%;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

    .section-title h2{

        font-size:30px;

    }

    .section-title p{

        font-size:16px;

    }

    .stat{

        min-width:100%;

    }

    .phone{

        width:100%;

        max-width:300px;

    }

    .cta-content h2{

        font-size:30px;

    }

    .final-content h2{

        font-size:34px;

    }

    .gallery-grid{

        columns:1;

    }

    .floating-register{

        right:15px;

        bottom:15px;

        padding:15px 20px;

        font-size:14px;

    }

    #backToTop{

        right:15px;

        bottom:85px;

        width:50px;

        height:50px;

    }

}

/*======================================================
VERY SMALL DEVICES
======================================================*/

@media (max-width:400px){

    .hero h1{

        font-size:30px;

    }

    .hero-badge{

        font-size:13px;

    }

    .join-btn{

        display:none;

    }

    .phone{

        max-width:280px;

    }

}

@keyframes ripple{

    from{

        transform:scale(0);

        opacity:.8;

    }

    to{

        transform:scale(4);

        opacity:0;

    }

}