/* ===========================
   WATCH VIDEO EARN REWARD
   Premium Website CSS
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#0b0f17;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.7;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    max-width:100%;

    display:block;

}

ul{

    list-style:none;

}

/* ================= Loader ================= */

#loader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:#0b0f17;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-circle{

    width:70px;

    height:70px;

    border:6px solid #222;

    border-top:6px solid #00e676;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* ================= Navbar ================= */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(15px);

    background:rgba(8,12,20,.82);

}

.navbar{

    max-width:1250px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 22px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:52px;

    height:52px;

    border-radius:12px;

}

.logo span{

    font-size:20px;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:28px;

}

.nav-links a{

    color:#ffffff;

    transition:.30s;

    font-weight:500;

}

.nav-links a:hover{

    color:#00e676;

}

.menu-btn{

    display:none;

    font-size:34px;

    cursor:pointer;

}

/* ================= Hero ================= */

.hero{

    max-width:1250px;

    margin:auto;

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    padding:140px 20px 90px;

}

.hero h1{

    font-size:62px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    color:#c9d2d9;

    margin-bottom:35px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ================= Buttons ================= */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.green-btn{

    background:#00e676;

    color:#07120d;

    box-shadow:0 0 18px rgba(0,230,118,.35);

}

.green-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,230,118,.45);

}

.dark-btn{

    border:2px solid #00e676;

    color:#ffffff;

}

.dark-btn:hover{

    background:#00e676;

    color:#07120d;

}

/* ================= Hero Right ================= */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:360px;

    border-radius:28px;

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

}

/* ================= Hero Stats ================= */

.hero-stats{

    margin-top:45px;

    display:grid;

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

    gap:18px;

}

.stat-card{

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

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

    backdrop-filter:blur(18px);

    border-radius:18px;

    padding:22px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#00e676;

}

.stat-card h2{

    font-size:34px;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#d2d8de;

    font-size:15px;

}

/* ================= Sections ================= */

section{

    padding:100px 20px;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:14px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#bfc8d1;

}

/* ================= Features ================= */

.features{

    max-width:1250px;

    margin:auto;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.feature-card{

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

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

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#00e676;

    box-shadow:0 15px 40px rgba(0,230,118,.15);

}

.feature-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#00e676;

    color:#07120d;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:22px;

}

.feature-card h3{

    margin-bottom:14px;

    font-size:24px;

}

.feature-card p{

    color:#c6d0d8;

}

/* ===================================
   HOW IT WORKS
=================================== */

.how-it-works{

    max-width:1200px;

    margin:auto;

}

.steps-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.step-card{

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

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

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(18px);

}

.step-card:hover{

    transform:translateY(-10px);

    border-color:#00e676;

    box-shadow:0 15px 40px rgba(0,230,118,.15);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#00e676;

    color:#07120d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

}

.step-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.step-card p{

    color:#c8d1d9;

}

/* ===================================
   DOWNLOAD CTA
=================================== */

.download-banner{

    max-width:1200px;

    margin:80px auto;

    background:linear-gradient(135deg,#00e676,#00c853);

    color:#07120d;

    border-radius:28px;

    padding:70px 40px;

    text-align:center;

}

.download-banner h2{

    font-size:42px;

    margin-bottom:20px;

}

.download-banner p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    font-size:18px;

}

.download-banner .green-btn{

    background:#07120d;

    color:#ffffff;

}

.download-banner .green-btn:hover{

    background:#111827;

}

/* ===================================
   SCREENSHOTS
=================================== */

.screenshots{

    max-width:1250px;

    margin:auto;

}

.slider-container{

    position:relative;

    overflow:hidden;

}

.slider-track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:20px;
    padding:10px;
    scrollbar-width:none;
}

.slider-track::-webkit-scrollbar{
    display:none;
}

.slide{
    flex:0 0 100%;
    scroll-snap-align:center;
    display:flex;
    justify-content:center;
}

.slide img{
    width:90%;
    max-width:380px;
    height:auto;
    object-fit:contain;
    border-radius:20px;
    border:2px solid rgba(255,255,255,.08);
}

.slide img:hover{

    transform:scale(1.03);

    border-color:#00e676;

}

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#00e676;

    color:#07120d;

    font-size:24px;

    cursor:pointer;

    z-index:5;

}

.prev{

    left:10px;

}

.next{

    right:10px;

}

.slider-dots{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:30px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#555;

}

.dot.active{

    background:#00e676;

}

/* ===================================
   LIGHTBOX
=================================== */

.lightbox{

    position:fixed;

    inset:0;

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

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:20px;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:42px;

    cursor:pointer;

}

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

.faq-section{

    max-width:1100px;

    margin:auto;

}

.faq-container{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-item{

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

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

    border-radius:18px;

    overflow:hidden;

    backdrop-filter:blur(18px);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#ffffff;

    text-align:left;

    padding:22px 25px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

}

.faq-answer{

    display:none;

    padding:0 25px 22px;

    color:#c8d1d9;

}

/* ===================================
   CONTACT BANNER
=================================== */

.contact-banner{

    max-width:1200px;

    margin:90px auto;

    text-align:center;

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

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

    border-radius:28px;

    padding:70px 40px;

    backdrop-filter:blur(20px);

}

.contact-banner h2{

    font-size:40px;

    margin-bottom:20px;

}

.contact-banner p{

    color:#c6d0d8;

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

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

.footer{

    background:#06090f;

    margin-top:80px;

    padding-top:70px;

}

.footer-container{

    max-width:1250px;

    margin:auto;

    display:grid;

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

    gap:40px;

    padding:0 20px 50px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

    border-radius:16px;

}

.footer h3,
.footer h4{

    margin-bottom:18px;

}

.footer p{

    color:#bfc8d1;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#cfd7df;

    transition:.3s;

}

.footer-links a:hover{

    color:#00e676;

}

.footer-bottom{

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

    text-align:center;

    padding:22px;

    color:#9da8b3;

}

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

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-right{

order:-1;

}

.hero h1{

font-size:48px;

}

.hero-stats{

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

}

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:38px;

}

.hero-right img{

width:260px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

.download-banner h2{

font-size:30px;

}

.contact-banner h2{

font-size:30px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

}

@media(max-width:480px){

.btn{

width:100%;

}

.slide{

min-width:220px;

}

.logo span{

font-size:16px;

}

.hero h1{

font-size:32px;

}

}

/* ===================================
   ANIMATIONS
=================================== */

.feature-card,
.step-card,
.stat-card,
.slide img,
.btn{

transition:all .35s ease;

}

section{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}