*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:white;
    overflow-x:hidden;
}

/* VIDEO */

.bg-video{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-2;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    align-items:center;
    gap:25px;

    padding:10px 18px;

    background:rgba(15,15,15,.85);

    backdrop-filter:blur(12px);

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    z-index:1000;
}

.nav-logo img{
    height:42px;
    display:block;
}

.nav-links{
    display:flex;
    gap:18px;
}

.nav-links a{
    color:white;
    text-decoration:none;

    font-size:12px;
    font-weight:800;

    transition:.3s;
}

.nav-links a:hover{
    color:#ff9d00;
}

.play-btn-nav{
    text-decoration:none;

    color:black;
    font-size:12px;
    font-weight:900;

    padding:8px 14px;

    border-radius:999px;

    background:linear-gradient(
        to bottom,
        #ffc400,
        #ff8c00
    );
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-logo{
    width:350px;
    max-width:90%;

    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    font-weight:900;

    margin-bottom:15px;

    text-transform:uppercase;
}

.hero p{
    font-size:1.4rem;
    margin-bottom:30px;
}

.play-btn{
    text-decoration:none;

    color:black;
    font-weight:900;

    padding:18px 60px;

    border-radius:999px;

    background:linear-gradient(
        to bottom,
        #ffd000,
        #ff8f00
    );

    border:3px solid #703200;
}

/* SECTIONS */

.section{
    min-height:100vh;

    padding:120px 10%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    position:relative;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.25),
        rgba(0,0,0,.65)
    );
}

.section h2{
    font-size:3rem;
    margin-bottom:40px;
}

/* FEATURES */

.cards{
    width:100%;
    max-width:1200px;

    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;

    gap:25px;
    margin-top:40px;
}

.card{
    position:relative;

    background:
    linear-gradient(
        135deg,
        rgba(30,30,30,.9),
        rgba(15,15,15,.95)
    );

    border:1px solid rgba(255,179,0,.15);

    border-radius:22px;

    padding:30px;

    min-height:240px;

    overflow:hidden;

    transition:.35s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.card::before{
    content:"";

    position:absolute;

    top:-50%;
    left:-50%;

    width:200%;
    height:200%;

    background:
    radial-gradient(
        circle,
        rgba(255,179,0,.12),
        transparent 60%
    );

    opacity:0;

    transition:.4s;
}

.card:hover::before{
    opacity:1;
}

.card:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    border-color:#ffb300;

    box-shadow:
        0 20px 50px rgba(255,179,0,.15);
}

.card h3{
    position:relative;

    color:#ffb300;

    font-size:1.7rem;

    margin-bottom:15px;
}

.card p{
    position:relative;

    color:#d5d5d5;

    line-height:1.8;
}

@media(max-width:1000px){
    .cards{
        grid-template-columns:repeat(2, 1fr) !important;
    }
}

@media(max-width:700px){
    .cards{
        grid-template-columns:1fr !important;
    }
}

/* GALLERY */

.gallery{
    width:100%;
    max-width:1200px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:18px;
}

/* DOWNLOAD */

.section-text{
    margin-bottom:30px;
}

/* FAQ */

.faq-item{
    width:100%;
    max-width:800px;

    background:rgba(20,20,20,.65);

    backdrop-filter:blur(10px);

    padding:25px;

    border-radius:15px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.08);
}

.faq-item h3{
    color:#ffb300;
    margin-bottom:10px;
}

@media(max-width:900px){

    .hero h1{
        font-size:2.3rem;
    }

    .nav-links{
        display:none;
    }

    .play-btn-nav{
        display:none;
    }
}
/* =========================
   CAROUSEL
========================= */

.carousel{
    position:relative;

    width:100%;
    max-width:1100px;
    height:600px;

    margin:auto;
}

.carousel-track{
    position:relative;

    width:100%;
    height:100%;

    overflow:hidden;

    border-radius:25px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.45);
}

.carousel-img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:.6s ease;
}

.carousel-img.active{
    opacity:1;
}

.carousel-btn{
    position:absolute;
    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.7);

    color:white;

    font-size:30px;

    cursor:pointer;

    z-index:10;

    transition:.3s;
}

.carousel-btn:hover{
    background:#ffb300;
    color:black;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.carousel-dots{
    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:25px;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:#555;

    cursor:pointer;

    transition:.3s;
}

.dot.active{
    width:35px;

    border-radius:999px;

    background:#ffb300;
}

@media(max-width:900px){

    .carousel{
        height:350px;
    }

    .carousel-btn{
        width:45px;
        height:45px;
        font-size:22px;
    }
}
.download-section{
    background:
        radial-gradient(circle at top, rgba(255,166,0,.22), transparent 35%),
        linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.75));
}

.download-card{
    width:100%;
    max-width:1000px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    padding:45px;

    background:rgba(18,18,18,.72);
    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.version-badge{
    display:inline-block;

    margin-bottom:18px;
    padding:8px 14px;

    background:rgba(255,179,0,.15);
    color:#ffb300;

    border:1px solid rgba(255,179,0,.35);
    border-radius:999px;

    font-size:.8rem;
    font-weight:900;
}

.download-info h3{
    font-size:2.4rem;
    margin-bottom:15px;
}

.download-info p{
    max-width:580px;
    color:#ddd;
    line-height:1.7;
    margin-bottom:28px;
}

.download-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.download-stats div{
    min-width:130px;

    padding:16px;

    background:rgba(255,255,255,.05);
    border-radius:16px;

    border:1px solid rgba(255,255,255,.07);
}

.download-stats strong{
    display:block;
    color:#ffb300;
    font-size:1.4rem;
    margin-bottom:5px;
}

.download-stats span{
    color:#bbb;
    font-size:.85rem;
}

.download-actions{
    display:flex;
    flex-direction:column;
    gap:15px;
    min-width:220px;
}

.download-main-btn,
.download-secondary-btn{
    text-align:center;
    text-decoration:none;
    font-weight:900;
    border-radius:999px;
    padding:16px 28px;
}

.download-main-btn{
    color:#000;
    background:linear-gradient(to bottom, #ffd000, #ff8f00);
    border:3px solid #703200;
    box-shadow:0 0 30px rgba(255,140,0,.55);
}

.download-secondary-btn{
    color:#fff;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.1);
}

.download-main-btn:hover,
.download-secondary-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:850px){
    .download-card{
        flex-direction:column;
        text-align:center;
    }

    .download-stats{
        justify-content:center;
    }

    .download-actions{
        width:100%;
    }
}
.footer{
    width:100%;

    padding:40px 20px;

    text-align:center;

    background:rgba(10,10,10,.95);

    border-top:1px solid rgba(255,255,255,.08);
}

.footer p{
    color:#999;

    font-size:.9rem;

    letter-spacing:1px;
}