@charset "UTF-8";

/* 01 reset/base */
:root {
  --bg-950: #060a10;
  --bg-900: #080d14;
  --bg-850: #0b121c;
  --bg-800: #0f1823;
  --bg-750: #13202d;
  --surface: #121d29;
  --surface-2: #182635;
  --text: #f4f8fb;
  --text-soft: #b6c1cb;
  --text-muted: #7f8e9d;
  --cyan: #33d6d2;
  --cyan-soft: #75ebe7;
  --cyan-dark: #167f82;
  --lime: #c6f36b;
  --lime-hover: #d8ff87;
  --lime-dark: #7da52f;
  --danger: #ff6d76;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --glass: rgba(13,21,31,.78);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1240px;
  --header-h: 76px;
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --font: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-950);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,input { font: inherit; }
button,a { -webkit-tap-highlight-color: transparent; }
h1,h2,h3,p,figure,ul,ol { margin-top: 0; }
ul { padding: 0; list-style: none; }
::selection { background: rgba(51,214,210,.28); color: #fff; }
:focus-visible { outline: 3px solid rgba(198,243,107,.62); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px;
  padding: 10px 14px; border-radius: 8px;
  background: var(--lime); color: #0a0f14; font-weight: 800;
  transform: translateY(-150%); transition: transform .18s ease;
}
.skip-link:focus { transform: none; }

/* 02 layout */
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-dark { background: var(--bg-900); }
.section-deep { background: var(--bg-950); }
.section-panel { background: var(--bg-850); }
.eyebrow {
  margin-bottom: 16px; color: var(--cyan);
  font-size: .76rem; font-weight: 850; letter-spacing: .19em;
  line-height: 1.2; text-transform: uppercase;
}
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2,
.article-hero h1 {
  margin-bottom: 22px; font-size: clamp(2rem,4vw,3.35rem);
  font-weight: 720; letter-spacing: -.045em; line-height: 1.02;
}
.section-heading > p:not(.eyebrow) { margin-bottom: 0; color: var(--text-soft); font-size: 1.05rem; }
.text-link { color: var(--cyan-soft); font-weight: 760; text-decoration: underline; text-decoration-color: rgba(117,235,231,.28); text-underline-offset: 4px; }
.text-link:hover { color: var(--lime); }
.muted { color: var(--text-muted); }
.panel {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(145deg,rgba(24,38,53,.88),rgba(11,18,28,.9));
  box-shadow: var(--shadow);
}

/* 03 floating header */
.site-header {
  position: fixed; z-index: 100; top: 16px; right: 0; left: 0;
  transition: top .22s ease;
}
.site-header.is-dense { top: 8px; }
.header-shell {
  min-height: var(--header-h); display: flex; align-items: center; gap: 28px;
  padding: 10px 12px 10px 20px; border: 1px solid var(--line-strong);
  border-radius: 22px; background: rgba(8,13,20,.72);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(20px) saturate(135%);
}
.site-header.is-dense .header-shell { background: rgba(8,13,20,.94); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-size: 1.05rem; font-weight: 820; letter-spacing: -.035em; }
.brand-mark {
  position: relative; display: grid; width: 34px; height: 34px; place-items: center;
  overflow: hidden; border: 1px solid rgba(51,214,210,.32);
  border-radius: 10px; background: linear-gradient(145deg,#172636,#0a111a);
  color: var(--cyan); font-weight: 900;
}
.brand-mark::after { position: absolute; inset: auto -8px -11px auto; width: 22px; height: 22px; border-radius: 50%; background: var(--lime); filter: blur(10px); content: ""; }
.brand b { color: var(--cyan); font-weight: inherit; }
.main-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.main-nav a {
  min-height: 44px; display: inline-flex; align-items: center;
  padding: 0 12px; border-radius: 11px; color: #aab6c0;
  font-size: .82rem; font-weight: 680; transition: color .18s ease,background .18s ease;
}
.main-nav a:hover,.main-nav a[aria-current="page"] { background: rgba(255,255,255,.055); color: #fff; }
.header-cta { min-height: 46px !important; padding-inline: 19px !important; }
.menu-toggle {
  display: none; width: 46px; height: 46px; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer;
}
.menu-toggle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.mobile-menu {
  width: min(calc(100% - 40px),var(--container)); margin: 8px auto 0;
  padding: 14px; border: 1px solid var(--line-strong); border-radius: 18px;
  background: rgba(8,13,20,.98); box-shadow: var(--shadow);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a { min-height: 48px; display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid var(--line); color: #c4cdd5; }
.mobile-menu nav a:last-child { border-bottom: 0; }
.mobile-menu .button { width: 100%; margin-top: 12px; }

/* 04 buttons */
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 13px 22px; border: 1px solid transparent;
  border-radius: 12px; font-weight: 820; line-height: 1;
  transition: transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: #0a1014; box-shadow: 0 14px 38px rgba(153,205,68,.15); }
.button-primary:hover { background: var(--lime-hover); box-shadow: 0 18px 45px rgba(153,205,68,.22); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: #fff; }
.button-secondary:hover { border-color: rgba(51,214,210,.36); background: rgba(51,214,210,.07); }
.button-cyan { background: var(--cyan); color: #071013; }
.button-small { min-height: 44px; padding: 11px 17px; font-size: .8rem; }

/* 05 hero */
.hero { padding: 170px 0 0; background: radial-gradient(circle at 50% 22%,rgba(51,214,210,.105),transparent 34%),linear-gradient(180deg,#07101a,var(--bg-950)); }
.hero-copy { position: relative; z-index: 2; max-width: 1080px; margin-inline: auto; text-align: center; }
.hero h1 {
  margin: 0 auto 25px; font-size: clamp(2.7rem,6vw,5.6rem);
  font-weight: 730; letter-spacing: -.066em; line-height: .94;
}
.hero-lead { max-width: 780px; margin: 0 auto; color: var(--text-soft); font-size: clamp(1rem,1.6vw,1.17rem); }
.hero-offer {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
  padding: 9px 15px; border: 1px solid rgba(51,214,210,.18);
  border-radius: 999px; background: rgba(51,214,210,.055);
  color: #eafdfc; font-size: .86rem; font-weight: 790;
}
.hero-offer::before { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); content: ""; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr); max-width: 850px;
  margin: 42px auto 0; border-block: 1px solid var(--line);
}
.hero-stats div { padding: 18px 15px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; color: #fff; font-size: 1.23rem; letter-spacing: -.03em; }
.hero-stats span { display: block; color: var(--text-muted); font-size: .64rem; font-weight: 760; letter-spacing: .1em; }
.hero-note { margin: 18px 0 0; color: var(--text-muted); font-size: .72rem; }
.hero-dashboard {
  position: relative; z-index: 1; width: min(calc(100% - 40px),1360px);
  margin: 60px auto -115px; padding: 16px;
  border: 1px solid rgba(51,214,210,.2); border-radius: 32px;
  background: linear-gradient(145deg,rgba(31,49,66,.8),rgba(9,15,23,.95));
  box-shadow: 0 55px 140px rgba(0,0,0,.58);
}
.hero-dashboard::before { position: absolute; inset: -60px 12%; z-index: -1; background: rgba(51,214,210,.1); filter: blur(75px); content: ""; }
.hero-dashboard img { width: 100%; border-radius: 20px; aspect-ratio: 1600/850; object-fit: cover; }
.hero-spacer { height: 115px; background: var(--bg-900); }

/* 06 product dock */
.product-dock-section { padding: 30px 0; background: var(--bg-900); }
.product-dock {
  display: grid; grid-template-columns: repeat(6,1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018);
}
.product-dock a { min-height: 84px; display: grid; place-items: center; gap: 7px; padding: 12px; border-right: 1px solid var(--line); color: var(--text-soft); font-size: .79rem; font-weight: 740; text-align: center; }
.product-dock a:last-child { border-right: 0; }
.product-dock a:hover { background: rgba(51,214,210,.06); color: #fff; }
.dock-icon { width: 22px; height: 22px; fill: none; stroke: var(--cyan); stroke-width: 1.6; }

/* 07 bonus console */
.bonus-console {
  display: grid; grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
  overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-xl);
  background: linear-gradient(135deg,#142333,#09111a); box-shadow: var(--shadow);
}
.bonus-main {
  min-height: 440px; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(28px,5vw,56px); border-right: 1px solid var(--line);
  background: radial-gradient(circle at 20% 20%,rgba(51,214,210,.14),transparent 40%);
}
.bonus-main .big-number { display: block; margin: 25px 0 0; color: var(--lime); font-size: clamp(5rem,11vw,9.3rem); font-weight: 780; letter-spacing: -.09em; line-height: .78; }
.bonus-main strong:not(.big-number) { display: block; margin-top: 22px; font-size: clamp(1.35rem,2.7vw,2.3rem); line-height: 1.08; }
.bonus-main small { display: block; margin-top: 7px; color: var(--cyan-soft); font-size: .84rem; font-weight: 790; letter-spacing: .12em; }
.bonus-list { padding: clamp(20px,4vw,42px); }
.bonus-row { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.bonus-row:last-of-type { border-bottom: 0; }
.index-chip { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(51,214,210,.23); border-radius: 10px; color: var(--cyan); font-size: .68rem; font-weight: 850; }
.bonus-row h3 { margin: 0 0 5px; font-size: 1rem; }
.bonus-row p { margin: 0; color: var(--text-muted); font-size: .86rem; }
.bonus-console-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 27px; }
.promo-note { margin: 28px 0 0; padding: 18px 20px; border-left: 2px solid var(--cyan); background: rgba(255,255,255,.025); color: var(--text-muted); font-size: .82rem; }

/* 08 slots */
.slot-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.slot-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #0e1721; transition: transform .18s ease,border-color .18s ease; }
.slot-card:hover { transform: translateY(-5px); border-color: rgba(51,214,210,.3); }
.slot-card__media { position: relative; aspect-ratio: 2/3; overflow: hidden; background: radial-gradient(circle at 50% 40%,rgba(51,214,210,.12),transparent 34%),linear-gradient(145deg,#172636,#080d14); }
.slot-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.slot-card:hover img { transform: scale(1.025); }
.slot-fallback { position: absolute; inset: 0; display: none; place-items: center; color: rgba(51,214,210,.58); font-size: 3rem; font-weight: 900; }
.slot-card__media.is-missing .slot-fallback { display: grid; }
.slot-play { position: absolute; right: 10px; bottom: 10px; min-height: 40px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 9px; background: var(--lime); color: #071013; font-size: .72rem; font-weight: 850; transform: translateY(6px); opacity: 0; transition: .18s ease; }
.slot-card:hover .slot-play,.slot-card:focus-within .slot-play { transform: none; opacity: 1; }
.slot-card h3 { min-height: 64px; display: flex; align-items: center; margin: 0; padding: 13px 14px; color: #dae3e9; font-size: .84rem; line-height: 1.25; }

/* 09 wheel */
.reward-terminal {
  position: relative; min-height: 560px; display: grid; grid-template-columns: minmax(0,1fr) minmax(400px,.9fr); align-items: center;
  overflow: hidden; padding: clamp(30px,5vw,64px); border: 1px solid rgba(51,214,210,.18); border-radius: var(--radius-xl);
  background: radial-gradient(circle at 83% 48%,rgba(51,214,210,.17),transparent 31%),linear-gradient(135deg,#0e1925,#071019);
}
.terminal-copy { position: relative; z-index: 2; max-width: 650px; }
.terminal-copy h2 { margin-bottom: 22px; font-size: clamp(2.1rem,4.8vw,4.2rem); letter-spacing: -.055em; line-height: .98; }
.terminal-copy > p:not(.eyebrow) { color: var(--text-soft); }
.reward-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 28px; }
.reward-chips span,
.reward-chips li { padding: 7px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,.035); color: #d7e1e8; font-size: .73rem; font-weight: 740; }
.terminal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.terminal-wheel { position: absolute; top: -10%; right: -7%; width: min(56%,680px); }
.terminal-wheel img { width: 100%; }

/* 10 live teaser */
.live-teaser { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; overflow: hidden; }
.live-teaser-media { min-height: 600px; }
.live-teaser-media img { width: 100%; height: 100%; object-fit: cover; }
.live-teaser-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px,5vw,65px); }
.live-teaser-copy h2 { font-size: clamp(2rem,4vw,3.45rem); letter-spacing: -.045em; line-height: 1.02; }
.live-examples { display: grid; gap: 9px; margin: 27px 0; }
.live-examples li { min-height: 47px; display: flex; align-items: center; gap: 11px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; color: #c8d2d9; font-size: .82rem; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 14px rgba(255,109,118,.7); }

/* 11 sportsbook */
.sports-terminal { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px,7vw,92px); align-items: center; }
.sports-bonus { margin-top: 27px; padding: 22px; border: 1px solid rgba(198,243,107,.2); border-radius: 14px; background: rgba(198,243,107,.045); }
.sports-bonus span { color: var(--lime); font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.sports-bonus strong { display: block; margin: 8px 0 3px; font-size: 1.35rem; }
.sports-bonus p { margin: 0; color: var(--text-muted); font-size: .78rem; }
.market-board { padding: 18px; }
.market-top { display: flex; justify-content: space-between; align-items: center; padding: 12px 13px 18px; border-bottom: 1px solid var(--line); color: var(--text-muted); font-size: .7rem; letter-spacing: .1em; }
.status-live { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan-soft); }
.status-live::before { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); content: ""; }
.market-row { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 14px; min-height: 84px; padding: 14px; border-bottom: 1px solid var(--line); }
.market-row:last-child { border-bottom: 0; }
.market-row .market-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--cyan); }
.market-row h3 { margin: 0; font-size: .95rem; }
.market-row p { margin: 4px 0 0; color: var(--text-muted); font-size: .76rem; }
.market-row b { color: var(--lime); font-size: .68rem; letter-spacing: .08em; }

/* 12 payments */
.cashier { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.cashier-column { padding: clamp(23px,4vw,42px); }
.cashier-head { display: flex; align-items: center; gap: 15px; margin-bottom: 28px; }
.cashier-symbol { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(51,214,210,.22); border-radius: 13px; color: var(--cyan); }
.cashier-head h3 { margin: 0; font-size: 1.2rem; }
.payment-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.payment-list li { min-height: 47px; display: flex; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; color: #c1ccd4; font-size: .76rem; }
.crypto-strip { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.crypto-strip span { padding: 6px 9px; border-radius: 7px; background: rgba(51,214,210,.07); color: var(--cyan-soft); font-size: .7rem; font-weight: 760; }
.cashier-note { margin: 19px 0 0; color: var(--text-muted); font-size: .8rem; }
.cashier-action { margin-top: 27px; text-align: center; }

/* 13 mobile */
.mobile-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px,9vw,120px); }
.mobile-copy h2 { margin-bottom: 22px; font-size: clamp(2.1rem,4.5vw,4rem); letter-spacing: -.05em; line-height: .99; }
.install-paths { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 28px 0; }
.install-paths article { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); }
.install-paths span { color: var(--cyan); font-size: .69rem; font-weight: 830; letter-spacing: .1em; }
.install-paths h3 { margin: 16px 0 7px; font-size: .95rem; }
.install-paths p { margin: 0; color: var(--text-muted); font-size: .76rem; }
.mobile-visual { position: relative; }
.mobile-visual::before { position: absolute; inset: 15% 10%; z-index: -1; border-radius: 50%; background: rgba(51,214,210,.17); filter: blur(70px); content: ""; }
.mobile-visual img { max-height: 720px; margin-inline: auto; object-fit: contain; }

/* 14 rewards */
.pipeline { display: grid; grid-template-columns: repeat(6,1fr); margin: 48px 0; }
.pipeline span { position: relative; min-height: 64px; display: grid; place-items: center; border-block: 1px solid var(--line); border-right: 1px solid var(--line); color: #d2dce3; font-size: .7rem; font-weight: 820; letter-spacing: .08em; }
.pipeline span:first-child { border-left: 1px solid var(--line); border-radius: 12px 0 0 12px; }
.pipeline span:last-child { border-radius: 0 12px 12px 0; color: var(--lime); }
.pipeline span:not(:last-child)::after { position: absolute; z-index: 2; right: -5px; width: 8px; height: 8px; border-top: 1px solid var(--cyan); border-right: 1px solid var(--cyan); background: var(--bg-900); transform: rotate(45deg); content: ""; }
.reward-modules { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.reward-modules article { min-height: 230px; padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.022); }
.reward-modules span { color: var(--cyan); font-size: .66rem; font-weight: 850; letter-spacing: .1em; }
.reward-modules h3 { margin: 48px 0 10px; font-size: 1rem; }
.reward-modules p { margin: 0; color: var(--text-muted); font-size: .77rem; }

/* 15 login explainer */
.login-teaser { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(38px,7vw,90px); }
.mock-login { max-width: 610px; padding: clamp(24px,4vw,42px); }
.mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mock-top strong { font-size: 1.05rem; }
.secure-chip { padding: 6px 9px; border-radius: 999px; background: rgba(198,243,107,.08); color: var(--lime); font-size: .65rem; font-weight: 800; }
.mock-field { margin-top: 12px; }
.mock-field label { display: block; margin-bottom: 7px; color: var(--text-muted); font-size: .69rem; }
.mock-field div { min-height: 50px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.mock-submit { width: 100%; margin-top: 17px; border: 0; cursor: default; }
.mock-login small { display: block; margin-top: 13px; color: var(--cyan-soft); text-align: center; }
.social-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-top: 19px; }
.social-row span { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: #c7d1d8; font-size: .76rem; }

/* 16 faq */
.faq-section { background: #071019; }
.faq-layout { display: grid; grid-template-columns: minmax(270px,.7fr) minmax(0,1.3fr); gap: clamp(45px,8vw,110px); align-items: start; }
.faq-intro { position: sticky; top: 118px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 72px; display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; gap: 12px; padding: 15px 0; border: 0; background: none; color: #e9f0f4; text-align: left; cursor: pointer; }
.faq-question .faq-index { color: var(--text-muted); font-size: .66rem; font-weight: 820; letter-spacing: .1em; }
.faq-question .faq-plus { color: var(--cyan); font-size: 1.15rem; transition: transform .18s ease; }
.faq-question[aria-expanded="true"] .faq-plus { transform: rotate(45deg); color: var(--lime); }
.faq-answer { padding: 0 34px 22px 46px; color: var(--text-muted); font-size: .9rem; }

/* 17 closing */
.closing { position: relative; overflow: hidden; padding: 95px 0; background: #080e16; }
.closing-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(360px,1.15fr); align-items: center; }
.closing-copy { position: relative; z-index: 2; padding-right: 35px; }
.closing h2 { margin-bottom: 22px; font-size: clamp(2.3rem,5vw,4.8rem); letter-spacing: -.06em; line-height: .95; }
.closing p:not(.eyebrow) { max-width: 630px; color: var(--text-soft); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.closing-small { display: block; margin-top: 20px; color: var(--text-muted); font-size: .7rem; }
.closing-art img { width: 100%; max-height: 560px; object-fit: contain; }

/* 18 internal commercial pages */
.internal-hero { padding: 155px 0 80px; background: radial-gradient(circle at 78% 15%,rgba(51,214,210,.11),transparent 35%),linear-gradient(180deg,#09131e,#070c13); }
.internal-hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(430px,1.12fr); align-items: center; gap: clamp(42px,7vw,90px); }
.internal-hero h1 { margin-bottom: 23px; font-size: clamp(2.65rem,5.5vw,5.2rem); font-weight: 730; letter-spacing: -.064em; line-height: .94; }
.internal-hero-copy > p:not(.eyebrow) { color: var(--text-soft); font-size: 1.05rem; }
.internal-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.internal-note { margin: 18px 0 0; color: var(--text-muted); font-size: .75rem; }
.internal-visual { position: relative; margin: 0; padding: 12px; border: 1px solid var(--line-strong); border-radius: 24px; background: rgba(255,255,255,.025); box-shadow: var(--shadow); }
.internal-visual img { width: 100%; border-radius: 15px; object-fit: cover; }
.hero-figure { position: absolute; right: 25px; bottom: 25px; left: 25px; display: block; padding: 16px 18px; border: 1px solid rgba(198,243,107,.21); border-radius: 12px; background: rgba(6,10,16,.83); color: var(--lime); font-size: clamp(1rem,2.4vw,1.55rem); font-weight: 820; text-align: center; backdrop-filter: blur(16px); }
.page-nav { padding: 17px 0; border-block: 1px solid var(--line); background: #09111a; }
.page-nav .container { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; }
.page-nav a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-muted); font-size: .72rem; }
.page-nav a:hover { color: var(--cyan); border-color: rgba(51,214,210,.25); }
.split-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; gap: clamp(35px,7vw,92px); }
.copy-block h2 { margin-bottom: 21px; font-size: clamp(2rem,4vw,3.35rem); letter-spacing: -.045em; line-height: 1.03; }
.copy-block > p { color: var(--text-soft); }
.numbered-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.numbered-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; min-height: 66px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.024); color: #cbd5dc; }
.numbered-list span { color: var(--cyan); font-size: .66rem; font-weight: 850; }
.info-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
.info-table { width: 100%; min-width: 650px; border-collapse: collapse; text-align: left; }
.info-table th,.info-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { background: #13202d; color: var(--cyan-soft); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.info-table td { color: #bdc9d1; font-size: .84rem; }
.info-table tbody tr:last-child td { border-bottom: 0; }

/* bonus */
.offer-matrix { display: grid; gap: 11px; }
.offer-card { display: grid; grid-template-columns: 1.05fr .95fr auto; align-items: center; gap: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.024); }
.offer-card.featured { border-color: rgba(198,243,107,.23); background: linear-gradient(90deg,rgba(198,243,107,.07),rgba(255,255,255,.02)); }
.offer-card h3 { margin: 0 0 7px; font-size: 1.05rem; }
.offer-card p { margin: 0; color: var(--text-muted); font-size: .8rem; }
.offer-value { color: var(--cyan-soft); font-weight: 800; }
.offer-card.featured .offer-value { color: var(--lime); }
.offer-note { margin: 21px 0 0; color: var(--text-muted); font-size: .78rem; }
.three-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.info-card { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.023); }
.info-card span { color: var(--cyan); font-size: .67rem; font-weight: 850; letter-spacing: .1em; }
.info-card h3 { margin: 45px 0 10px; font-size: 1.06rem; }
.info-card p { margin: 0; color: var(--text-muted); font-size: .79rem; }
.compact-pipeline { max-width: 760px; margin: 34px auto; }
.bonus-slot-grid { grid-template-columns: repeat(6,minmax(0,1fr)); }

/* login */
.login-hero .internal-visual img { aspect-ratio: 1200/820; }
.account-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.account-tile { min-height: 125px; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.022); }
.account-tile span { color: var(--text-muted); font-size: .68rem; }
.account-tile strong { display: block; margin-top: 37px; color: var(--cyan-soft); font-size: .9rem; }
.stage-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.stage-card { padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.022); }
.stage-card h3 { margin-bottom: 18px; }
.stage-card ul { display: grid; gap: 7px; }
.stage-card li { padding-left: 16px; position: relative; color: var(--text-muted); font-size: .8rem; }
.stage-card li::before { position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); content: ""; }
.support-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 21px; }
.support-links a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; color: var(--cyan-soft); font-size: .77rem; }

/* live casino */
.live-studio-hero { padding-top: 145px; }
.studio-media { position: relative; max-width: 1320px; margin: 0 auto; }
.studio-media img { width: 100%; max-height: 690px; object-fit: cover; border-radius: 26px; }
.studio-overlay { position: relative; max-width: 1030px; margin: -130px auto 0; padding: clamp(28px,5vw,58px); background: rgba(7,12,19,.91); backdrop-filter: blur(22px); }
.studio-overlay h1 { max-width: 850px; }
.status-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.status-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #c5d0d8; font-size: .7rem; }
.live-game-list { display: grid; gap: 13px; }
.live-game-card { display: grid; grid-template-columns: 1fr minmax(210px,.8fr) auto; align-items: center; gap: 24px; min-height: 120px; padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.022); }
.live-game-card h3 { margin: 0; font-size: 1.05rem; }
.live-game-card p { margin: 0; color: var(--text-muted); font-size: .8rem; }
.detail-media img { width: 100%; border-radius: 20px; }

/* 19 technical pages */
.article-hero { padding: 155px 0 62px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 5%,rgba(51,214,210,.1),transparent 28%),#09111a; }
.article-wrap { max-width: 860px; }
.breadcrumb { display: flex; gap: 7px; margin-bottom: 34px; color: var(--text-muted); font-size: .72rem; }
.breadcrumb a:hover { color: var(--cyan); }
.article-intro { max-width: 770px; color: var(--text-soft); font-size: 1.05rem; }
.article-body { padding: 72px 0 105px; background: #0b121c; }
.article-body section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.article-body section:first-child { padding-top: 0; }
.article-body section:last-child { border-bottom: 0; }
.article-body h2 { margin-bottom: 16px; font-size: clamp(1.35rem,2.5vw,1.95rem); letter-spacing: -.025em; line-height: 1.16; }
.article-body p,.article-body li { color: #aebbc5; }
.article-body ul,.article-body ol { display: grid; gap: 8px; padding-left: 22px; }
.article-body ul { list-style: disc; }
.article-body a { color: var(--cyan-soft); text-decoration: underline; text-decoration-color: rgba(117,235,231,.28); text-underline-offset: 3px; }
.contact-box { margin-top: 18px; padding: 18px 20px; border: 1px solid rgba(51,214,210,.2); border-radius: 12px; background: rgba(51,214,210,.04); }
.toc { margin: 0 0 35px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.toc strong { display: block; margin-bottom: 10px; color: #fff; }
.toc ol { grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; }

/* 20 footer */
.site-footer { border-top: 1px solid var(--line); background: #05080d; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,.8fr); gap: 45px; padding: 70px 0 55px; }
.footer-brand p { max-width: 380px; margin: 20px 0; color: var(--text-muted); font-size: .83rem; }
.age-badge { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(198,243,107,.25); border-radius: 50%; color: var(--lime); font-size: .75rem; font-weight: 830; }
.footer-grid h2 { margin-bottom: 18px; color: #e9f0f4; font-size: .84rem; }
.footer-grid ul { display: grid; gap: 9px; margin: 0; }
.footer-grid li,.footer-grid p,.footer-grid a { color: var(--text-muted); font-size: .78rem; }
.footer-grid a:hover { color: var(--cyan-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 28px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #657482; font-size: .72rem; }
.mobile-bar { display: none; }

/* 21 responsive */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; margin-left: auto; }
  .slot-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .bonus-slot-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .reward-modules { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,.8fr); gap: 26px; }
}
@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .bonus-console,.live-teaser,.sports-terminal,.mobile-layout,.login-teaser,.split-layout,.internal-hero-grid,.closing-grid { grid-template-columns: 1fr; }
  .bonus-main { min-height: 350px; border-right: 0; border-bottom: 1px solid var(--line); }
  .live-teaser-media { min-height: 440px; }
  .sports-terminal,.login-teaser { gap: 48px; }
  .mobile-visual { order: 2; }
  .reward-terminal { grid-template-columns: 1fr; padding-bottom: 390px; }
  .terminal-wheel { top: auto; right: 50%; bottom: -14%; width: 510px; transform: translateX(50%); }
  .cashier { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: repeat(3,1fr); }
  .pipeline span { border-bottom: 0; }
  .pipeline span:nth-child(3),.pipeline span:last-child { border-right: 1px solid var(--line); }
  .pipeline span:first-child { border-radius: 12px 0 0; }
  .pipeline span:nth-child(3) { border-radius: 0 12px 0 0; }
  .pipeline span:nth-child(4) { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0 0 0 12px; }
  .pipeline span:nth-child(5),.pipeline span:nth-child(6) { border-bottom: 1px solid var(--line); }
  .pipeline span:last-child { border-radius: 0 0 12px; }
  .internal-visual { max-width: 700px; }
  .offer-card { grid-template-columns: 1fr auto; }
  .offer-card .button { grid-column: 1/-1; width: 100%; }
  .account-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .site-header { top: 8px; }
  .header-shell { min-height: 64px; padding: 8px 9px 8px 14px; border-radius: 17px; }
  .header-cta { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(2.5rem,12vw,3.65rem); }
  .hero-actions,.internal-actions,.closing-actions { display: grid; }
  .hero-actions .button,.internal-actions .button,.closing-actions .button { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-dashboard { width: calc(100% - 22px); margin-top: 40px; padding: 7px; border-radius: 18px; }
  .hero-dashboard img { min-height: 290px; object-fit: cover; }
  .product-dock { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-dock a { flex: 0 0 122px; scroll-snap-align: start; }
  .section { padding: 72px 0; }
  .section-heading h2,.article-hero h1,.copy-block h2 { font-size: clamp(2rem,10vw,2.85rem); }
  .bonus-main { min-height: 315px; }
  .bonus-main .big-number { font-size: 5.6rem; }
  .slot-grid,.bonus-slot-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .slot-play { opacity: 1; transform: none; }
  .reward-terminal { min-height: 720px; padding: 30px 22px 350px; border-radius: 23px; }
  .terminal-wheel { width: 430px; bottom: -10%; }
  .live-teaser-media { min-height: 350px; }
  .live-teaser-copy { padding: 29px 22px 35px; }
  .payment-list { grid-template-columns: 1fr; }
  .install-paths,.stage-grid,.three-grid { grid-template-columns: 1fr; }
  .reward-modules { grid-template-columns: 1fr; }
  .reward-modules article { min-height: 190px; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline span,.pipeline span:nth-child(n) { min-height: 54px; border: 1px solid var(--line); border-bottom: 0; border-radius: 0; }
  .pipeline span:first-child { border-radius: 11px 11px 0 0; }
  .pipeline span:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 11px 11px; }
  .pipeline span:not(:last-child)::after { right: 50%; bottom: -5px; transform: translateX(50%) rotate(135deg); }
  .internal-hero { padding: 125px 0 60px; }
  .internal-hero h1 { font-size: clamp(2.45rem,12vw,3.55rem); }
  .hero-figure { right: 12px; bottom: 12px; left: 12px; }
  .offer-card { grid-template-columns: 1fr; gap: 12px; }
  .offer-card .button { grid-column: auto; }
  .account-grid { grid-template-columns: 1fr; }
  .studio-media img { min-height: 420px; }
  .studio-overlay { margin: -65px 10px 0; border-radius: 20px; }
  .live-game-card { grid-template-columns: 1fr; gap: 10px; }
  .live-game-card .button { width: 100%; margin-top: 8px; }
  .article-hero { padding: 125px 0 48px; }
  .article-body { padding: 52px 0 85px; }
  .toc ol { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); padding-top: 55px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-bottom: 92px; }
  .mobile-bar {
    position: fixed; z-index: 90; right: 9px; bottom: 8px; left: 9px;
    display: grid; grid-template-columns: .8fr 1.2fr; gap: 8px;
    padding: 7px; border: 1px solid var(--line-strong); border-radius: 14px;
    background: rgba(6,10,16,.94); backdrop-filter: blur(17px);
  }
  .mobile-bar a { min-height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; font-size: .78rem; font-weight: 820; }
  .mobile-bar a:last-child { border-color: transparent; background: var(--lime); color: #081015; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .terminal-wheel { width: 370px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
