
:root{
    --bg: #050816;
    --card-bg: #0b1020;
    --accent: #00c7ff;
    --accent2: #ff3b3b;
    --accent-soft: rgba(0,199,255,.15);
    --text-main: #f5f7ff;
    --text-soft: #a9b0c5;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(0,0,0,.65);
}

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

body{
    font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background: radial-gradient(circle at top,#1a2540 0,#050816 45%,#02030a 100%);
    color:var(--text-main);
}

/* HEADER */
header{
    position:sticky;top:0;z-index:10;
    backdrop-filter:blur(14px);
    background:rgba(5,8,22,.92);
    border-bottom:1px solid rgba(255,255,255,.04);
}
.header-inner{
    max-width:1100px;margin:0 auto;
    padding:10px 18px;
    display:flex;align-items:center;justify-content:space-between;
}
.logo-wrap{display:flex;align-items:center;gap:10px;}
.logo-icon{
    width:32px;height:32px;border-radius:10px;
    background:conic-gradient(from 140deg,#ffcd3c,#ff8b3d,#ff3b3b,#ffcd3c);
    display:flex;align-items:center;justify-content:center;
    color:#111;font-weight:800;
    box-shadow:0 0 20px rgba(255,170,0,.65);
}
.logo-text-main{font-weight:700;letter-spacing:.04em;font-size:20px;}

nav a{
    color:var(--text-soft);text-decoration:none;
    font-size:15px;margin-left:18px;position:relative;
}
nav a:first-child{margin-left:0;}
nav a.active{
    color:var(--accent);font-weight:600;
}
nav a.active::after{
    content:"";position:absolute;left:0;bottom:-4px;
    width:100%;height:2px;border-radius:999px;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
}

/* LAYOUT */
.page{max-width:1100px;margin:0 auto;padding:22px 18px 60px;}

/* HERO */
.hero{
    margin-top:18px;
    padding:22px 20px;
    border-radius:24px;
    background:
        radial-gradient(circle at 0 0,rgba(0,199,255,.18) 0,transparent 55%),
        radial-gradient(circle at 100% 0,rgba(255,59,59,.24) 0,transparent 55%),
        var(--card-bg);
    box-shadow:var(--shadow);
    display:flex;flex-wrap:wrap;gap:18px;align-items:center;
}
.hero-main{flex:1 1 260px;}
.hero-kicker{font-size:13px;text-transform:uppercase;letter-spacing:.15em;color:var(--accent);margin-bottom:8px;}
.hero-title{font-size:26px;line-height:1.15;font-weight:700;margin-bottom:10px;}
.hero-title span{color:var(--accent2);}
.hero-text{font-size:14px;color:var(--text-soft);margin-bottom:14px;}
.hero-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px;}
.hero-badge{
    font-size:11px;padding:4px 9px;border-radius:999px;
    background:rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.08);
    color:var(--text-soft);display:flex;align-items:center;gap:5px;
}
.hero-badge-dot{width:6px;height:6px;border-radius:999px;background:var(--accent);}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:10px;}
.hero-side{
    flex:0 1 230px;
    background:rgba(0,0,0,.35);
    border-radius:18px;
    padding:12px;border:1px solid rgba(255,255,255,.06);
    font-size:12px;
}
.hero-side-title{font-size:13px;font-weight:600;margin-bottom:6px;}
.hero-side-pill{
    margin-top:8px;padding:5px 9px;border-radius:999px;
    background:rgba(0,0,0,.45);
    display:inline-flex;align-items:center;gap:6px;
}
.hero-side-pill span{font-size:11px;color:var(--accent);}

