:root{
  --bg:#070916; --text:#eaf0ff; --muted:#a8b2d8; --line:rgba(255,255,255,.09);
  --a:#ff4eaa; --b:#6ee7ff; --c:#ffd166; --shadow:0 24px 70px rgba(0,0,0,.45); --r:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 18% 12%, rgba(255,78,170,.16), transparent 60%),
    radial-gradient(900px 650px at 82% 22%, rgba(110,231,255,.12), transparent 58%),
    radial-gradient(950px 760px at 35% 88%, rgba(255,209,102,.10), transparent 65%),
    var(--bg);
  overflow-x:hidden;
}
a{color:inherit}
.wrap{max-width:1140px; margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(7,9,22,.86), rgba(7,9,22,.62));
  border-bottom:1px solid var(--line);
}
.nav{display:flex; gap:14px; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none; font-weight:900}
.logo{
  width:34px; height:34px; border-radius:10px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(255,78,170,.92), rgba(110,231,255,.36));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.links{display:flex; gap:10px; flex-wrap:wrap}
.links a{color:var(--muted); text-decoration:none; padding:8px 10px; border-radius:12px}
.links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  text-decoration:none; font-weight:800;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.btnPrimary{
  border-color: rgba(255,78,170,.55);
  background: linear-gradient(135deg, rgba(255,78,170,.92), rgba(110,231,255,.32));
}
main{padding:34px 0 20px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.hero{padding:22px; position:relative; overflow:hidden}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid rgba(255,255,255,.12);
  border-radius:999px; background: rgba(0,0,0,.14);
  color:var(--muted); font-weight:800;
}
.dot{
  width:8px; height:8px; border-radius:999px; background: var(--a);
  box-shadow: 0 0 0 6px rgba(255,78,170,.18);
  animation: pulse 1.8s infinite ease-in-out;
}
@keyframes pulse{0%,100%{transform:scale(1); opacity:1} 50%{transform:scale(1.55); opacity:.65}}
h1{margin:14px 0 10px; font-size:44px; line-height:1.05; letter-spacing:-.6px}
h2{margin:0 0 10px; font-size:26px; letter-spacing:-.3px}
h3{margin:0 0 10px}
p{margin:0 0 12px; color:var(--muted); line-height:1.7}
.grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:16px; align-items:start}
@media (max-width: 980px){.grid{grid-template-columns:1fr}}
.tiles{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 980px){.tiles{grid-template-columns:1fr}}
.tile{padding:16px; position:relative; overflow:hidden}
.tile p{margin:0}
.meta{display:flex; gap:10px; flex-wrap:wrap; align-items:center; color:var(--muted); font-size:13px}
.pill{padding:5px 10px; border-radius:999px; font-weight:900; border:1px solid var(--line); background: rgba(255,255,255,.04)}
.tags{display:flex; gap:10px; flex-wrap:wrap}
.tag{
  padding:8px 10px; border-radius:12px; border:1px solid var(--line);
  background: rgba(255,255,255,.04); color:var(--muted); font-weight:800; text-decoration:none
}
.tag:hover{color:var(--text); background: rgba(255,255,255,.07)}
.notice{
  margin-top:14px; padding:12px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.16);
}
.notice b{color:var(--text)}
aside{padding:18px}
aside ul{margin:0; padding:0 0 0 18px; color:var(--muted)}
aside li{margin:10px 0}
footer{padding:28px 0 40px; border-top:1px solid var(--line); margin-top:22px}
.small{font-size:13px; color:var(--muted)}
hr.div{border:none; border-top:1px solid var(--line); margin:14px 0}
details{
  border:1px solid var(--line); border-radius:14px; padding:12px 14px;
  background: rgba(255,255,255,.04); margin: 10px 0;
}
summary{cursor:pointer; font-weight:900}