
:root {
  --bg: #0b0b12;
  --panel: #121221;
  --text: #d9d9df;
  --muted: #a6a6b3;
  --accent: #60a5fa;
  --accent-2: #a78bfa;
  --link: #60a5fa;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Noto Sans, Helvetica, Arial; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.header { position: sticky; top: 0; backdrop-filter: blur(6px); background: rgba(11,11,18,0.85); border-bottom: 1px solid #1f1f2b; z-index: 20; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 20px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand h1 { margin: 0; font-size: 28px; }
.brand .tag { color: var(--muted); font-size: 14px; }
.nav { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 0 0 0; }
.nav a { padding: 8px 12px; border-radius: 999px; background: #17172a; border: 1px solid #24243a; white-space: nowrap; }
.nav a:hover { border-color: var(--accent); color: var(--accent); }
.hero { padding: 40px 0 10px; }
.hero h2 { font-size: 36px; margin: 0 0 8px; }
.hero p { color: var(--muted); margin-top: 0; }
.panel { background: var(--panel); border: 1px solid #1f1f2b; border-radius: 16px; padding: 22px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid.cols-3 { grid-template-columns: 1fr; } .grid.cols-2 { grid-template-columns: 1fr; } }
.badge { display: inline-flex; gap: 6px; align-items: center; padding: 6px 10px; border-radius: 999px; background: #1a1a2e; border: 1px solid #25253b; color: var(--accent); font-weight: 600; }
.embed-wrap { margin: 14px 0 6px; }
.embed-outer { display: flex; justify-content: center; }
.embed { width: 100%; max-width: 1200px; aspect-ratio: 16 / 9; border: 0; border-radius: 12px; background: #0d0d18; }
.note { font-size: 13px; color: var(--muted); }
.footer { color: var(--muted); border-top: 1px solid #1f1f2b; margin-top: 30px; padding: 26px 0 60px; }
.hgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .hgrid { grid-template-columns: 1fr; } }
.card { background: #141426; border: 1px solid #23233a; border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; padding: 10px 14px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0d0d14; border: 0; }
.btn:hover { filter: brightness(1.05); text-decoration: none; }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--muted); }
.seo { line-height: 1.7; }
.inline-tags a { display: inline-block; margin-right: 8px; font-size: 12px; color: var(--muted); }
.disclaimer { font-size: 12px; color: var(--muted); }
