:root {
  color-scheme: dark;
  --bg: #08090d;
  --surface: #11131a;
  --surface-2: #171a23;
  --surface-3: #1d202b;
  --text: #f7f8fb;
  --muted: #a7adbc;
  --muted-2: #747b8e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --blue: #4f8cff;
  --blue-deep: #2f66e8;
  --violet: #7894c9;
  --mint: #49dfb4;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 50% -20%, rgba(79, 140, 255, 0.035), transparent 34rem), var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient { display: none; }
.ambient-one { top: 10%; left: -180px; background: var(--violet); }
.ambient-two { top: 35%; right: -210px; background: var(--blue); }

a { color: #a9c7ff; text-decoration: none; }
a:hover { color: #d6e5ff; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-size: 20px; font-weight: 820; letter-spacing: -0.03em; }
.brand:hover { color: var(--text); }
.brand-mark { position: relative; display: inline-block; width: 31px; height: 25px; }
.brand-mark i { position: absolute; top: 4px; width: 17px; height: 17px; border: 3px solid currentColor; border-radius: 6px; transform: rotate(45deg); }
.brand-mark i:first-child { left: 2px; color: var(--blue); }
.brand-mark i:last-child { right: 2px; color: #8792a8; }
.site-header nav, .site-footer nav { display: flex; align-items: center; gap: 8px; }
.site-header nav a, .site-footer nav a { padding: 8px 12px; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 700; }
.site-header nav a:hover, .site-header nav a[aria-current="page"] { background: rgba(255,255,255,.06); color: var(--text); }

.home-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); gap: clamp(48px, 7vw, 92px); align-items: center; min-height: 680px; padding: 92px 0 104px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; color: #a9c7ff; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 18px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--violet)); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(42px, 4.8vw, 62px); line-height: 1.05; letter-spacing: -0.05em; }
h1 em { display: block; color: #83aaf5; font-style: normal; }
h2 { margin-bottom: 14px; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; letter-spacing: -0.04em; }
h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; }
p, li { color: var(--muted); }
.lead { max-width: 610px; margin: 24px 0 0; color: #c2c7d3; font-size: 18px; line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 0 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: var(--blue-deep); box-shadow: inset 0 1px rgba(255,255,255,.12); color: white; font-size: 14px; font-weight: 800; transition: background .2s ease, border-color .2s ease; }
.button:hover { border-color: rgba(255,255,255,.18); background: #386fef; color: white; }
.button.secondary { background: rgba(255,255,255,.055); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.button.secondary:hover { background: rgba(255,255,255,.09); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-notes li { font-size: 12px; font-weight: 700; color: var(--muted-2); }
.hero-notes span { margin-right: 4px; color: var(--mint); }

.product-wrap { position: relative; }
.product-window { position: relative; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; background: #13151c; box-shadow: 0 22px 48px rgba(0,0,0,.26), inset 0 1px rgba(255,255,255,.035); }
.window-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); color: #e8ebf2; font-size: 13px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.025); color: #aeb4c0; font-size: 10px; }
.live-pill i, .online i, .preview-footer i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 9px rgba(73,223,180,.8); }
.partner-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 12px; align-items: center; margin: 16px 18px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.mini-avatar { display: grid; place-items: center; width: 39px; height: 39px; border: 2px solid rgba(255,255,255,.14); border-radius: 50%; background: linear-gradient(135deg, #608fe6, #9473de); color: white; font-size: 13px; font-weight: 900; }
.partner-row span:nth-child(2) { display: grid; }
.partner-row small, .preview-label small, .game-card small { color: var(--muted-2); font-size: 10px; }
.partner-row strong { font-size: 13px; }
.online { display: inline-flex; align-items: center; gap: 7px; color: #c8ccd6; font-size: 11px; font-weight: 750; }
.share-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 9px; font-weight: 750; }
.share-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }
.preview-tools { display: flex; align-items: center; gap: 5px; margin: 0 18px 22px; }
.view-tab { padding: 6px 9px; border-radius: 7px; color: #7f8797; font-size: 9px; font-weight: 800; }
.view-tab.active { background: #262a35; color: #e5e7ec; }
.search-preview { flex: 1; margin-left: 6px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #697183; font-size: 9px; }
.preview-label { display: flex; justify-content: space-between; align-items: center; margin: 25px 20px 11px; color: #e8eaf0; font-size: 12px; font-weight: 800; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 18px; }
.game-card { padding: 8px 8px 14px; border: 1px solid transparent; border-radius: 11px; background: rgba(255,255,255,.018); }
.game-card strong, .game-card small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.game-card strong { margin-top: 8px; color: #e9ebf0; font-size: 11px; }
.game-art { position: relative; display: grid; place-items: center; aspect-ratio: 1.12; overflow: hidden; border-radius: 8px; }
.game-art::before, .game-art::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.game-art::before { width: 80px; height: 80px; top: -35px; right: -20px; background: rgba(255,255,255,.08); }
.game-art::after { width: 55px; height: 55px; bottom: -25px; left: -12px; background: rgba(255,255,255,.05); }
.game-art span { position: relative; z-index: 1; color: rgba(255,255,255,.9); font-size: 27px; }
.art-one { background: #394765; }
.art-two { background: #304f6d; }
.art-three { background: #4b405e; }
.preview-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 15px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.preview-footer > span { display: flex; align-items: center; gap: 7px; }
.preview-footer button { border: 0; border-radius: 8px; padding: 8px 12px; background: var(--blue); color: white; font: inherit; font-weight: 800; }

.section { padding: 104px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading > p:last-child { margin-bottom: 0; font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 250px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #11131a; transition: border-color .2s ease; }
.feature-card:hover { border-color: rgba(255,255,255,.14); }
.feature-card.featured { grid-column: span 2; }
.feature-number { display: inline-grid; place-items: center; width: 34px; height: 26px; margin-bottom: 44px; border: 1px solid var(--line); border-radius: 8px; color: #8491aa; font-size: 10px; font-weight: 850; }
.feature-card p { max-width: 470px; margin-bottom: 0; font-size: 14px; }
.mini-shelf { position: absolute; right: 28px; bottom: 24px; display: flex; align-items: flex-end; gap: 7px; height: 86px; opacity: .42; filter: saturate(.45); }
.mini-shelf i { display: block; width: 44px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; box-shadow: 0 10px 18px rgba(0,0,0,.2); transform: rotate(3deg); }
.mini-shelf i:nth-child(1) { height: 60px; background: linear-gradient(145deg, #4f46e5, #7c3aed); }
.mini-shelf i:nth-child(2) { height: 78px; background: linear-gradient(145deg, #0369a1, #2563eb); transform: translateY(-6px) rotate(-2deg); }
.mini-shelf i:nth-child(3) { height: 67px; background: linear-gradient(145deg, #be185d, #7c3aed); }
.mini-shelf i:nth-child(4) { height: 51px; background: linear-gradient(145deg, #047857, #0891b2); transform: rotate(-4deg); }

.link-panel { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(45px, 8vw, 110px); padding: clamp(32px, 5vw, 62px); border: 1px solid var(--line-strong); border-radius: 24px; background: #11131a; box-shadow: inset 0 1px rgba(255,255,255,.025); }
.link-intro h2 { font-size: clamp(28px, 3.2vw, 38px); }
.link-intro > p:not(.eyebrow) { font-size: 15px; }
.link-intro > a { display: inline-flex; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 800; }
.steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 0 0 26px; }
.steps li:not(:last-child)::before { content: ""; position: absolute; left: 22px; top: 43px; bottom: 4px; width: 1px; background: linear-gradient(var(--blue), rgba(255,255,255,.06)); }
.steps li:last-child { padding-bottom: 0; }
.steps li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(79,140,255,.28); border-radius: 14px; background: rgba(79,140,255,.09); color: #a9c7ff; font-size: 12px; font-weight: 850; }
.steps strong { color: var(--text); font-size: 15px; }
.steps p { margin: 4px 0 0; font-size: 13px; }

.final-callout { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-bottom: 96px; padding: 34px 38px; border: 1px solid var(--line-strong); border-radius: 20px; background: #11131a; }
.final-callout h2 { margin-bottom: 8px; font-size: 24px; }
.final-callout p:last-child { max-width: 680px; margin-bottom: 0; font-size: 13px; }
.final-callout .eyebrow { margin-bottom: 10px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 30px 0 44px; border-top: 1px solid var(--line); }
.brand.compact { font-size: 16px; }
.brand.compact .brand-mark { transform: scale(.78); transform-origin: left center; margin-right: -5px; }
.site-footer p { margin: 0; color: var(--muted-2); font-size: 11px; }
.site-footer nav { justify-self: end; }
.site-footer nav a { font-size: 12px; }

/* Privacy and support pages */
.inner-main { padding-bottom: 104px; }
.document-hero { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; padding: 82px 0 46px; }
.document-hero > div:first-child { max-width: 780px; }
.document-hero h1, .support-hero h1 { max-width: 760px; font-size: clamp(38px, 4.4vw, 54px); line-height: 1.08; }
.updated-card { display: grid; min-width: 220px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.updated-card small, .updated-card span { color: var(--muted-2); font-size: 10px; }
.updated-card strong { margin: 2px 0 7px; color: #a6f2d8; font-size: 17px; }
.privacy-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 70px; }
.privacy-summary article { display: flex; align-items: flex-start; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #11131a; }
.privacy-summary article div { display: grid; gap: 3px; }
.privacy-summary strong { font-size: 13px; }
.privacy-summary small { color: var(--muted-2); font-size: 11px; line-height: 1.5; }
.summary-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.summary-dot.mint { color: var(--mint); background: currentColor; }
.summary-dot.blue { color: var(--blue); background: currentColor; }
.summary-dot.violet { color: var(--violet); background: currentColor; }

.document-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(50px, 8vw, 104px); align-items: start; }
.page-index { position: sticky; top: 28px; padding: 18px 0; border-top: 1px solid var(--line-strong); }
.page-index > span { display: block; margin-bottom: 12px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-index nav { display: grid; gap: 3px; }
.page-index a { padding: 6px 0; color: #858c9d; font-size: 12px; font-weight: 650; }
.page-index a:hover { color: #c8d9fa; }
.document-content { max-width: 760px; }
.document-content > section { scroll-margin-top: 25px; padding: 0 0 54px; }
.document-content > section + section { padding-top: 54px; border-top: 1px solid var(--line); }
.section-kicker { display: inline-block; margin-bottom: 13px; color: #6f7890; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.document-content h2 { margin-bottom: 18px; font-size: clamp(23px, 2.4vw, 29px); }
.document-content p { font-size: 14px; }
.clean-list { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.clean-list li { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); font-size: 13px; }
.clean-list strong { color: #e8eaf0; }
.clean-list span { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--mint); font-weight: 900; }
.note-box { margin-top: 26px; padding: 20px 22px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(255,255,255,.022); }
.note-box strong { color: #d9e6ff; font-size: 13px; }
.note-box p { margin: 6px 0 0; font-size: 12px; }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.promise-grid span { position: relative; padding: 18px 18px 18px 42px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); color: #c6cad4; font-size: 12px; }
.promise-grid span::before { content: "—"; position: absolute; left: 18px; color: #8e80ff; font-weight: 900; }
.contact-section { padding: 32px !important; border: 1px solid var(--line-strong) !important; border-radius: 20px; background: #11131a; }
.contact-section .button { margin-top: 6px; }

.support-hero { max-width: 850px; padding: 82px 0 54px; }
.support-hero h1 em { display: inline; }
.quick-check { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center; margin-bottom: 100px; padding: 30px 34px; border: 1px solid var(--line-strong); border-radius: 20px; background: #11131a; }
.quick-check > div { display: flex; align-items: center; gap: 15px; }
.quick-check small { color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quick-check h2 { margin: 0; font-size: 21px; }
.pulse-icon { position: relative; display: grid; flex: 0 0 auto; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(79,140,255,.24); border-radius: 50%; background: rgba(79,140,255,.08); }
.pulse-icon::before { content: ""; width: 19px; height: 19px; border: 1px solid rgba(79,140,255,.45); border-radius: 50%; }
.pulse-icon i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.quick-check ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.quick-check li { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: center; font-size: 11px; line-height: 1.45; }
.quick-check li span { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 8px; color: #a9c7ff; font-size: 9px; font-weight: 850; }
.support-section { padding-bottom: 100px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #11131a; }
.support-card h3 { margin: 16px 0 10px; }
.support-card p { font-size: 13px; }
.topic-tag { display: inline-flex; padding: 5px 9px; border: 1px solid rgba(79,140,255,.2); border-radius: 99px; background: rgba(79,140,255,.07); color: #a9c7ff; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.support-card .tip { margin: 20px 0 0; padding-top: 15px; border-top: 1px solid var(--line); color: #858c9d; font-size: 11px; }
.support-card .tip strong { color: #bdc3cf; }
.request-panel { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 38px; border: 1px solid var(--line-strong); border-radius: 20px; background: #11131a; }
.request-panel h2 { margin-bottom: 10px; font-size: 26px; }
.request-panel > div:first-child > p:last-child { max-width: 650px; margin: 0; font-size: 13px; }
.contact-card { display: grid; min-width: 290px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,9,13,.38); }
.contact-card small, .contact-card span { color: var(--muted-2); font-size: 10px; }
.contact-card a { margin: 3px 0 7px; font-size: 13px; font-weight: 800; }

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-copy { max-width: 720px; }
  .product-wrap { max-width: 640px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-column: span 2; }
  .link-panel { grid-template-columns: 1fr; }
  .document-hero { grid-template-columns: 1fr; gap: 26px; }
  .updated-card { max-width: 260px; }
  .document-layout { grid-template-columns: 1fr; gap: 32px; }
  .page-index { position: static; }
  .page-index nav { display: flex; flex-wrap: wrap; gap: 4px 14px; }
  .document-content { max-width: none; }
  .quick-check { grid-template-columns: 1fr; }
  .request-panel { grid-template-columns: 1fr; gap: 28px; }
  .contact-card { max-width: 420px; }
}

@media (max-width: 620px) {
  .site-shell, .site-header { width: min(100% - 28px, 1160px); }
  .site-header { padding: 17px 0; }
  .site-header nav { gap: 0; }
  .site-header nav a { padding: 7px 8px; font-size: 12px; }
  .brand { gap: 7px; font-size: 17px; }
  .brand-mark { transform: scale(.8); transform-origin: left center; margin-right: -5px; }
  .home-hero { gap: 54px; padding: 58px 0 74px; }
  h1 { font-size: clamp(36px, 10vw, 46px); }
  .lead { font-size: 16px; }
  .product-window { transform: none; }
  .game-grid { gap: 6px; padding-inline: 10px; }
  .game-card { padding: 5px; }
  .partner-row { margin-inline: 10px; }
  .preview-footer { padding-inline: 12px; }
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: auto; }
  .mini-shelf { opacity: .35; }
  .link-panel { padding: 28px 20px; border-radius: 22px; }
  .final-callout { align-items: flex-start; flex-direction: column; margin-bottom: 68px; padding: 28px 22px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }
  .inner-main { padding-bottom: 72px; }
  .document-hero, .support-hero { padding-top: 58px; }
  .privacy-summary { grid-template-columns: 1fr; margin-bottom: 56px; }
  .clean-list li { grid-template-columns: 1fr; gap: 4px; }
  .promise-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 24px !important; }
  .quick-check { margin-bottom: 74px; padding: 24px 20px; }
  .quick-check ol { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-section { padding-bottom: 74px; }
  .request-panel { padding: 28px 22px; }
  .contact-card { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