/* BUTTONS */
.btn{
    border:none;cursor:pointer;border-radius:999px;
    padding:9px 18px;font-size:14px;
    display:inline-flex;align-items:center;gap:8px;
    font-weight:600;
    transition:transform .1s ease,box-shadow .1s ease,background .1s ease;
    text-decoration:none;
}
.btn-primary{
    background:linear-gradient(120deg,var(--accent),#43ffd0);
    color:#001220;box-shadow:0 0 18px rgba(0,199,255,.4);
}
.btn-ghost{
    background:transparent;
    border:1px solid rgba(255,255,255,.25);
    color:var(--text-soft);
}
.btn-pill{
    font-size:12px;padding:7px 13px;
    background:rgba(0,0,0,.4);
    border:1px solid rgba(255,255,255,.16);
    color:var(--text-soft);
}
.btn:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(0,0,0,.4);}
.btn.hot{border-color:var(--accent2);color:#fff;}

/* CHIPS */
.chip-row{margin-top:18px;display:flex;flex-wrap:wrap;gap:10px;}
.chip{
    font-size:12px;padding:7px 13px;border-radius:999px;
    background:rgba(0,0,0,.5);
    border:1px solid rgba(255,255,255,.12);
    color:var(--text-soft);
    cursor:pointer;display:inline-flex;align-items:center;gap:6px;
}
.chip span.dot{width:7px;height:7px;border-radius:999px;background:var(--accent);}
.chip.serv{border-color:var(--accent);}
.chip.robux{border-color:var(--accent2);}

/* SECTIONS */
.section{margin-top:30px;}
.section-title{font-size:18px;font-weight:600;margin-bottom:8px;}
.section-sub{font-size:13px;color:var(--text-soft);margin-bottom:14px;}

/* CARDS GRID */
.cat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.cat-card{
    background:var(--card-bg);border-radius:18px;padding:14px;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:0 12px 30px rgba(0,0,0,.6);
    display:flex;flex-direction:column;gap:6px;
}
.cat-img{
    width:100%;height:120px;border-radius:14px;
    background:#111;background-size:cover;background-position:center;
    margin-bottom:8px;
}
.cat-tag{font-size:11px;text-transform:uppercase;letter-spacing:.15em;color:var(--accent);}
.cat-title{font-size:16px;font-weight:600;}
.cat-text{font-size:12px;color:var(--text-soft);}
.cat-bottom{margin-top:6px;display:flex;justify-content:space-between;align-items:center;font-size:11px;color:var(--text-soft);}

/* GRID CARDS */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;}
.card{
    background:var(--card-bg);
    border-radius:18px;overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.04);
    display:flex;flex-direction:column;
}
.card-body{padding:12px 13px 13px;display:flex;flex-direction:column;gap:6px;}
.card-tag{font-size:11px;color:var(--accent);text-transform:uppercase;letter-spacing:.12em;}
.card-title{font-size:15px;font-weight:600;}
.card-meta{font-size:11px;color:var(--text-soft);}
.card-text{font-size:12px;color:var(--text-soft);}
.card-footer{
    padding:0 13px 11px;
    display:flex;justify-content:space-between;align-items:center;
    font-size:11px;color:var(--text-soft);
}
.pill-small{
    padding:4px 9px;border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    text-decoration:none;color:var(--text-soft);
}

/* ARTICLE CARD */
.article-card{
    background:var(--card-bg);
    border-radius:20px;
    padding:18px 16px 18px;
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 12px 35px rgba(0,0,0,.7);
    font-size:13px;line-height:1.6;color:var(--text-soft);
}
.article-card h2,.article-card h3{color:var(--text-main);margin-bottom:6px;}
.article-card h3{font-size:15px;margin-top:14px;}
.article-card p{margin-bottom:8px;}

/* BUTTON GRID */
.btn-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:10px;margin-top:8px;
}
.btn-grid .btn-pill{justify-content:flex-start;}

/* FOOTER */
footer{
    text-align:center;
    font-size:11px;color:var(--text-soft);
    padding:25px 10px 40px;
}

/* RESPONSIVE */
@media (max-width:640px){
    .hero{padding:18px 16px;}
    .hero-title{font-size:23px;}
    .header-inner{padding:8px 14px;}
    .logo-text-main{font-size:18px;}
}
