:root {
  color-scheme: dark;
  --void: #0b0d12;
  --void-2: #0e1118;
  --carbon: #151922;
  --carbon-2: #1a1f2a;
  --slate: #252c39;
  --slate-2: #323a49;
  --frost: #edf2f7;
  --paper: #f8fafc;
  --mist: #98a2b3;
  --muted: #6f7a8c;
  --pulse: #7c5cff;
  --pulse-2: #9b86ff;
  --signal: #2ee6a6;
  --signal-2: #71f3c4;
  --alert: #ff5d73;
  --warning: #ffc857;
  --blue: #67d8ff;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .22);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, .46);
  --container: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% -10%, rgba(124, 92, 255, .18), transparent 34rem),
    radial-gradient(circle at 92% 14%, rgba(46, 230, 166, .08), transparent 28rem),
    var(--void);
  color: var(--frost);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: rgba(124, 92, 255, .45); color: #fff; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 1000;
  padding: 10px 14px; border-radius: var(--radius-xs);
  background: var(--paper); color: #111; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 68px 0; }
.section-divider { border-top: 1px solid rgba(255,255,255,.07); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 14px; color: var(--signal); font-size: .74rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.section-heading {
  display: flex; justify-content: space-between; gap: 30px; align-items: end;
  margin-bottom: 34px;
}
.section-heading h2, .page-title h1 {
  margin: 0; font-size: clamp(2rem, 4.6vw, 4rem); line-height: .98;
  letter-spacing: -.055em; max-width: 800px;
}
.section-heading p { margin: 0; color: var(--mist); max-width: 560px; font-size: 1.02rem; }
.kicker { color: var(--mist); font-size: 1.08rem; max-width: 660px; }
.gradient-text {
  background: linear-gradient(100deg, #fff 10%, var(--pulse-2) 48%, var(--signal-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--mist); }
.small { font-size: .84rem; }
.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;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 80; height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(11,13,18,.68); backdrop-filter: blur(20px) saturate(140%);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: rgba(255,255,255,.08); background: rgba(11,13,18,.9); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; }
.brand-name { font-size: 1.05rem; font-weight: 900; letter-spacing: .19em; }
.header-nav { display: flex; align-items: center; gap: 5px; margin-left: 12px; }
.nav-link {
  position: relative; padding: 10px 12px; border-radius: 10px;
  color: #b9c1ce; font-size: .9rem; font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; border-radius: 99px; background: linear-gradient(90deg,var(--pulse),var(--signal));
}
.header-actions { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.icon-btn, .menu-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.09); border-radius: 12px;
  background: rgba(255,255,255,.035); cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s ease, background .2s ease;
}
.icon-btn:hover, .menu-btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.menu-btn { display: none; }
.user-chip {
  display: flex; align-items: center; gap: 9px; border: 0; border-radius: 13px;
  padding: 6px 10px 6px 6px; background: rgba(255,255,255,.055); cursor: pointer;
}
.user-avatar {
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px;
  background: linear-gradient(135deg,var(--pulse),var(--signal)); color: #090b0f; font-weight: 900;
}
.user-name { font-size: .86rem; font-weight: 750; max-width: 110px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.mobile-panel {
  position: fixed; inset: var(--header-height) 0 auto; z-index: 79;
  padding: 16px 20px 24px; background: rgba(11,13,18,.97);
  border-bottom: 1px solid rgba(255,255,255,.09); transform: translateY(-120%);
  opacity: 0; pointer-events: none; transition: transform .28s var(--ease), opacity .2s ease;
}
.mobile-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-panel nav { display: grid; gap: 5px; }
.mobile-panel .nav-link { padding: 13px 14px; }
.mobile-panel .mobile-actions { display: grid; gap: 10px; margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 45px; padding: 0 18px; border: 1px solid transparent; border-radius: 12px;
  font-weight: 800; font-size: .91rem; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: #090b0e; background: linear-gradient(110deg,var(--pulse-2),var(--signal)); box-shadow: 0 10px 30px rgba(124,92,255,.2); }
.btn-primary:hover { box-shadow: 0 14px 38px rgba(124,92,255,.3); }
.btn-secondary { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.11); }
.btn-secondary:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.1); color: #d6dce5; }
.btn-danger { background: rgba(255,93,115,.1); border-color: rgba(255,93,115,.25); color: #ff8c9c; }
.btn-sm { min-height: 38px; padding-inline: 14px; font-size: .84rem; }
.btn-lg { min-height: 54px; padding-inline: 23px; border-radius: 14px; font-size: .96rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.btn svg, .icon-btn svg, .menu-btn svg { width: 18px; height: 18px; }
.link-arrow { display: inline-flex; gap: 8px; align-items: center; font-weight: 780; color: #e8eaf0; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* Hero */
.hero { position: relative; min-height: calc(100vh - var(--header-height)); display: grid; align-items: center; padding: 72px 0 78px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 920px; height: 920px; right: -340px; top: -360px;
  border: 1px solid rgba(124,92,255,.13); border-radius: 50%; box-shadow: inset 0 0 160px rgba(124,92,255,.04);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; position: relative; z-index: 1; }
.hero-copy h1 { margin: 0 0 24px; font-size: clamp(3.3rem, 7.4vw, 7.4rem); line-height: .85; letter-spacing: -.075em; max-width: 780px; }
.hero-copy h1 .line { display: block; }
.hero-copy .lead { color: #aeb7c5; font-size: clamp(1.02rem, 1.7vw, 1.28rem); max-width: 650px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: var(--muted); font-size: .82rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px var(--signal); }

.hero-stage { position: relative; min-height: 610px; perspective: 1200px; }
.hero-poster {
  position: absolute; width: min(67%, 390px); right: 15%; top: 1%; z-index: 3;
  border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 50px 100px rgba(0,0,0,.58), 0 0 90px rgba(124,92,255,.13);
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(1.5deg);
  transition: transform .6s var(--ease);
}
.hero-stage:hover .hero-poster { transform: rotateY(-3deg) rotateX(1deg) rotateZ(.5deg) translateY(-5px); }
.hero-poster img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-card {
  position: absolute; z-index: 5; left: 0; bottom: 7%; width: 310px;
  padding: 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(20,24,33,.78); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg);
}
.hero-card .status-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 16px; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; color: var(--signal); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 14px rgba(46,230,166,.8); }
.hero-card h3 { margin: 0 0 5px; font-size: 1.2rem; }
.hero-card p { margin: 0; color: var(--mist); font-size: .86rem; }
.hero-card .progress { height: 5px; background: rgba(255,255,255,.07); border-radius: 99px; margin: 17px 0 8px; overflow: hidden; }
.hero-card .progress span { display: block; width: 72%; height: 100%; background: linear-gradient(90deg,var(--pulse),var(--signal)); }
.hero-card .meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .74rem; }
.hero-rank {
  position: absolute; z-index: 4; right: -3%; bottom: 13%; width: 210px;
  padding: 16px; border-radius: 18px; background: rgba(10,13,18,.82); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-sm);
}
.rank-top { display: flex; align-items: center; gap: 10px; }
.rank-emblem { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(124,92,255,.4); transform: rotate(45deg); background: rgba(124,92,255,.14); }
.rank-emblem span { transform: rotate(-45deg); font-weight: 900; color: var(--pulse-2); }
.rank-label { color: var(--mist); font-size: .73rem; }
.rank-value { font-size: 1.1rem; font-weight: 850; }
.hero-orbit { position: absolute; inset: 5% 0 0 10%; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); animation: orbit 22s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--pulse); box-shadow: 0 0 20px var(--pulse); }
.hero-orbit::before { top: 80px; left: 54px; }
.hero-orbit::after { right: 20px; bottom: 128px; background: var(--signal); box-shadow: 0 0 20px var(--signal); }
@keyframes orbit { to { transform: rotate(360deg); } }

