:root {
  --bg: #0c1016;
  --surface: #121925;
  --surface-2: #182230;
  --paper: #f4f5f3;
  --paper-2: #e8ebe9;
  --text: #eef2f5;
  --muted: #9ca8b5;
  --ink: #20262d;
  --ink-muted: #626b75;
  --accent: #f2c84b;
  --accent-2: #f7dd82;
  --border: rgba(255,255,255,.12);
  --paper-border: #d5dad7;
  --radius: 18px;
  --shadow: 0 22px 55px rgba(0,0,0,.24);
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--accent); color: #17120a; padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(12,16,22,.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; aspect-ratio: 1; border: 1px solid rgba(242,200,75,.55); border-radius: 50%; color: var(--accent); font-size: 12px; letter-spacing: .08em; }
.site-nav { display: flex; gap: 8px; align-items: center; }
.site-nav a { text-decoration: none; color: var(--muted); padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 650; }
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(255,255,255,.07); }
.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 9px; padding: 8px 11px; }
.hero { padding: clamp(76px, 11vw, 150px) 0 90px; overflow: hidden; background: radial-gradient(circle at 72% 42%, rgba(95,61,165,.18), transparent 30%), radial-gradient(circle at 12% 35%, rgba(242,200,75,.10), transparent 28%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 850; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 7vw, 88px); margin: 0 0 24px; }
h1 span { color: var(--accent); }
h2 { font-size: clamp(31px, 4vw, 48px); margin: 0 0 16px; }
h3 { font-size: 22px; margin: 0 0 10px; }
.hero-copy, .page-lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); max-width: 680px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border-radius: 11px; text-decoration: none; border: 1px solid transparent; font-weight: 800; cursor: pointer; }
.button.primary { background: var(--accent); color: #1a160b; }
.button.primary:hover { background: var(--accent-2); }
.button.secondary { border-color: var(--border); color: var(--text); background: rgba(255,255,255,.035); }
.game-orbit { position: relative; width: min(100%, 440px); aspect-ratio: 1; justify-self: center; border: 1px solid var(--border); border-radius: 38px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: var(--shadow), inset 0 0 80px rgba(255,255,255,.025); overflow: hidden; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.orbit-one { width: 72%; height: 72%; left: 14%; top: 14%; }
.orbit-two { width: 42%; height: 42%; left: 29%; top: 29%; }
.player-dot, .enemy-dot, .bullet-dot { position: absolute; border-radius: 50%; box-shadow: 0 0 18px currentColor; }
.player-dot { width: 42px; height: 42px; background: #fff; color: #fff; left: calc(50% - 21px); top: calc(50% - 21px); }
.enemy-dot { width: 30px; height: 30px; }
.enemy-red { background: #ef4f55; color: #ef4f55; left: 18%; top: 22%; }
.enemy-purple { background: #8d68d8; color: #8d68d8; right: 20%; top: 17%; }
.enemy-green { background: #58ae78; color: #58ae78; right: 17%; bottom: 22%; width: 38px; height: 38px; }
.bullet-dot { width: 13px; height: 13px; background: #ffd04a; color: #ffd04a; left: 70%; top: 55%; }
.bullet-dot::after { content: ""; position: absolute; width: 48px; height: 4px; right: 6px; top: 4px; background: linear-gradient(90deg, transparent, #ff9d34, #ffd04a); transform: rotate(-25deg); transform-origin: right center; border-radius: 999px; }
.section { padding: 92px 0; }
.section-muted { background: var(--surface); border-block: 1px solid var(--border); }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading > p:last-child, .split-panel > div > p:last-child { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 230px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card p { color: var(--muted); }
.card-number { display: inline-block; color: var(--accent); font-size: 13px; font-weight: 850; margin-bottom: 48px; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.action-list { border-top: 1px solid var(--border); }
.action-list a { display: flex; justify-content: space-between; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--border); text-decoration: none; font-weight: 760; }
.action-list a:hover { color: var(--accent); }
.page-hero { padding: 90px 0 60px; background: radial-gradient(circle at 80% 20%, rgba(95,61,165,.14), transparent 32%); }
.page-hero.compact h1 { font-size: clamp(42px, 6vw, 70px); }
.policy-section { background: var(--paper); color: var(--ink); }
.policy-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 70px; align-items: start; justify-content: center; }
.policy-toc { position: sticky; top: 100px; max-height: calc(100vh - 130px); overflow: auto; padding-right: 18px; }
.policy-toc strong { display: block; margin-bottom: 10px; }
.policy-toc a { display: block; color: var(--ink-muted); text-decoration: none; font-size: 13px; line-height: 1.35; padding: 7px 0; }
.policy-toc a:hover { color: var(--ink); }
.legal-copy { font-size: 16px; }
.legal-copy h2 { font-size: 30px; margin-top: 54px; scroll-margin-top: 100px; }
.legal-copy h3 { font-size: 20px; margin-top: 30px; }
.legal-copy p, .legal-copy li { color: var(--ink-muted); }
.legal-copy a { color: #315f91; overflow-wrap: anywhere; }
.legal-copy ul, .legal-copy ol { padding-left: 22px; }
.notice-box { background: #fff; color: var(--ink); border: 1px solid var(--paper-border); border-left: 4px solid var(--accent); padding: 20px 22px; border-radius: 12px; margin-bottom: 34px; }
.notice-box strong { color: var(--ink); }
.notice-box p { color: var(--ink-muted); margin-bottom: 0; }
.notice-box.success { background: rgba(88,174,120,.09); border-color: rgba(88,174,120,.35); color: var(--text); }
.notice-box.success p { color: var(--muted); }
.deletion-grid { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 48px; align-items: start; }
.request-form { background: var(--paper); color: var(--ink); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 24px; }
.form-heading h2 { font-size: 32px; margin-bottom: 8px; }
.form-heading p { color: var(--ink-muted); margin: 0; }
.request-form label:not(.check-row) { display: grid; gap: 7px; margin: 18px 0; font-weight: 760; }
.optional { color: var(--ink-muted); font-size: 13px; font-weight: 600; }
.required-mark { color: #9a3f3f; font-weight: 850; }
.field-help { display: block; margin-top: 7px; color: var(--ink-muted); font-size: 13px; font-weight: 400; line-height: 1.5; }
input, textarea { width: 100%; border: 1px solid var(--paper-border); border-radius: 10px; background: #fff; color: var(--ink); padding: 12px 13px; }
input:focus, textarea:focus { outline: 3px solid rgba(242,200,75,.30); border-color: #c6a73a; }
textarea { resize: vertical; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 22px 0; color: var(--ink-muted); }
.check-row input { width: 18px; height: 18px; margin-top: 4px; }
.form-status { min-height: 24px; color: #a33b3b; font-weight: 700; }
.support-card { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--border); padding: 26px; border-radius: var(--radius); }
.support-card h2 { font-size: 28px; }
.support-card p { color: var(--muted); }
.support-card hr { border: 0; border-top: 1px solid var(--border); margin: 24px 0; }
.email-link, .text-link { color: var(--accent); overflow-wrap: anywhere; }
.deletion-explainer { margin-top: 54px; color: var(--text); }
.deletion-explainer h2 { color: var(--text); }
.deletion-explainer p, .deletion-explainer li { color: var(--muted); }
.deletion-explainer a { color: var(--accent); }
code { background: rgba(255,255,255,.08); padding: 2px 5px; border-radius: 5px; font-size: .88em; overflow-wrap: anywhere; }
.site-footer { padding: 56px 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-grid p, .footer-bottom { color: var(--muted); }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--border); margin-top: 34px; padding-top: 20px; font-size: 13px; }
@media (max-width: 900px) {
  .hero-grid, .split-panel, .deletion-grid { grid-template-columns: 1fr; }
  .game-orbit { width: min(82vw, 420px); }
  .feature-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; max-height: none; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 18px; padding: 20px; background: #fff; border: 1px solid var(--paper-border); border-radius: 12px; }
  .policy-toc strong { grid-column: 1 / -1; }
  .support-card { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 14px; right: 14px; top: 64px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 8px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero { padding-top: 74px; }
  .button-row, .button { width: 100%; }
  .page-hero { padding-top: 70px; }
  .section { padding: 66px 0; }
  .policy-toc { grid-template-columns: 1fr; }
  .request-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
