:root {
  --bg: #0b0711;
  --bg-soft: #120b1b;
  --surface: rgba(24, 14, 34, .78);
  --surface-strong: #171020;
  --surface-light: #21142d;
  --text: #fff8fb;
  --muted: #a99eb0;
  --line: rgba(255, 255, 255, .09);
  --pink: #ff2e68;
  --pink-2: #ff6a92;
  --rose: #ff436f;
  --purple: #9f55ff;
  --yellow: #ffc45b;
  --green: #62e8a3;
  --shadow: 0 30px 80px rgba(0, 0, 0, .38);
  --shell: min(1180px, calc(100% - 42px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 46, 104, .10), transparent 35%),
    linear-gradient(180deg, #0a0610 0%, #0c0712 52%, #09060e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.ambient { position: fixed; z-index: -2; pointer-events: none; border-radius: 50%; filter: blur(90px); }
.ambient-one { width: 420px; height: 420px; left: -190px; top: 360px; background: rgba(159,85,255,.13); }
.ambient-two { width: 470px; height: 470px; right: -230px; top: 90px; background: rgba(255,46,104,.16); }
.ambient-three { width: 380px; height: 380px; right: 20%; top: 1650px; background: rgba(255,106,146,.07); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .games-copy h2, .faq-intro h2, .premium-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -2.7px;
}
.section-heading p, .games-copy > p, .faq-intro > p, .premium-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 7px rgba(255,46,104,.12), 0 0 24px rgba(255,46,104,.75); animation: pulse 2.2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(255,46,104,0), 0 0 28px rgba(255,46,104,.85); } }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(9, 6, 14, .78); border-color: var(--line); backdrop-filter: blur(20px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; padding: 3px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, rgba(255,46,104,.27), rgba(159,85,255,.18)); border: 1px solid rgba(255,255,255,.09); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.brand-mark img { width: 100%; height: 100%; border-radius: 11px; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 18px; letter-spacing: -.5px; }
.brand-copy small { margin-top: 4px; color: #887d91; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.1px; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { position: relative; padding: 8px 0; color: #b8afbe; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--pink), var(--purple)); transform: translateX(-50%); transition: width .22s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.mobile-menu { display: none; }
.menu-toggle { width: 44px; height: 44px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.035); cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: #fff; }

.button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--pink), #ff4c7d); box-shadow: 0 13px 35px rgba(255,46,104,.28), inset 0 1px rgba(255,255,255,.24); }
.button-primary:hover { box-shadow: 0 17px 42px rgba(255,46,104,.38), inset 0 1px rgba(255,255,255,.24); }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.button-secondary:hover, .button-ghost:hover { border-color: rgba(255,106,146,.45); background: rgba(255,46,104,.07); }
.button-ghost { color: #d8d1dc; border-color: var(--line); background: rgba(255,255,255,.025); }
.button-large { min-height: 52px; padding-inline: 23px; border-radius: 16px; font-size: 13px; }
.button-disabled { width: 100%; color: #8f8597; background: #ece7ef; border-color: #e2dce6; cursor: not-allowed; box-shadow: none; }
.button-disabled:hover { transform: none; }
.button-dark { color: #fff; background: #120916; box-shadow: 0 14px 34px rgba(30,5,17,.2); }
.button-light { color: #3e1525; background: rgba(255,255,255,.76); border-color: rgba(255,255,255,.75); backdrop-filter: blur(12px); }

.hero { min-height: 880px; padding-top: 158px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 78px 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,46,104,.33), transparent); }
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 70px; align-items: center; }
.hero-copy h1 { margin: 20px 0 24px; max-width: 700px; font-size: clamp(50px, 6.4vw, 82px); line-height: .94; letter-spacing: -4.4px; }
.hero-copy h1 span { color: transparent; background: linear-gradient(90deg, #ff3c71 0%, #ff75a0 43%, #b66cff 100%); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin: 0; color: #b7acbc; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 31px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 29px; color: #8f8498; font-size: 12px; }
.hero-notes span { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--pink-2); background: rgba(255,46,104,.1); font-size: 10px; font-style: normal; font-weight: 900; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.hero-ring { position: absolute; border: 1px solid rgba(255,74,127,.16); border-radius: 50%; }
.ring-one { width: 520px; height: 520px; animation: rotate 26s linear infinite; }
.ring-one::before, .ring-one::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 3px; background: var(--pink); box-shadow: 0 0 22px rgba(255,46,104,.9); }
.ring-one::before { left: 50px; top: 92px; transform: rotate(22deg); }
.ring-one::after { right: 30px; bottom: 130px; }
.ring-two { width: 620px; height: 620px; border-style: dashed; border-color: rgba(159,85,255,.12); animation: rotateReverse 38s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotateReverse { to { transform: rotate(-360deg); } }
.pixel-star { position: absolute; color: var(--pink-2); text-shadow: 0 0 20px rgba(255,46,104,.6); animation: float 4s ease-in-out infinite; }
.star-one { left: 3%; top: 13%; font-size: 27px; }
.star-two { right: 4%; top: 20%; color: #b86dff; font-size: 34px; animation-delay: -.8s; }
.star-three { left: 7%; bottom: 12%; font-size: 16px; animation-delay: -1.4s; }
@keyframes float { 50% { transform: translateY(-12px) rotate(9deg); } }
.game-console { position: relative; z-index: 2; width: min(100%, 535px); min-height: 520px; border-radius: 31px; border: 1px solid rgba(255,255,255,.11); background: linear-gradient(160deg, rgba(32,18,42,.92), rgba(12,7,18,.88)); box-shadow: 0 35px 95px rgba(0,0,0,.44), 0 0 70px rgba(255,46,104,.10), inset 0 1px rgba(255,255,255,.10); backdrop-filter: blur(20px); overflow: hidden; }
.game-console::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 25%); }
.console-top { height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.live-badge { display: inline-flex; align-items: center; gap: 8px; color: #d8cfdd; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.live-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 14px rgba(255,46,104,.8); }
.console-dots { display: flex; gap: 5px; }
.console-dots i, .tracker-head i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.16); }
.console-stage { position: relative; min-height: 462px; padding: 22px; }
.logo-platform { position: relative; width: 330px; height: 330px; margin: 5px auto 0; display: grid; place-items: center; }
.logo-aura { position: absolute; inset: 37px; border-radius: 50%; background: rgba(255,46,104,.32); filter: blur(42px); }
.logo-platform::after { content: ""; position: absolute; bottom: 10px; width: 82%; height: 42px; border-radius: 50%; background: linear-gradient(90deg, transparent, rgba(255,46,104,.58), transparent); filter: blur(13px); }
.logo-platform img { position: relative; z-index: 2; width: 310px; height: 310px; object-fit: cover; border-radius: 38%; box-shadow: 0 25px 65px rgba(255,20,86,.25); transform: rotate(-2deg); }
.xp-card { position: absolute; left: 18px; bottom: 26px; width: 320px; min-height: 74px; padding: 12px 13px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(10,6,15,.82); box-shadow: 0 16px 40px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.avatar-mini { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); font-weight: 900; }
.xp-card div:nth-child(2) { display: grid; }
.xp-card strong { font-size: 11px; }
.xp-card span { margin-top: 3px; color: #8d8295; font-size: 9px; }
.xp-card small { color: var(--pink-2); font-size: 8px; }
.quest-card { position: absolute; right: 16px; top: 105px; width: 180px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(24,13,33,.84); box-shadow: 0 16px 40px rgba(0,0,0,.24); transform: rotate(3deg); backdrop-filter: blur(14px); }
.quest-card span { color: #887b90; font-size: 8px; text-transform: uppercase; letter-spacing: .7px; }
.quest-card strong { display: block; margin-top: 6px; font-size: 11px; }
.progress { height: 5px; margin-top: 11px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.progress i { display: block; width: 66%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--purple)); }
.floating-chip { position: absolute; z-index: 4; padding: 10px 13px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; color: #bcb1c2; background: rgba(17,10,24,.82); box-shadow: 0 15px 34px rgba(0,0,0,.24); backdrop-filter: blur(14px); font-size: 10px; font-weight: 700; }
.floating-chip span { min-width: 29px; height: 29px; padding: 0 6px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: linear-gradient(135deg, rgba(255,46,104,.95), rgba(159,85,255,.9)); font-weight: 900; }
.chip-left { left: -8px; top: 145px; }
.chip-right { right: -4px; bottom: 58px; }

.proof-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); overflow: hidden; }
.proof-track { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 23px; white-space: nowrap; color: #8f8497; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.proof-track i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 2px; background: var(--pink); transform: rotate(45deg); box-shadow: 0 0 12px rgba(255,46,104,.65); }

.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 355px; padding: 30px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, rgba(28,17,38,.88), rgba(16,10,23,.72)); box-shadow: 0 20px 58px rgba(0,0,0,.16); overflow: hidden; }
.feature-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 100% 0, rgba(255,46,104,.13), transparent 33%); }
.feature-card:hover { border-color: rgba(255,92,140,.24); }
.feature-wide { grid-column: 1 / -1; min-height: 455px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: center; }
.feature-copy { position: relative; z-index: 1; }
.card-kicker { display: inline-block; margin-bottom: 14px; color: var(--pink-2); font-size: 10px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.feature-card h3 { position: relative; z-index: 1; margin: 0 0 13px; font-size: 28px; line-height: 1.08; letter-spacing: -1.2px; }
.feature-card p { position: relative; z-index: 1; margin: 0; color: #9f94a7; font-size: 14px; line-height: 1.75; }
.mini-list { margin: 22px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.mini-list li { position: relative; padding-left: 24px; color: #c1b6c7; font-size: 13px; }
.mini-list li::before { content: "✦"; position: absolute; left: 0; color: var(--pink); font-size: 11px; }
.arcade-board { position: relative; z-index: 1; padding: 17px; border: 1px solid rgba(255,255,255,.09); border-radius: 22px; background: rgba(9,6,14,.68); box-shadow: inset 0 1px rgba(255,255,255,.05), 0 25px 55px rgba(0,0,0,.18); }
.arcade-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 3px 14px; color: #dcd3e0; font-size: 11px; font-weight: 800; }
.online-dot { color: var(--green); font-size: 9px; }
.game-row { min-height: 78px; padding: 12px; display: grid; grid-template-columns: 47px 1fr auto; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.07); }
.game-row.active { margin-bottom: 7px; border: 1px solid rgba(255,46,104,.2); border-radius: 16px; background: linear-gradient(90deg, rgba(255,46,104,.11), rgba(159,85,255,.06)); }
.game-row > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(135deg, rgba(255,46,104,.95), rgba(159,85,255,.8)); font-style: normal; font-weight: 900; }
.game-row div { display: grid; }
.game-row strong { font-size: 12px; }
.game-row span { color: #786e80; font-size: 9px; margin-top: 3px; }
.game-row b { color: var(--pink-2); font-size: 9px; }
.icon-box { position: relative; z-index: 1; width: 52px; height: 52px; margin-bottom: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; color: #ff7aa0; background: linear-gradient(135deg, rgba(255,46,104,.13), rgba(159,85,255,.08)); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.metric { position: absolute; left: 30px; right: 30px; bottom: 27px; padding-top: 18px; display: flex; align-items: end; gap: 10px; border-top: 1px solid var(--line); }
.metric strong { color: #fff; font-size: 32px; line-height: 1; letter-spacing: -1px; }
.metric span { color: #766d7c; font-size: 10px; }
.chart-bars { position: absolute; left: 30px; right: 30px; bottom: 28px; height: 74px; padding: 0 10px; display: flex; align-items: end; justify-content: space-around; border-bottom: 1px solid rgba(255,255,255,.08); }
.chart-bars i { width: 14%; border-radius: 7px 7px 2px 2px; background: linear-gradient(180deg, var(--pink-2), rgba(159,85,255,.55)); box-shadow: 0 0 20px rgba(255,46,104,.12); }
.chart-bars i:nth-child(1) { height: 34%; }
.chart-bars i:nth-child(2) { height: 53%; }
.chart-bars i:nth-child(3) { height: 44%; }
.chart-bars i:nth-child(4) { height: 78%; }
.chart-bars i:nth-child(5) { height: 94%; }
.feature-dark { background: linear-gradient(145deg, #130c1b, #0d0913); }

.games-section { overflow: hidden; }
.games-section::before { content: ""; position: absolute; inset: 8% 0 0; background: radial-gradient(circle at 75% 45%, rgba(255,46,104,.09), transparent 33%); pointer-events: none; }
.games-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.games-copy h2 { max-width: 600px; }
.game-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.game-tags span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; color: #c3b8c8; background: rgba(255,255,255,.025); font-size: 10px; font-weight: 800; }
.game-tags span:nth-child(3n+1) { border-color: rgba(255,46,104,.18); background: rgba(255,46,104,.055); }
.inline-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 27px; color: var(--pink-2); font-size: 13px; font-weight: 800; }
.tracker-window { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; background: linear-gradient(145deg, rgba(29,17,39,.93), rgba(11,7,16,.93)); box-shadow: 0 35px 90px rgba(0,0,0,.32), 0 0 75px rgba(255,46,104,.08); overflow: hidden; }
.tracker-window::before { content: ""; position: absolute; width: 300px; height: 300px; right: -150px; top: -170px; border-radius: 50%; background: rgba(255,46,104,.22); filter: blur(60px); }
.tracker-head { height: 58px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: #c8bdce; font-size: 11px; font-weight: 800; }
.tracker-head div { display: flex; gap: 5px; }
.tracker-user { padding: 23px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.tracker-avatar { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(145deg, var(--pink), var(--purple)); font-weight: 900; font-size: 18px; box-shadow: 0 12px 30px rgba(255,46,104,.2); }
.tracker-user > div:nth-child(2) { display: grid; }
.tracker-user strong { font-size: 15px; }
.tracker-user span { margin-top: 3px; color: #807487; font-size: 10px; }
.tracker-user em { padding: 6px 8px; border-radius: 8px; color: var(--green); background: rgba(98,232,163,.08); font-size: 8px; font-style: normal; font-weight: 850; letter-spacing: .6px; }
.tracker-list { padding: 8px 22px; }
.tracker-item { min-height: 82px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.065); }
.tracker-item:last-child { border-bottom: 0; }
.game-letter { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: #fff; font-size: 10px; font-weight: 900; }
.game-letter.cs { background: linear-gradient(135deg, #ef8d38, #d94c36); }
.game-letter.wt { background: linear-gradient(135deg, #537cc7, #253d69); }
.game-letter.rb { background: linear-gradient(135deg, #70747e, #24262d); }
.tracker-item > div:nth-child(2) { display: grid; }
.tracker-item strong { font-size: 12px; }
.tracker-item span { margin-top: 3px; color: #7b7083; font-size: 9px; }
.tracker-item > b { color: var(--pink-2); font-size: 10px; }
.tracker-footer { min-height: 66px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #766c7d; font-size: 9px; }
.tracker-footer button { padding: 8px 12px; border: 1px solid rgba(255,46,104,.24); border-radius: 10px; color: var(--pink-2); background: rgba(255,46,104,.055); cursor: pointer; font-size: 9px; font-weight: 800; }

.panel-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.012), transparent); }
.dashboard-shell { border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: #100a17; box-shadow: 0 38px 100px rgba(0,0,0,.32), 0 0 70px rgba(255,46,104,.07); overflow: hidden; }
.dashboard-topbar { height: 70px; padding: 0 20px; display: grid; grid-template-columns: 1fr auto 44px; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.dash-brand { display: flex; align-items: center; gap: 10px; }
.dash-brand img { border-radius: 9px; }
.dash-brand strong { font-size: 13px; }
.dash-server { min-width: 220px; padding: 9px 12px; display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.dash-server span { grid-column: 1 / -1; color: #756b7d; font-size: 7px; text-transform: uppercase; letter-spacing: .8px; }
.dash-server strong { margin-top: 2px; font-size: 9px; }
.dash-server i { font-style: normal; color: #8f8597; }
.dash-user { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); font-size: 10px; font-weight: 900; }
.dashboard-layout { min-height: 620px; display: grid; grid-template-columns: 205px 1fr; }
.dashboard-sidebar { padding: 23px 14px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: rgba(255,255,255,.012); }
.side-title { margin: 0 11px 10px; color: #5f5666; font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: 1px; }
.dashboard-sidebar a { min-height: 42px; padding: 0 11px; display: flex; align-items: center; gap: 10px; border-radius: 11px; color: #817788; font-size: 10px; font-weight: 700; }
.dashboard-sidebar a i { width: 20px; color: #756b7d; font-style: normal; text-align: center; }
.dashboard-sidebar a.active { color: #fff; background: linear-gradient(90deg, rgba(255,46,104,.16), rgba(159,85,255,.06)); box-shadow: inset 3px 0 var(--pink); }
.dashboard-sidebar a.active i { color: var(--pink-2); }
.side-bottom { margin-top: auto; }
.dashboard-content { padding: 30px; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.dash-heading > div { display: grid; }
.dash-heading span { color: #726879; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; }
.dash-heading h3 { margin: 4px 0 0; font-size: 24px; letter-spacing: -.8px; }
.dash-heading button { padding: 10px 14px; border: 0; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--pink), #ff527e); font-size: 9px; font-weight: 850; cursor: pointer; }
.customizer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.settings-card, .profile-preview { min-height: 450px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.018); }
.settings-card { display: grid; align-content: start; gap: 11px; }
.settings-card > label { display: flex; justify-content: space-between; color: #afa4b5; font-size: 9px; font-weight: 700; }
.settings-card > label span { color: var(--pink-2); }
.color-field, .input-field { min-height: 42px; padding: 0 12px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 11px; color: #c8bdcd; background: rgba(255,255,255,.025); font-size: 9px; }
.color-field i { width: 21px; height: 21px; border-radius: 7px; background: var(--pink); box-shadow: 0 0 15px rgba(255,46,104,.35); }
.upload-field { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px dashed rgba(255,255,255,.14); border-radius: 12px; color: #776d7e; font-size: 9px; }
.upload-field b { color: var(--pink-2); font-size: 17px; }
.switch-row { min-height: 58px; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); }
.switch-row > div { display: grid; }
.switch-row strong { font-size: 9px; }
.switch-row span { margin-top: 2px; color: #706676; font-size: 8px; }
.switch { position: relative; width: 34px; height: 19px; border-radius: 999px; background: #33293a; }
.switch b { position: absolute; width: 13px; height: 13px; left: 3px; top: 3px; border-radius: 50%; background: #94899a; }
.switch.active { background: rgba(255,46,104,.3); }
.switch.active b { left: 18px; background: var(--pink-2); box-shadow: 0 0 10px rgba(255,46,104,.5); }
.profile-preview { position: relative; overflow: hidden; background: #120b1a; }
.preview-label { position: absolute; z-index: 3; top: 13px; right: 13px; padding: 6px 8px; border-radius: 8px; color: #fff; background: rgba(7,4,10,.58); backdrop-filter: blur(8px); font-size: 7px; font-weight: 850; text-transform: uppercase; letter-spacing: .6px; }
.profile-banner { height: 123px; margin: -22px -22px 0; background: linear-gradient(135deg, rgba(255,46,104,.95), rgba(159,85,255,.72)), radial-gradient(circle at 70% 30%, #ff91ae, transparent 35%); position: relative; }
.profile-banner::after { content: "GAMEY"; position: absolute; right: 20px; bottom: 8px; color: rgba(255,255,255,.18); font-size: 38px; font-weight: 950; letter-spacing: -2px; }
.profile-main { position: relative; display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 13px; margin-top: -31px; }
.profile-avatar { width: 68px; height: 68px; display: grid; place-items: center; border: 5px solid #120b1a; border-radius: 21px; color: #fff; background: linear-gradient(145deg, #2f1d3d, #130b1b); font-size: 19px; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.profile-name { align-self: end; padding-bottom: 5px; display: grid; }
.profile-name strong { font-size: 14px; }
.profile-name span { color: #827688; font-size: 8px; }
.level-badge { align-self: end; margin-bottom: 7px; padding: 6px 8px; border-radius: 8px; color: var(--pink-2); background: rgba(255,46,104,.09); font-size: 8px; font-weight: 900; }
.xp-line { margin-top: 22px; }
.xp-line > div { display: flex; justify-content: space-between; color: #7d7284; font-size: 8px; }
.xp-line > i { height: 7px; margin-top: 8px; display: block; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; }
.xp-line b { display: block; width: 74%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--purple)); }
.profile-stats { margin-top: 19px; padding: 16px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.profile-stats div { display: grid; gap: 4px; text-align: center; border-right: 1px solid var(--line); }
.profile-stats div:last-child { border-right: 0; }
.profile-stats span { color: #736879; font-size: 7px; text-transform: uppercase; }
.profile-stats strong { font-size: 14px; }
.profile-games { display: flex; align-items: center; gap: 7px; margin-top: 17px; }
.profile-games span { padding: 7px 9px; border-radius: 8px; color: #a99dae; background: rgba(255,255,255,.035); font-size: 7px; font-weight: 800; }
.profile-games button { margin-left: auto; padding: 8px 10px; border: 1px solid rgba(255,46,104,.22); border-radius: 8px; color: var(--pink-2); background: rgba(255,46,104,.05); font-size: 8px; font-weight: 800; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 275px; padding: 30px; border: 1px solid var(--line); border-radius: 23px; background: rgba(255,255,255,.02); overflow: hidden; }
.step-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -80px; bottom: -90px; border: 1px solid rgba(255,46,104,.11); border-radius: 50%; }
.step-card > span { position: absolute; top: 22px; right: 23px; color: rgba(255,255,255,.12); font-size: 35px; font-weight: 900; }
.step-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); box-shadow: 0 15px 35px rgba(255,46,104,.22); font-size: 21px; font-weight: 900; }
.step-card h3 { margin: 61px 0 10px; font-size: 22px; }
.step-card p { margin: 0; color: #8c8193; font-size: 13px; line-height: 1.7; }

.premium-section { padding-top: 72px; }
.premium-banner { position: relative; min-height: 375px; padding: 48px; display: flex; align-items: center; border-radius: 30px; color: #fff; background: linear-gradient(135deg, #ff2e68 0%, #d92a73 45%, #8244e9 100%); box-shadow: 0 30px 75px rgba(255,46,104,.18); overflow: hidden; }
.premium-banner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(90deg, transparent, #000); opacity: .5; }
.premium-copy { position: relative; z-index: 2; max-width: 770px; }
.premium-eyebrow { color: #ffe2ec; }
.premium-copy h2 { max-width: 750px; }
.premium-copy > p { color: rgba(255,255,255,.78); max-width: 760px; }
.temporary-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 13px; border-radius: 12px; color: #fff; background: rgba(20,7,16,.18); border: 1px solid rgba(255,255,255,.15); font-size: 12px; }
.temporary-note span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 10px; font-weight: 800; }
.premium-symbol { position: absolute; right: 64px; bottom: -35px; color: rgba(255,255,255,.13); font-size: 250px; line-height: 1; font-weight: 950; transform: rotate(-8deg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 20px; }
.price-card { position: relative; padding: 29px; border-radius: 22px; color: #271b2b; background: #fff; border: 1px solid #ebe4ee; box-shadow: 0 16px 45px rgba(13,5,18,.12); }
.price-featured { border-color: #ffa6be; box-shadow: 0 20px 54px rgba(255,46,104,.16); }
.popular-label { position: absolute; top: 14px; right: 14px; padding: 6px 9px; border-radius: 999px; color: #db2457; background: #ffe4ed; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .7px; }
.price-top { display: grid; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid #eee7f0; }
.price-top > span { color: #47374c; font-size: 13px; font-weight: 850; }
.price-soon { color: #e32960; font-size: 31px !important; }
.price-card ul { min-height: 140px; margin: 22px 0 24px; padding: 0; list-style: none; display: grid; align-content: start; gap: 13px; }
.price-card li { position: relative; padding-left: 23px; color: #665a6b; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 74px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.text-link { display: inline-block; margin-top: 24px; color: var(--pink-2); font-weight: 800; }
.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.024); overflow: hidden; }
.accordion-item button { width: 100%; min-height: 75px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; color: #f5edf7; background: transparent; text-align: left; cursor: pointer; font-weight: 760; }
.accordion-item button i { color: var(--pink-2); font-size: 23px; font-style: normal; font-weight: 400; transition: transform .25s ease; }
.accordion-item.open { border-color: rgba(255,46,104,.22); background: rgba(255,46,104,.035); }
.accordion-item.open button i { transform: rotate(45deg); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion-content > p { overflow: hidden; margin: 0; padding: 0 22px; color: #988d9f; font-size: 14px; line-height: 1.7; transition: padding .28s ease; }
.accordion-item.open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.open .accordion-content > p { padding-bottom: 22px; }

.final-cta { padding-top: 48px; }
.cta-card { position: relative; min-height: 330px; padding: 42px; display: grid; grid-template-columns: 150px 1fr auto; gap: 32px; align-items: center; border-radius: 30px; color: #230b16; background: linear-gradient(135deg, #ff4778 0%, #ff789f 48%, #cb85ff 100%); overflow: hidden; box-shadow: 0 28px 75px rgba(255,46,104,.15); }
.cta-pattern { position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle, #2f0e1c 1.5px, transparent 1.5px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, #000); }
.cta-logo, .cta-copy, .cta-actions { position: relative; z-index: 1; }
.cta-logo img { border-radius: 30px; box-shadow: 0 18px 45px rgba(83,8,36,.2); }
.cta-copy > span { font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 1.4px; }
.cta-copy h2 { margin: 9px 0 10px; max-width: 600px; font-size: clamp(34px, 4vw, 50px); line-height: 1.03; letter-spacing: -2px; }
.cta-copy p { margin: 0; color: rgba(35,11,22,.68); }
.cta-actions { display: grid; gap: 10px; min-width: 235px; }

.site-footer { padding: 56px 0 22px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 50px; }
.footer-brand p { max-width: 300px; color: #756b7c; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; font-size: 12px; }
.footer-links a { color: #807587; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 21px; border-top: 1px solid var(--line); color: #625969; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { position: fixed; inset: 82px 20px auto; display: grid; gap: 5px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: rgba(10,6,15,.97); backdrop-filter: blur(18px); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu > a:not(.button) { padding: 12px 10px; border-radius: 10px; color: #c4bac8; font-size: 14px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(100%, 700px); margin-inline: auto; }
  .games-grid { grid-template-columns: 1fr; }
  .games-copy { max-width: 800px; }
  .dashboard-layout { grid-template-columns: 180px 1fr; }
  .cta-card { grid-template-columns: 120px 1fr; }
  .cta-actions { grid-column: 2; display: flex; min-width: 0; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding: 84px 0; }
  .desktop-only { display: none; }
  .header-inner { min-height: 72px; }
  .mobile-menu { inset: 72px 14px auto; }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 80px; }
  .hero-grid { gap: 48px; }
  .hero-copy h1 { font-size: clamp(45px, 13vw, 67px); letter-spacing: -3px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; gap: 9px; }
  .hero-visual { min-height: 510px; }
  .game-console { min-height: 485px; }
  .console-stage { min-height: 427px; padding-inline: 14px; }
  .logo-platform { width: 290px; height: 290px; }
  .logo-platform img { width: 270px; height: 270px; }
  .quest-card { right: 10px; top: 95px; width: 158px; }
  .xp-card { left: 10px; bottom: 20px; width: calc(100% - 20px); }
  .floating-chip { display: none; }
  .ring-one { width: 430px; height: 430px; }
  .ring-two { width: 500px; height: 500px; }
  .proof-track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .proof-track::-webkit-scrollbar { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; gap: 28px; }
  .feature-card { min-height: 340px; }
  .feature-wide { min-height: auto; }
  .arcade-board { margin-top: 5px; }
  .games-grid { gap: 44px; }
  .dashboard-topbar { grid-template-columns: 1fr 40px; }
  .dash-server { display: none; }
  .dashboard-layout { display: block; min-height: 0; }
  .dashboard-sidebar { display: none; }
  .dashboard-content { padding: 20px; }
  .customizer-grid { grid-template-columns: 1fr; }
  .settings-card, .profile-preview { min-height: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .premium-banner { min-height: 430px; padding: 32px 25px; align-items: flex-start; }
  .premium-symbol { right: 5px; bottom: -20px; font-size: 185px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card ul { min-height: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .cta-card { grid-template-columns: 82px 1fr; padding: 28px; }
  .cta-logo img { border-radius: 20px; }
  .cta-actions { grid-column: 1 / -1; display: grid; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .section-heading h2, .games-copy h2, .faq-intro h2, .premium-copy h2 { font-size: 37px; letter-spacing: -1.7px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-visual { min-height: 450px; }
  .game-console { min-height: 430px; border-radius: 24px; }
  .console-top { padding-inline: 13px; }
  .live-badge { font-size: 8px; }
  .console-stage { min-height: 372px; }
  .logo-platform { width: 245px; height: 245px; }
  .logo-platform img { width: 225px; height: 225px; border-radius: 34%; }
  .quest-card { width: 142px; top: 76px; }
  .xp-card { grid-template-columns: 38px 1fr; }
  .xp-card small { display: none; }
  .feature-card { padding: 24px; }
  .feature-card h3 { font-size: 24px; }
  .game-row { grid-template-columns: 42px 1fr; }
  .game-row > b { display: none; }
  .tracker-user { grid-template-columns: 50px 1fr; }
  .tracker-user em { display: none; }
  .tracker-item { grid-template-columns: 45px 1fr; }
  .tracker-item > b { display: none; }
  .dash-heading { align-items: end; }
  .dash-heading h3 { font-size: 20px; }
  .profile-main { grid-template-columns: 62px 1fr; }
  .level-badge { display: none; }
  .profile-stats strong { font-size: 12px; }
  .profile-games span:nth-child(3) { display: none; }
  .premium-banner { min-height: 520px; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-logo { width: 105px; margin: 0 auto; }
  .cta-actions { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .footer-links:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

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