*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Inter, Arial, sans-serif;
}

body{
    background:#0b0f19;
    color:white;
    overflow-x:hidden;
}

.bg{
    position:fixed;
    inset:0;
    background: radial-gradient(circle at top, #111827, #05070d);
    z-index:-3;
}

.glow{
    position:fixed;
    width:400px;
    height:400px;
    filter:blur(90px);
    z-index:-2;
    background: radial-gradient(circle, rgba(0,255,213,0.18), transparent);
}

.g1{ top:10%; left:10%; }
.g2{ bottom:10%; right:10%; }

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(12px);
    position:sticky;
    top:0;
    z-index:10;
}

.navbar ul{
    display:flex;
    gap:20px;
    list-style:none;
}

.navbar a{
    color:white;
    text-decoration:none;
    opacity:0.7;
    transition:0.2s;
}

.navbar a:hover{
    opacity:1;
    color:#00ffd5;
}

.brand{
    color:#00ffd5;
    font-weight:800;
}

.hero{
    text-align:center;
    padding:90px 20px;
}

.hero h1{
    font-size:56px;
    font-weight:900;
}

.hero h1 span,
.gradient-text{
    background:linear-gradient(90deg,#00ffd5,#6a5cff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-description{
    margin-top:20px;
    opacity:0.7;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.6;
}

.badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(0,255,213,0.1);
    margin-bottom:18px;
}

.buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.primary{
    background:#00ffd5;
    color:black;
    padding:12px 18px;
    border-radius:10px;
    font-weight:bold;
    text-decoration:none;
    display:inline-block;
    transition:0.2s;
}

.primary:hover{
    transform:scale(1.05);
}

.secondary{
    border:1px solid rgba(255,255,255,0.2);
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    display:inline-block;
    transition:0.2s;
}

.secondary:hover{
    border-color:#00ffd5;
    color:#00ffd5;
}

.stats{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:50px 0;
    flex-wrap:wrap;
}

.stat{
    background:rgba(255,255,255,0.05);
    padding:18px;
    border-radius:12px;
    text-align:center;
    min-width:140px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    max-width:1000px;
    margin:auto;
    padding:20px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:15px;
    transition:0.25s;
}

.card:hover{
    transform:translateY(-6px);
    border:1px solid rgba(0,255,213,0.4);
}

.product-grid{
    display:flex;
    gap:20px;
    padding:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
}

.product-card{
    flex:0 0 250px;
    background:#1f2937;
    padding:15px;
    border-radius:12px;
    cursor:pointer;
    transition:0.2s;
    scroll-snap-align:start;
}

.product-card:hover{
    transform:scale(1.05);
}

.product-card img{
    width:100%;
    border-radius:10px;
}

.product-page{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    justify-content:center;
    align-items:center;
    z-index:50;
}

.product-card-full{
    width:80%;
    height:80%;
    background:#111827;
    border-radius:15px;
    display:flex;
    gap:20px;
    padding:20px;
    position:relative;
    overflow:hidden;
}

.product-img{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}

.product-info{
    width:50%;
    overflow-y:auto;
    padding-right:10px;
}

.close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:26px;
    cursor:pointer;
}

.cta{
    text-align:center;
    padding:80px 20px;
    background:rgba(0,255,213,0.05);
    margin-top:60px;
}

.footer{
    text-align:center;
    padding:30px;
    opacity:0.5;
}

.notice-box{
    max-width:900px;
    margin:30px auto;
    background:#111;
    border:2px solid #5865F2;
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 0 20px rgba(88,101,242,0.25);
}

.discord-btn{
    margin-top:10px;
    padding:12px 24px;
    border:none;
    border-radius:10px;
    background:#5865F2;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.2s;
}

.discord-btn:hover{
    transform:scale(1.05);
}

.buy-btn{
    margin-top:15px;
    padding:12px;
    width:100%;
    background:#22c55e;
    border:none;
    font-weight:bold;
    cursor:pointer;
    border-radius:8px;
    color:black;
}

.secondary-buy{
    margin-top:15px;
    padding:12px;
    width:100%;
    background:#22c55e;
    border:none;
    font-weight:bold;
    cursor:pointer;
    border-radius:8px;
    color:black;
}