/* Trust strip */
.trust-strip { border-block: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.018); }
.trust-inner { min-height: 88px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-item { padding: 12px 24px; display: flex; align-items: center; gap: 12px; color: #cad1dc; font-size: .86rem; font-weight: 650; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.07); }
.trust-item svg { width: 21px; color: var(--signal); flex: 0 0 auto; }

/* Game cards */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.game-card {
  position: relative; min-width: 0; border-radius: 20px; overflow: hidden;
  background: var(--carbon); border: 1px solid rgba(255,255,255,.08);
  transition: transform .32s var(--ease), border-color .25s ease, box-shadow .3s ease;
}
.game-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.18); box-shadow: 0 24px 60px rgba(0,0,0,.34); }
.game-poster { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #10131a; }
.game-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.game-card:hover .game-poster img { transform: scale(1.035); }
.game-poster::after { content: ""; position: absolute; inset: auto 0 0; height: 44%; background: linear-gradient(transparent, rgba(9,11,15,.92)); }
.game-badges { position: absolute; z-index: 2; left: 12px; top: 12px; display: flex; flex-wrap: wrap; gap: 7px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; min-height: 25px; padding: 0 9px;
  border-radius: 99px; background: rgba(8,10,14,.74); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase;
}
.badge-signal { color: var(--signal); }
.badge-pulse { color: #b3a5ff; }
.badge-alert { color: #ff91a0; }
.game-card-body { padding: 17px 17px 18px; }
.game-card h3 { margin: 0; font-size: 1.08rem; letter-spacing: -.02em; }
.game-genre { color: var(--mist); font-size: .78rem; margin: 4px 0 14px; }
.game-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.game-price { font-weight: 850; }
.game-price.old { color: var(--mist); text-decoration: line-through; font-size: .78rem; font-weight: 600; }
.price-stack { display: flex; flex-direction: column; }
.discount { color: var(--signal); font-size: .68rem; font-weight: 850; }
.wishlist-btn {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.03); cursor: pointer;
}
.wishlist-btn.active { color: var(--alert); border-color: rgba(255,93,115,.28); background: rgba(255,93,115,.08); }

/* Platform feature */
.platform-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 55px; align-items: center; }
.feature-list { display: grid; gap: 8px; margin-top: 28px; }
.feature-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px; border-radius: 14px; transition: background .2s ease; }
.feature-item:hover { background: rgba(255,255,255,.035); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(124,92,255,.1); color: var(--pulse-2); }
.feature-icon svg { width: 20px; }
.feature-item h3 { margin: 1px 0 4px; font-size: .98rem; }
.feature-item p { margin: 0; color: var(--mist); font-size: .85rem; }

