*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#050505;
    color:white;
    overflow-x:hidden;
}

/* BACKGROUND */

.bg{
    position:fixed;
    inset:0;
    z-index:-5;

    background:
    radial-gradient(circle at top left,#ff7b00,transparent 25%),
    radial-gradient(circle at bottom right,#ff00c8,transparent 25%),
    radial-gradient(circle at center,#7a00ff,transparent 35%);

    filter:blur(120px);

    animation:bgMove 12s ease-in-out infinite alternate;
}

@keyframes bgMove{
    from{
        transform:scale(1) translateY(0px);
    }
    to{
        transform:scale(1.2) translateY(-50px);
    }
}

.fog{
    position:fixed;
    inset:0;

    background:
    linear-gradient(
      rgba(255,255,255,.015),
      transparent
    );

    z-index:-4;
}

.grid-overlay{
    position:fixed;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:40px 40px;

    z-index:-3;
}

.mouse-glow{
    position:fixed;
    width:500px;
    height:500px;

    border-radius:50%;

    pointer-events:none;

    background:
    radial-gradient(circle,
    rgba(255,140,0,.12),
    transparent 70%);

    transform:translate(-50%,-50%);

    z-index:-2;
}

#particles{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:28px 80px;

    background:rgba(255,255,255,.03);

    border-bottom:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);
}

.logo{
    font-size:28px;
    font-weight:800;

    background:
    linear-gradient(to right,#ff7b00,#ff00c8);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    opacity:.7;

    transition:.3s;
}

.nav-links a:hover{
    opacity:1;
}

.live-users{
    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border-radius:16px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#00ff66;

    box-shadow:0 0 14px #00ff66;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{opacity:1;}
    50%{opacity:.4;}
    100%{opacity:1;}
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;

    padding:80px;
}

.left{
    max-width:650px;
}

.badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:25px;
}

.hero h1{
    font-size:92px;
    line-height:1;

    margin-bottom:25px;

    background:
    linear-gradient(to right,#fff,#ff7b00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:20px;
    opacity:.72;

    line-height:1.7;

    margin-bottom:40px;
}

.buttons{
    display:flex;
    gap:18px;

    margin-bottom:50px;
}

.primary,
.secondary,
.download-btn,
.download{
    border:none;
    cursor:pointer;

    padding:18px 34px;

    border-radius:18px;

    color:white;

    font-size:17px;
    font-weight:700;

    transition:.35s;
}

.primary,
.download-btn,
.download{
    background:
    linear-gradient(135deg,#ff7b00,#ff00c8);
}

.primary:hover,
.download-btn:hover,
.download:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 35px rgba(255,140,0,.35),
    0 0 60px rgba(255,0,200,.15);
}

.secondary{
    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.secondary:hover{
    transform:translateY(-5px);

    border-color:rgba(255,140,0,.4);
}

.stats{
    display:flex;
    gap:25px;
}

.stat{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    padding:24px 28px;

    border-radius:24px;
}

.stat h2{
    font-size:38px;
    margin-bottom:10px;
}

.stat span{
    opacity:.7;
}

/* LAUNCHER CARD */

.launcher-card{
    width:420px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border-radius:30px;

    transition:.35s;
}

.launcher-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 0 40px rgba(255,140,0,.12);
}

.launcher-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.launcher-content{
    padding:28px;
}

/* FEATURED */

.featured{
    padding:120px 80px;
}

.featured h2{
    font-size:48px;
    margin-bottom:45px;

    background:
    linear-gradient(to right,#fff,#ff7b00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mods-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.mod-card{
    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border-radius:28px;

    transition:.35s;
}

.mod-card:hover{
    transform:
    translateY(-10px)
    scale(1.02);

    border-color:rgba(255,140,0,.35);

    box-shadow:
    0 0 40px rgba(255,140,0,.12);
}

/* CLEAN ICON STYLE */

.mod-icon{
    height:230px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:92px;
    font-weight:800;

    background:
    radial-gradient(circle at top,
    rgba(255,123,0,.16),
    rgba(255,0,200,.08));

    border-bottom:
    1px solid rgba(255,255,255,.06);

    color:white;

    text-shadow:
    0 0 20px rgba(255,255,255,.35),
    0 0 40px rgba(255,123,0,.25);

    transition:.35s;
}

.mod-card:hover .mod-icon{
    transform:scale(1.03);
}

.mod-info{
    padding:28px;
}

.mod-info h3{
    font-size:28px;
    margin-bottom:12px;
}

.mod-info p{
    opacity:.7;
    line-height:1.7;

    margin-bottom:25px;
}

/* DOWNLOAD FEED */

.downloads-live{
    padding:100px 80px;
}

.downloads-live h2{
    font-size:46px;
    margin-bottom:35px;
}

#downloadFeed{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.download-item{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    padding:22px;

    border-radius:22px;
}

/* FAQ */

.faq{
    padding:120px 80px;
}

.faq h2{
    font-size:46px;
    margin-bottom:35px;
}

.faq-item{
    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    padding:26px;

    border-radius:24px;

    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:12px;
}

/* MOBILE */

@media(max-width:900px){

    nav{
        padding:20px;
    }

    .nav-links{
        display:none;
    }

    .hero{
        flex-direction:column;
        text-align:center;

        padding:40px 20px;
    }

    .hero h1{
        font-size:62px;
    }

    .buttons,
    .stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .launcher-card{
        width:100%;
    }

    .featured,
    .downloads-live,
    .faq{
        padding:70px 20px;
    }
}