
    :root { --bg:#0b1221; --fg:#e9eef7; --acc:#ffd447; --muted:#9fb0d1; --card:#121a2e; }
    *{box-sizing:border-box}
    body{margin:0;background:var(--bg);color:var(--fg);font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial}
    header,footer{background:#0d1630}
    a{color:var(--acc);text-decoration:none}
    .wrap{max-width:980px;margin:0 auto;padding:20px}
    nav{display:flex;gap:18px;flex-wrap:wrap}
    nav a{padding:10px 14px;background:var(--card);border-radius:14px}
    .cta{display:inline-block;padding:14px 18px;border-radius:16px;background:var(--acc);color:#111;font-weight:700}
    .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
    .card{background:var(--card);padding:18px;border-radius:18px;box-shadow:0 6px 24px #00000040}
    h1{font-size:clamp(28px,4vw,40px);margin:14px 0}
    h2{font-size:clamp(20px,3vw,28px);margin:12px 0}
    p{line-height:1.7;color:var(--fg)}
    .muted{color:var(--muted);font-size:0.95rem}
    .socials a{margin-right:10px}
    img.logo{height:42px;vertical-align:middle}
    .topbar{display:flex;align-items:center;justify-content:space-between;gap:16px}
    .breadcrumbs{font-size:.9rem;color:var(--muted)}
    