.launcher-window { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: #11151d; box-shadow: var(--shadow-lg); }
.window-bar { height: 44px; display: flex; align-items: center; gap: 7px; padding: 0 15px; background: #181d27; border-bottom: 1px solid rgba(255,255,255,.07); }
.window-dot { width: 9px; height: 9px; border-radius: 50%; background: #37404e; }
.window-title { margin-left: 8px; color: #8792a2; font-size: .7rem; letter-spacing: .08em; }
.launcher-ui { display: grid; grid-template-columns: 150px 1fr; min-height: 410px; }
.launcher-sidebar { padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.07); background: #0f131a; }
.launcher-logo { display: flex; align-items: center; gap: 8px; margin: 0 5px 24px; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.launcher-logo img { width: 25px; }
.sidebar-entry { display: flex; align-items: center; gap: 9px; padding: 9px; color: #7e8998; font-size: .72rem; border-radius: 8px; }
.sidebar-entry.active { background: rgba(124,92,255,.12); color: #f2f0ff; }
.sidebar-entry svg { width: 14px; }
.launcher-content { padding: 20px; min-width: 0; background: radial-gradient(circle at 80% 5%,rgba(124,92,255,.13),transparent 45%),#12161e; }
.launcher-banner { position: relative; height: 190px; border-radius: 14px; overflow: hidden; background: #181829; }
.launcher-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: brightness(.7); }
.launcher-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,10,14,.92),rgba(8,10,14,.1)); }
.launcher-banner-copy { position: absolute; z-index: 2; left: 20px; bottom: 20px; }
.launcher-banner-copy h4 { margin: 0 0 5px; font-size: 1.35rem; }
.launcher-banner-copy p { margin: 0 0 12px; color: #c2c8d1; font-size: .72rem; }
.mini-btn { display: inline-flex; padding: 7px 13px; border-radius: 8px; background: linear-gradient(90deg,var(--pulse),var(--signal)); color: #080b0e; font-size: .68rem; font-weight: 900; }
.launcher-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.launcher-small-card { min-width: 0; padding: 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 11px; background: rgba(255,255,255,.025); }
.launcher-small-card .thumb { height: 70px; border-radius: 7px; overflow: hidden; margin-bottom: 8px; }
.launcher-small-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.launcher-small-card strong { display: block; font-size: .65rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.launcher-small-card span { color: #738091; font-size: .58rem; }

/* Arena */
.arena-section { overflow: hidden; background: linear-gradient(180deg,rgba(124,92,255,.06),transparent 70%); }
.arena-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.arena-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 28px 0; }
.metric { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.025); }
.metric strong { display: block; font-size: 1.35rem; }
.metric span { color: var(--mist); font-size: .72rem; }
.leaderboard { border: 1px solid rgba(255,255,255,.1); border-radius: 21px; overflow: hidden; background: rgba(20,24,33,.78); box-shadow: var(--shadow-lg); }
.leaderboard-head { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
.leaderboard-head h3 { margin: 0; font-size: .95rem; }
.season-chip { padding: 6px 9px; border-radius: 8px; background: rgba(124,92,255,.11); color: #baadff; font-size: .68rem; font-weight: 750; }
.rank-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.055); }
.rank-row:last-child { border-bottom: 0; }
.rank-number { color: var(--muted); font-size: .82rem; font-weight: 800; }
.rank-number.top { color: var(--signal); }
.player { display: flex; align-items: center; gap: 10px; min-width: 0; }
.player-avatar { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg,#342b59,#182a28); font-weight: 850; font-size: .72rem; }
.player-name { min-width: 0; }
.player-name strong { display: block; font-size: .84rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-name span { color: var(--muted); font-size: .66rem; }
.rr { text-align: right; }
.rr strong { display: block; font-size: .85rem; }
.rr span { color: var(--signal); font-size: .65rem; }

/* News */
.news-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.news-main, .news-card { border: 1px solid rgba(255,255,255,.08); border-radius: 21px; overflow: hidden; background: var(--carbon); }
.news-main { position: relative; min-height: 420px; display: flex; align-items: end; }
.news-main-bg { position: absolute; inset: 0; }
.news-main-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.56) saturate(.8); }
.news-main-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,#0c0f15 4%,rgba(12,15,21,.12) 75%); }
.news-main-copy { position: relative; z-index: 2; padding: 30px; max-width: 700px; }
.news-main h3 { font-size: clamp(1.6rem,3vw,2.55rem); line-height: 1.05; margin: 8px 0 12px; letter-spacing: -.035em; }
.news-main p { color: #bac2cf; margin: 0 0 18px; }
.news-side { display: grid; gap: 18px; }
.news-card { padding: 21px; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.news-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.news-card h3 { margin: 20px 0 12px; font-size: 1.15rem; line-height: 1.2; }
.news-card p { margin: 0; color: var(--mist); font-size: .83rem; }

/* CTA */
.cta-shell {
  position: relative; overflow: hidden; padding: 58px; border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(125deg,rgba(124,92,255,.19),rgba(20,24,33,.9) 52%,rgba(46,230,166,.09));
}
.cta-shell::before { content: "A"; position: absolute; right: 4%; top: -70%; font-size: 34rem; line-height: 1; font-weight: 950; color: rgba(255,255,255,.025); transform: rotate(-8deg); }
.cta-content { position: relative; z-index: 1; max-width: 720px; }
.cta-content h2 { margin: 0 0 15px; font-size: clamp(2.2rem,5vw,4.6rem); line-height: .95; letter-spacing: -.055em; }
.cta-content p { color: #b9c1ce; font-size: 1.02rem; margin: 0 0 26px; }
.waitlist-form { display: flex; gap: 9px; max-width: 580px; }
.waitlist-form input { flex: 1; min-width: 0; }

/* Forms */
.field { display: grid; gap: 7px; }
.field + .field { margin-top: 14px; }
.field label { color: #cfd5df; font-size: .8rem; font-weight: 700; }
.input, .select, .textarea {
  width: 100%; min-height: 46px; padding: 0 14px; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.11); background: rgba(5,7,10,.45); color: #f4f6f8;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.textarea { min-height: 130px; padding-block: 12px; resize: vertical; }
.input:hover, .select:hover, .textarea:hover { border-color: rgba(255,255,255,.2); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--pulse-2); box-shadow: 0 0 0 3px rgba(124,92,255,.13); background: rgba(5,7,10,.68); }
.input::placeholder, .textarea::placeholder { color: #5d6878; }
.form-note { color: var(--muted); font-size: .72rem; }
.form-error { color: #ff8b9b; font-size: .75rem; min-height: 1.1em; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0; color: var(--mist); font-size: .77rem; }
.checkbox-row input { margin-top: 3px; accent-color: var(--pulse); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 54px 0 30px; background: #090b0f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 50px; }
.footer-brand p { color: var(--mist); max-width: 330px; font-size: .84rem; }
.footer-title { color: #e6e9ee; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; margin: 4px 0 15px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #8792a2; font-size: .82rem; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; border-top: 1px solid rgba(255,255,255,.065); margin-top: 42px; padding-top: 23px; color: #667181; font-size: .72rem; }
.status-link { display: inline-flex; align-items: center; gap: 7px; }
.status-link::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }

/* Page headers */
.page-hero { padding: 75px 0 48px; position: relative; }
.page-title { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.page-title p { margin: 18px 0 0; color: var(--mist); max-width: 650px; font-size: 1rem; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Store */
.store-toolbar {
  position: sticky; top: calc(var(--header-height) + 8px); z-index: 30;
  display: flex; gap: 12px; align-items: center; padding: 12px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  background: rgba(15,18,25,.88); backdrop-filter: blur(16px); margin-bottom: 26px;
}
.search-box { position: relative; flex: 1; min-width: 180px; }
.search-box svg { position: absolute; left: 13px; top: 50%; width: 18px; transform: translateY(-50%); color: var(--muted); }
.search-box .input { padding-left: 42px; }
.filter-row { display: flex; gap: 8px; }
.filter-btn { min-height: 42px; padding: 0 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.035); color: #a8b1be; font-size: .78rem; font-weight: 750; cursor: pointer; }
.filter-btn.active { color: #fff; border-color: rgba(124,92,255,.38); background: rgba(124,92,255,.13); }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.store-grid .game-card .game-poster { aspect-ratio: 16/10; }
.store-grid .game-card-body { padding: 19px; }
.no-results { grid-column: 1/-1; padding: 60px 20px; text-align: center; border: 1px dashed rgba(255,255,255,.12); border-radius: 18px; color: var(--mist); }

/* Game page */
.game-hero { position: relative; padding: 70px 0 60px; overflow: hidden; }
.game-hero-bg { position: absolute; inset: 0; z-index: -2; }
.game-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(36px) brightness(.25) saturate(.85); transform: scale(1.18); }
.game-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,var(--void) 0%,rgba(11,13,18,.45) 65%,var(--void) 100%); }
.game-hero-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: end; }
.game-cover { border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg); }
.game-copy h1 { margin: 10px 0 14px; font-size: clamp(3rem,6vw,6rem); line-height: .88; letter-spacing: -.065em; }
.game-copy .game-lead { color: #b9c1cd; font-size: 1.1rem; max-width: 700px; }
.game-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.tag { padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: rgba(255,255,255,.035); color: #aab3c1; font-size: .72rem; }
.buy-panel { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(15,18,25,.74); max-width: 720px; }
.buy-price strong { display: block; font-size: 1.35rem; }
.buy-price span { color: var(--muted); font-size: .72rem; }
.game-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 46px; }
.prose h2 { margin: 0 0 15px; font-size: 1.8rem; letter-spacing: -.035em; }
.prose h2:not(:first-child) { margin-top: 46px; }
.prose p { color: #aeb7c5; }
.feature-bullets { display: grid; gap: 10px; padding: 0; list-style: none; }
.feature-bullets li { display: grid; grid-template-columns: 23px 1fr; gap: 10px; color: #bac2ce; }
.feature-bullets li::before { content: "✓"; color: var(--signal); font-weight: 900; }
.info-panel { border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: var(--carbon); padding: 19px; position: sticky; top: calc(var(--header-height) + 20px); }
.info-list { display: grid; gap: 14px; }
.info-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 12px; }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row span { color: var(--muted); font-size: .75rem; }
.info-row strong { font-size: .78rem; text-align: right; }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.system-card { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.025); padding: 17px; }
.system-card h3 { margin: 0 0 14px; font-size: .9rem; }
.system-card dl { margin: 0; display: grid; gap: 9px; }
.system-card dt { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }
.system-card dd { margin: 1px 0 0; color: #cbd2dc; font-size: .78rem; }

/* Library */
.library-shell { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - var(--header-height)); }
.library-sidebar { border-right: 1px solid rgba(255,255,255,.08); padding: 30px 20px; background: #0d1016; }
.library-sidebar h2 { margin: 0 0 18px; font-size: .82rem; color: var(--mist); text-transform: uppercase; letter-spacing: .09em; }
.library-game-link { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: 10px; color: #aab3c0; font-size: .8rem; cursor: pointer; }
.library-game-link.active, .library-game-link:hover { background: rgba(124,92,255,.1); color: #fff; }
.library-game-thumb { width: 34px; height: 42px; border-radius: 5px; overflow: hidden; flex: 0 0 auto; }
.library-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.library-main { padding: 38px; min-width: 0; }
.library-empty { max-width: 620px; margin: 80px auto; text-align: center; padding: 50px; border: 1px dashed rgba(255,255,255,.13); border-radius: 22px; }
.library-empty .empty-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 20px; background: rgba(124,92,255,.1); color: var(--pulse-2); }
.library-empty h2 { margin: 0 0 8px; }
.library-empty p { color: var(--mist); }
.library-detail { position: relative; border-radius: 22px; overflow: hidden; min-height: 510px; border: 1px solid rgba(255,255,255,.09); }
.library-detail-bg { position: absolute; inset: 0; }
.library-detail-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.28); }
.library-detail-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,#10141c 10%,transparent 70%); }
.library-detail-copy { position: absolute; inset: auto 0 0; padding: 36px; z-index: 2; }
.library-detail-copy h1 { margin: 0 0 7px; font-size: 3rem; letter-spacing: -.05em; }
.library-stats { display: flex; flex-wrap: wrap; gap: 22px; margin: 20px 0; }
.library-stat span { display: block; color: var(--muted); font-size: .7rem; }
.library-stat strong { font-size: .88rem; }

/* Arena page */
.arena-dashboard { display: grid; grid-template-columns: 1fr 350px; gap: 22px; }
.queue-card { min-height: 430px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 28px; background: radial-gradient(circle at 70% 20%,rgba(124,92,255,.18),transparent 45%),var(--carbon); }
.queue-card h2 { margin: 0; font-size: 2rem; }
.mode-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 24px 0; }
.mode-card { padding: 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); cursor: pointer; }
.mode-card.active { border-color: rgba(124,92,255,.45); background: rgba(124,92,255,.1); }
.mode-card strong { display: block; font-size: .85rem; }
.mode-card span { color: var(--muted); font-size: .68rem; }
.party-slot { display: flex; gap: 10px; align-items: center; padding: 10px; border: 1px dashed rgba(255,255,255,.12); border-radius: 12px; color: var(--muted); font-size: .76rem; margin-bottom: 8px; }
.party-slot.filled { border-style: solid; color: #d8dde5; background: rgba(255,255,255,.025); }
.arena-side-stack { display: grid; gap: 18px; }
.panel { padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: var(--carbon); }
.panel h3 { margin: 0 0 14px; font-size: .92rem; }
.match-list { display: grid; gap: 9px; }
.match-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 11px; background: rgba(255,255,255,.025); border-radius: 10px; }
.match-row strong { font-size: .76rem; }
.match-row span { color: var(--muted); font-size: .66rem; }
.match-result { font-weight: 850; color: var(--signal); font-size: .72rem; }
.match-result.loss { color: var(--alert); }

/* Community */
.community-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.post-list { display: grid; gap: 12px; }
.post-card { display: grid; grid-template-columns: 58px 1fr auto; gap: 15px; align-items: center; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: var(--carbon); transition: border-color .2s ease, transform .2s ease; }
.post-card:hover { border-color: rgba(255,255,255,.16); transform: translateX(3px); }
.post-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(124,92,255,.1); color: var(--pulse-2); }
.post-icon svg { width: 23px; }
.post-card h3 { margin: 0 0 3px; font-size: .93rem; }
.post-card p { margin: 0; color: var(--muted); font-size: .74rem; }
.post-stats { display: flex; gap: 15px; color: var(--muted); font-size: .68rem; }
.category-list { display: grid; gap: 8px; }
.category-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.category-row:last-child { border-bottom: 0; }
.category-row strong { font-size: .78rem; }
.category-row span { color: var(--muted); font-size: .68rem; }

/* Support */
.support-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; }
.support-cards { display: grid; gap: 11px; }
.support-card { padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: var(--carbon); }
.support-card h3 { margin: 0 0 5px; font-size: .93rem; }
.support-card p { margin: 0; color: var(--mist); font-size: .78rem; }
.faq-list { border-top: 1px solid rgba(255,255,255,.08); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px 0; border: 0; background: transparent; text-align: left; font-weight: 750; cursor: pointer; }
.faq-question svg { width: 18px; transition: transform .25s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-answer p { margin: 0 0 18px; color: var(--mist); }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 50px; }
.legal-nav { position: sticky; top: calc(var(--header-height) + 24px); align-self: start; display: grid; gap: 7px; }
.legal-nav a { padding: 8px 10px; border-left: 2px solid rgba(255,255,255,.1); color: var(--muted); font-size: .78rem; }
.legal-nav a:hover { color: #fff; border-color: var(--pulse); }
.legal-prose { max-width: 820px; }
.legal-prose h1 { font-size: clamp(2.7rem,5vw,5rem); letter-spacing: -.055em; line-height: .95; margin: 0 0 20px; }
.legal-prose h2 { margin: 42px 0 12px; font-size: 1.45rem; }
.legal-prose p, .legal-prose li { color: #aab4c2; }
.legal-prose code { padding: 2px 5px; border-radius: 5px; background: rgba(255,255,255,.06); }

/* Modals */
.modal-backdrop { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; background: rgba(4,5,8,.76); backdrop-filter: blur(9px); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(100%, 470px); max-height: min(760px, calc(100vh - 40px)); overflow-y: auto;
  border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #141821;
  box-shadow: var(--shadow-lg); transform: translateY(12px) scale(.98); transition: transform .25s var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal.wide { width: min(100%, 650px); }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; border-bottom: 1px solid rgba(255,255,255,.08); }
.modal-header h2 { margin: 0; font-size: 1.1rem; }
.modal-close { width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 10px; background: rgba(255,255,255,.05); cursor: pointer; }
.modal-close svg { width: 17px; }
.modal-body { padding: 22px; }
.auth-brand { display: flex; justify-content: center; margin: 2px 0 20px; }
.auth-brand img { width: 54px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 11px; background: rgba(0,0,0,.2); margin-bottom: 20px; }
.auth-tab { min-height: 39px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-weight: 750; cursor: pointer; }
.auth-tab.active { background: rgba(255,255,255,.08); color: #fff; }
.demo-banner { padding: 11px 12px; border: 1px solid rgba(255,200,87,.2); border-radius: 10px; background: rgba(255,200,87,.06); color: #d7bf83; font-size: .72rem; margin-bottom: 16px; }
.account-menu { position: fixed; z-index: 150; top: 68px; right: max(20px, calc((100vw - var(--container))/2)); width: 250px; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: #161a23; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-5px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.account-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.account-menu-head { padding: 10px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 6px; }
.account-menu-head strong { display: block; font-size: .86rem; }
.account-menu-head span { color: var(--muted); font-size: .69rem; }
.account-menu a, .account-menu button { width: 100%; display: flex; align-items: center; gap: 9px; padding: 10px; border: 0; border-radius: 9px; background: transparent; color: #bac2ce; font-size: .78rem; text-align: left; cursor: pointer; }
.account-menu a:hover, .account-menu button:hover { background: rgba(255,255,255,.055); color: #fff; }
.account-menu svg { width: 16px; }

/* Toast */
.toast-region { position: fixed; z-index: 400; right: 18px; bottom: 18px; display: grid; gap: 9px; width: min(360px, calc(100vw - 36px)); pointer-events: none; }
.toast { display: grid; grid-template-columns: 35px 1fr; gap: 11px; align-items: start; padding: 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(20,24,33,.96); box-shadow: var(--shadow-lg); animation: toastIn .3s var(--ease); }
.toast-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; background: rgba(46,230,166,.1); color: var(--signal); }
.toast.error .toast-icon { background: rgba(255,93,115,.1); color: var(--alert); }
.toast strong { display: block; font-size: .8rem; }
.toast p { margin: 2px 0 0; color: var(--mist); font-size: .72rem; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

/* Error page */
.error-page { min-height: calc(100vh - var(--header-height)); display: grid; place-items: center; padding: 40px; text-align: center; }
.error-code { font-size: clamp(7rem,22vw,16rem); line-height: .8; font-weight: 950; letter-spacing: -.09em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.2); }
.error-page h1 { font-size: 2rem; margin: 22px 0 8px; }
.error-page p { color: var(--mist); max-width: 520px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-nav { display: none; }
  .menu-btn { display: inline-grid; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 28px; }
  .hero-stage { min-height: 540px; }
  .hero-card { width: 270px; }
  .hero-rank { right: 0; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: repeat(2,1fr); }
  .platform-grid, .arena-grid { gap: 35px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { gap: 12px; }
  .header-actions .desktop-only { display: none; }
  .brand-name { font-size: .93rem; }
  .hero { padding-top: 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-stage { width: min(100%,600px); margin-inline: auto; min-height: 570px; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
  .section-heading, .page-title { display: block; }
  .section-heading p { margin-top: 15px; }
  .page-actions { margin-top: 22px; }
  .platform-grid, .arena-grid, .game-content-grid, .community-grid, .support-grid { grid-template-columns: 1fr; }
  .platform-grid .launcher-window { order: -1; }
  .news-grid { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr 1fr; }
  .game-hero-grid { grid-template-columns: 230px 1fr; gap: 28px; }
  .game-copy h1 { font-size: 3.5rem; }
  .info-panel { position: static; }
  .library-shell { grid-template-columns: 1fr; }
  .library-sidebar { display: none; }
  .library-main { padding: 26px 14px; }
  .arena-dashboard { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 590px) {
  .section { padding: 60px 0; }
  .hero-copy h1 { font-size: clamp(3rem,17vw,5.2rem); }
  .hero-stage { min-height: 500px; }
  .hero-poster { width: 72%; right: 7%; }
  .hero-card { width: 230px; left: 0; bottom: 4%; }
  .hero-rank { width: 176px; bottom: 12%; right: -2%; }
  .hero-orbit { width: 400px; height: 400px; }
  .trust-item { padding: 12px; font-size: .73rem; }
  .game-grid, .store-grid { grid-template-columns: 1fr; }
  .game-grid .game-card:not(:first-child) .game-poster { aspect-ratio: 16/10; }
  .launcher-ui { grid-template-columns: 1fr; }
  .launcher-sidebar { display: none; }
  .launcher-cards { grid-template-columns: repeat(2,1fr); }
  .launcher-small-card:last-child { display: none; }
  .arena-metrics { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr; }
  .cta-shell { padding: 34px 22px; }
  .waitlist-form { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; }
  .footer-bottom .status-link { margin-top: 12px; }
  .store-toolbar { position: static; display: grid; }
  .filter-row { overflow-x: auto; padding-bottom: 3px; }
  .filter-btn { flex: 0 0 auto; }
  .game-hero { padding-top: 35px; }
  .game-hero-grid { grid-template-columns: 1fr; }
  .game-cover { width: min(60%,230px); }
  .game-copy h1 { font-size: 3.2rem; }
  .buy-panel { display: grid; }
  .system-grid { grid-template-columns: 1fr; }
  .library-detail { min-height: 570px; }
  .library-detail-copy { padding: 24px; }
  .library-detail-copy h1 { font-size: 2.3rem; }
  .mode-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 48px 1fr; }
  .post-stats { grid-column: 2; }
}

/* Navigation hotfix 0.2 */
.site-header,
.site-header * { pointer-events: auto; }
.nav-link,
.sidebar-entry,
.launcher-banner,
.launcher-small-card { touch-action: manipulation; }
.sidebar-entry { text-decoration: none; transition: color .18s ease, background .18s ease, transform .18s ease; }
.sidebar-entry:hover,
.sidebar-entry:focus-visible { color: #fff; background: rgba(255,255,255,.055); transform: translateX(2px); }
.launcher-banner { display: block; color: inherit; transition: transform .2s var(--ease), box-shadow .2s ease; }
.launcher-banner:hover,
.launcher-banner:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.28); }
.launcher-small-card { display: block; color: inherit; transition: transform .2s var(--ease), border-color .2s ease, background .2s ease; }
.launcher-small-card:hover,
.launcher-small-card:focus-visible { transform: translateY(-2px); border-color: rgba(124,92,255,.35); background: rgba(124,92,255,.07); }

.party-slot--button {
  width: 100%; font: inherit; text-align: left; cursor: pointer; background: rgba(255,255,255,.015);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.party-slot--button:hover,
.party-slot--button:focus-visible { color: #fff; border-color: rgba(124,92,255,.55); background: rgba(124,92,255,.07); }

.post-card--button {
  width: 100%; color: inherit; font: inherit; text-align: left; cursor: pointer;
}
.support-card--button {
  width: 100%; color: inherit; font: inherit; text-align: left; cursor: pointer;
  transition: border-color .2s ease, transform .2s var(--ease), background .2s ease;
}
.support-card--button:hover,
.support-card--button:focus-visible { border-color: rgba(124,92,255,.42); transform: translateY(-2px); background: rgba(124,92,255,.055); }
#supportForm { scroll-margin-top: calc(var(--header-height) + 22px); }

.launcher-page-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.launcher-status-panel { display: grid; align-content: center; min-height: 170px; }
.build-status-row { display: grid; grid-template-columns: 16px 1fr; gap: 14px; align-items: start; }
.build-status-row strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.build-status-row span:not(.status-pulse) { display: block; color: var(--mist); line-height: 1.6; font-size: .88rem; }
.status-pulse {
  width: 12px; height: 12px; margin-top: 5px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 0 0 rgba(46,230,166,.45); animation: status-pulse 1.8s infinite;
}
@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,230,166,.45); }
  70% { box-shadow: 0 0 0 10px rgba(46,230,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,166,0); }
}
.launcher-roadmap { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.launcher-roadmap .panel { min-height: 210px; }
.launcher-roadmap h3 { margin: 22px 0 8px; }
.roadmap-number { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(124,92,255,.12); color: #c7bcff; font-weight: 900; }
.download-state {
  margin-top: 18px; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.025);
}
.download-state strong { display: block; margin-bottom: 4px; }
.download-state span { display: block; color: var(--mist); font-size: .82rem; }

@media (max-width: 980px) {
  .launcher-page-grid { grid-template-columns: 1fr; }
  .launcher-roadmap { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .launcher-roadmap { grid-template-columns: 1fr; }
  .download-state { align-items: stretch; flex-direction: column; }
}
