:root {
  --ink: #f6f8ff;
  --muted: #9aa5b7;
  --muted-2: #6f798b;
  --bg: #070a12;
  --bg-2: #0a0f1c;
  --panel: rgba(15, 22, 38, 0.82);
  --panel-solid: #101827;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --cyan: #43f5e5;
  --cyan-soft: #88fff4;
  --pink: #ff4da6;
  --pink-soft: #ff92c8;
  --gold: #ffc857;
  --gold-soft: #ffe19a;
  --red: #ff5b6e;
  --green: #4df28b;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --header-height: 78px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(67, 245, 229, 0.085), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(255, 77, 166, 0.09), transparent 35rem),
    linear-gradient(180deg, #070a12 0%, #090d18 58%, #070a12 100%);
}
body.game-active { overflow: hidden; }
body.reduced-effects *, body.reduced-effects *::before, body.reduced-effects *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { color: #05110f; background: var(--cyan); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 8px;
  color: #04120f;
  background: var(--cyan);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.ambient {
  position: fixed;
  z-index: -3;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}
.ambient--one { top: -24rem; left: -20rem; background: var(--cyan); }
.ambient--two { top: 18rem; right: -28rem; background: var(--pink); }
.noise {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(24px) saturate(150%);
  transition: transform 240ms ease, background 240ms ease;
}
.site-header.is-scrolled { background: rgba(7, 10, 18, 0.92); }

.brand, .game-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}
.game-brand { padding: 0; border: 0; background: none; cursor: pointer; text-align: left; }
.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 46px;
}
.brand-mark--small { width: 34px; height: 38px; }
.brand-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 30px;
  height: 40px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 950;
  font-size: 15px;
  line-height: 1;
}
.brand-card--back {
  top: 0;
  left: 2px;
  transform: rotate(-12deg);
  background: linear-gradient(145deg, rgba(255,77,166,.9), #7927c7);
  box-shadow: 0 0 20px rgba(255,77,166,.32);
}
.brand-card--front {
  right: 2px;
  bottom: 0;
  transform: rotate(8deg);
  color: #041410;
  background: linear-gradient(145deg, var(--cyan-soft), #33cbbf);
  box-shadow: 0 0 24px rgba(67,245,229,.32);
}
.brand-copy, .game-brand > span:last-child { display: grid; gap: 1px; }
.brand-copy strong, .game-brand strong { font-size: 14px; letter-spacing: .14em; font-weight: 950; }
.brand-copy small, .game-brand small { color: var(--muted-2); font-size: 8px; letter-spacing: .23em; font-weight: 800; }

.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.5vw, 42px); }
.site-nav a, .nav-button {
  position: relative;
  padding: 10px 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.site-nav a::after, .nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--cyan);
  transition: right 180ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible, .nav-button:hover, .nav-button:focus-visible { color: var(--ink); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .nav-button:hover::after, .nav-button:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.utc-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255,255,255,.025);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}
.utc-pill strong { color: var(--ink); min-width: 55px; font-variant-numeric: tabular-nums; font-size: 10px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(77,242,139,.08), 0 0 12px rgba(77,242,139,.7); animation: pulse 1.8s ease-in-out infinite; }

.button {
  --button-bg: transparent;
  --button-color: var(--ink);
  --button-border: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  border-radius: 10px;
  color: var(--button-color);
  background: var(--button-bg);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.24), transparent 85%);
  transition: transform 420ms ease;
}
.button:hover::before, .button:focus-visible::before { transform: translateX(102%); }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button--primary { --button-bg: linear-gradient(135deg, var(--cyan), #36c9d1); --button-color: #041411; --button-border: transparent; box-shadow: 0 14px 34px rgba(67,245,229,.18), 0 0 30px rgba(67,245,229,.08); }
.button--secondary { --button-bg: rgba(255,255,255,.035); --button-border: rgba(255,255,255,.16); }
.button--gold { --button-bg: linear-gradient(135deg, var(--gold), #f59b35); --button-color: #1a1001; --button-border: transparent; box-shadow: 0 14px 34px rgba(255,200,87,.16); }
.button--light { --button-bg: linear-gradient(135deg, #fff, #dfe9ff); --button-color: #0a1020; --button-border: transparent; }
.button--ghost { --button-bg: rgba(255,255,255,.025); --button-border: rgba(255,255,255,.12); }
.button--compact { min-height: 38px; padding: 0 14px; border-radius: 9px; font-size: 9px; }
.button--large { min-height: 58px; padding: 0 25px; border-radius: 12px; }
.button--wide { width: 100%; }
.button-arrow { font-size: 17px; }
.pro-gem { color: var(--pink-soft); text-shadow: 0 0 12px rgba(255,77,166,.7); }
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.icon-button:hover, .icon-button:focus-visible { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.06); }
.mobile-menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(900px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  padding: calc(var(--header-height) + 70px) clamp(24px, 6vw, 104px) 70px;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,18,.18), rgba(7,10,18,0) 55%), radial-gradient(circle at 68% 50%, rgba(67,245,229,.06), transparent 32rem);
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 70%, transparent);
  transform: perspective(700px) rotateX(66deg) translateY(42%);
  transform-origin: bottom;
}
.hero-copy { max-width: 680px; }
.eyebrow, .section-index, .modal-kicker, .pro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-pulse { width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--cyan); box-shadow: 0 0 15px rgba(67,245,229,.55); }
.hero h1 {
  margin: 24px 0 24px;
  max-width: 780px;
  font-size: clamp(62px, 7.8vw, 132px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 950;
  text-transform: uppercase;
}
.hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.62);
  text-shadow: 0 0 50px rgba(255,255,255,.05);
}
.hero-lede { max-width: 610px; margin: 0; color: #b6c0d0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-meta { display: flex; gap: 34px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; gap: 2px; }
.hero-meta strong { color: var(--ink); font-size: 22px; font-weight: 950; letter-spacing: -.04em; }
.hero-meta span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.virtual-note { display: flex; align-items: center; gap: 9px; margin: 24px 0 0; color: var(--muted-2); font-size: 10px; letter-spacing: .06em; }
.virtual-note span { color: var(--gold); }

.hero-visual { position: relative; min-height: 640px; display: grid; place-items: center; perspective: 1100px; }
.hero-table {
  position: relative;
  width: min(570px, 88%);
  aspect-ratio: 1.28;
  border-radius: 50%;
  transform: rotateX(58deg) rotateZ(-8deg) translateY(-16px);
  background:
    radial-gradient(circle at 46% 42%, rgba(67,245,229,.15), transparent 36%),
    radial-gradient(circle at 64% 55%, rgba(255,77,166,.12), transparent 38%),
    linear-gradient(145deg, #0b4b4b, #052c35 46%, #081e2e);
  border: 8px solid #101722;
  box-shadow: 0 0 0 2px rgba(255,255,255,.14), 0 0 0 13px rgba(4,7,13,.86), 0 70px 110px rgba(0,0,0,.58), inset 0 0 90px rgba(0,0,0,.42), 0 0 80px rgba(67,245,229,.06);
}
.hero-table::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(255,255,255,.025);
}
.hero-table::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 50%;
}
.table-rim { position: absolute; inset: -14px; border: 1px solid rgba(67,245,229,.18); border-radius: 50%; }
.table-copy { position: absolute; top: 32%; left: 50%; display: grid; transform: translateX(-50%); text-align: center; opacity: .78; }
.table-copy span { color: var(--cyan-soft); font-size: 12px; letter-spacing: .35em; font-weight: 900; }
.table-copy strong { font-size: 48px; line-height: .9; letter-spacing: -.05em; }
.table-copy small { margin-top: 8px; color: rgba(255,255,255,.45); font-size: 7px; letter-spacing: .2em; }
.floating-card {
  position: absolute;
  z-index: 3;
  width: 92px;
  height: 132px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 13px;
  border-radius: 12px;
  color: #0b1220;
  background: linear-gradient(145deg, #fff, #dce8f4);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 30px rgba(0,0,0,.34);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 800;
  transform-style: preserve-3d;
}
.floating-card i { align-self: end; justify-self: end; font-style: normal; font-size: 40px; }
.floating-card.red { color: #d92549; }
.floating-card--one { top: 12%; left: 23%; transform: rotateZ(-24deg) translateZ(44px); animation: cardFloat 5s ease-in-out infinite; }
.floating-card--two { top: 5%; left: 42%; transform: rotateZ(-5deg) translateZ(62px); animation: cardFloat2 5.8s ease-in-out infinite; }
.floating-card--three { top: 10%; right: 18%; transform: rotateZ(18deg) translateZ(36px); animation: cardFloat 6.2s ease-in-out infinite reverse; }
.card-back { place-items: center; color: var(--cyan); background: repeating-linear-gradient(45deg, #101a30, #101a30 5px, #172542 5px, #172542 10px); border: 3px solid #d9e3ef; box-shadow: inset 0 0 0 3px #101827, 0 18px 30px rgba(0,0,0,.34); }
.card-back b { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(67,245,229,.55); border-radius: 50%; font-family: inherit; font-size: 16px; letter-spacing: .08em; }
.hero-die { position: absolute; z-index: 4; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(3,1fr); padding: 11px; border-radius: 13px; background: linear-gradient(145deg,#fff,#cbd8e7); box-shadow: 0 16px 30px rgba(0,0,0,.4); }
.hero-die span { width: 8px; height: 8px; place-self: center; border-radius: 50%; background: #11192a; }
.hero-die--one { width: 72px; height: 72px; right: 20%; bottom: 20%; transform: rotateZ(21deg) translateZ(55px); }
.hero-die--one span:nth-child(1) { grid-area: 1/1; }.hero-die--one span:nth-child(2) { grid-area: 1/3; }.hero-die--one span:nth-child(3) { grid-area: 2/2; }.hero-die--one span:nth-child(4) { grid-area: 3/1; }.hero-die--one span:nth-child(5) { grid-area: 3/3; }
.hero-die--two { width: 62px; height: 62px; right: 9%; bottom: 30%; transform: rotateZ(-13deg) translateZ(30px); background: linear-gradient(145deg,#ff76b8,#be2f79); }
.hero-die--two span { background: #fff; }.hero-die--two span:nth-child(1) { grid-area: 1/1; }.hero-die--two span:nth-child(2) { grid-area: 1/3; }.hero-die--two span:nth-child(3) { grid-area: 3/1; }.hero-die--two span:nth-child(4) { grid-area: 3/3; }
.chip-stack { position: absolute; z-index: 4; display: grid; }
.chip-stack i { grid-area: 1/1; width: 66px; height: 22px; border-radius: 50%; border: 5px dashed rgba(255,255,255,.85); box-shadow: inset 0 0 0 4px currentColor, 0 8px 12px rgba(0,0,0,.22); }
.chip-stack i:nth-child(1) { transform: translateY(0); }.chip-stack i:nth-child(2) { transform: translateY(-9px); }.chip-stack i:nth-child(3) { transform: translateY(-18px); }.chip-stack i:nth-child(4) { transform: translateY(-27px); }
.chip-stack--cyan { left: 15%; bottom: 24%; color: #19bdb3; }.chip-stack--pink { left: 28%; bottom: 13%; color: #cf337f; transform: scale(.8); }
.glass-card { border: 1px solid rgba(255,255,255,.13); background: linear-gradient(145deg,rgba(19,29,49,.84),rgba(8,13,24,.72)); backdrop-filter: blur(20px); box-shadow: var(--shadow); }
.hero-score-card { position: absolute; z-index: 5; left: 2%; bottom: 4%; width: 200px; display: grid; gap: 8px; padding: 17px; border-radius: 15px; animation: glassFloat 5s ease-in-out infinite; }
.hero-score-card span, .proof-chip span, .rank-chip span { color: var(--muted-2); font-size: 8px; letter-spacing: .13em; font-weight: 850; }
.hero-score-card strong { font-size: 24px; letter-spacing: -.04em; }
.hero-score-card small { color: var(--muted-2); font-size: 8px; }
.score-line { height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }.score-line i { display: block; width: var(--score-width); height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--cyan),var(--pink)); box-shadow: 0 0 12px rgba(67,245,229,.5); }
.proof-chip, .rank-chip { position: absolute; z-index: 5; display: grid; gap: 4px; padding: 13px 16px; border-radius: 13px; }
.proof-chip { top: 12%; right: 2%; }.proof-chip strong { color: var(--cyan-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .08em; }
.rank-chip { right: -1%; bottom: 7%; }.rank-chip strong { font-size: 19px; }.rank-chip i { color: var(--green); font-size: 8px; font-style: normal; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; animation: orbitSpin 18s linear infinite; }.orbit::after { content:""; position:absolute; width:6px; height:6px; top:-3px; left:50%; border-radius:50%; background:var(--cyan); box-shadow:0 0 18px var(--cyan); }
.orbit--one { width: 600px; height: 600px; }.orbit--two { width: 470px; height: 470px; animation-duration: 14s; animation-direction: reverse; }.orbit--two::after { background: var(--pink); box-shadow: 0 0 18px var(--pink); }

.ticker { overflow: hidden; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.ticker-track { width: max-content; display: flex; gap: 58px; animation: ticker 30s linear infinite; }
.ticker span { color: var(--muted-2); font-size: 9px; font-weight: 850; letter-spacing: .16em; }.ticker i { color: var(--cyan); margin-right: 10px; font-style: normal; }

.section { padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 120px); }
.section-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .how-copy h2, .proof-copy h2, .pro-copy h2 { margin: 14px 0 0; font-size: clamp(42px, 5.4vw, 82px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.section-heading > p { max-width: 510px; margin: 0 0 7px; color: var(--muted); line-height: 1.75; }
.section-heading--center { align-items: center; }
.rankings-intro{display:grid;gap:14px;justify-items:start}.rankings-intro p{max-width:510px;margin:0;color:var(--muted);line-height:1.7}.player-name-strip{width:min(100%,520px);display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;padding:10px 12px;border:1px solid rgba(67,245,229,.18);border-radius:12px;background:rgba(67,245,229,.045)}.player-name-strip span{color:var(--muted-2);font-size:7px;font-weight:950;letter-spacing:.15em;text-transform:uppercase}.player-name-strip strong{min-width:0;overflow:hidden;color:var(--cyan-soft);font-size:13px;text-overflow:ellipsis;white-space:nowrap}

.games-section { position: relative; }
.games-section::before { content:""; position:absolute; top:12%; left:0; width:40%; height:60%; background:radial-gradient(circle,rgba(67,245,229,.065),transparent 68%); pointer-events:none; }
.game-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.game-card { position: relative; min-height: 720px; display: grid; grid-template-rows: auto 270px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(155deg,rgba(18,27,44,.88),rgba(8,13,24,.94)); box-shadow: 0 40px 90px rgba(0,0,0,.28); isolation: isolate; transition: transform 280ms ease,border-color 280ms ease; }
.game-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.2); }
.game-card-glow { position:absolute; z-index:-1; width:380px; height:380px; top:-180px; right:-100px; border-radius:50%; filter:blur(20px); opacity:.18; background:var(--cyan); }.game-card--dice .game-card-glow { background:var(--gold); }.game-card--poker .game-card-glow{background:var(--pink)}
.game-card-topline { display:flex; justify-content:space-between; align-items:center; padding:24px 26px 0; color:var(--muted-2); font-size:9px; font-weight:850; letter-spacing:.13em; }
.live-badge { padding:7px 10px; border:1px solid rgba(67,245,229,.28); border-radius:99px; color:var(--cyan); background:rgba(67,245,229,.06); }.live-badge--gold { color:var(--gold); border-color:rgba(255,200,87,.28); background:rgba(255,200,87,.06); }.live-badge--pink{color:var(--pink-soft);border-color:rgba(255,77,166,.3);background:rgba(255,77,166,.07)}
.game-card-art { position:relative; display:grid; place-items:center; perspective:900px; }
.game-card-art::before { content:""; position:absolute; width:72%; height:46%; bottom:15%; border:1px solid rgba(67,245,229,.16); border-radius:50%; transform:rotateX(62deg); background:radial-gradient(circle,rgba(67,245,229,.09),transparent 65%); }
.mini-card { position:absolute; width:126px; height:180px; padding:16px; border-radius:15px; color:#0a1320; background:linear-gradient(145deg,#fff,#dce7f2); box-shadow:0 28px 50px rgba(0,0,0,.38); font-family:Georgia,serif; font-size:36px; font-weight:800; }.mini-card i { display:block; margin-top:54px; text-align:right; font-style:normal; font-size:50px; }.mini-card.red { color:#d92c50; }.mini-card--a { transform:translateX(-45px) rotate(-12deg); }.mini-card--k { transform:translateX(44px) rotate(10deg); }
.mini-chip { position:absolute; z-index:4; right:23%; bottom:17%; display:grid; place-items:center; width:72px; height:72px; border-radius:50%; border:7px dashed #fff; color:#051511; background:var(--cyan); box-shadow:inset 0 0 0 5px #159c96,0 15px 30px rgba(0,0,0,.35),0 0 28px rgba(67,245,229,.22); font-weight:950; transform:rotate(18deg); }
.dice-art::before { border-color:rgba(255,200,87,.18); background:radial-gradient(circle,rgba(255,200,87,.08),transparent 65%); }
.art-die { position:absolute; width:125px; height:125px; display:grid; grid-template:repeat(3,1fr)/repeat(3,1fr); padding:17px; border-radius:22px; background:linear-gradient(145deg,#fff,#d5deea); box-shadow:0 28px 50px rgba(0,0,0,.4); }.art-die i { place-self:center; width:15px; height:15px; border-radius:50%; background:#111827; }.art-die--one { transform:translateX(-54px) rotate(-18deg); }.art-die--two { transform:translateX(56px) translateY(22px) rotate(15deg); background:linear-gradient(145deg,var(--gold-soft),#e59e32); }
.art-die--one i:nth-child(1){grid-area:1/1}.art-die--one i:nth-child(2){grid-area:1/3}.art-die--one i:nth-child(3){grid-area:2/1}.art-die--one i:nth-child(4){grid-area:2/3}.art-die--one i:nth-child(5){grid-area:3/1}.art-die--one i:nth-child(6){grid-area:3/3}
.art-die--two i:nth-child(1){grid-area:1/1}.art-die--two i:nth-child(2){grid-area:1/3}.art-die--two i:nth-child(3){grid-area:3/1}.art-die--two i:nth-child(4){grid-area:3/3}
.dice-ring { position:absolute; width:300px; height:300px; border:1px solid rgba(255,200,87,.12); border-radius:50%; animation:orbitSpin 18s linear infinite; }.dice-ring::after { content:""; position:absolute; width:8px;height:8px;top:20px;left:38px;border-radius:50%;background:var(--gold);box-shadow:0 0 20px var(--gold); }
.poker-art::before{border-color:rgba(255,77,166,.18);background:radial-gradient(circle,rgba(255,77,166,.08),transparent 65%)}.mini-card--poker-one{transform:translateX(-74px) rotate(-17deg)}.mini-card--poker-two{z-index:3;transform:translateY(-8px) rotate(2deg)}.mini-card--poker-three{transform:translateX(74px) rotate(15deg)}.poker-chip{position:absolute;z-index:5;right:16%;bottom:17%;display:grid;place-items:center;width:76px;height:76px;border-radius:50%;border:7px dashed rgba(255,255,255,.9);color:#170413;background:var(--pink-soft);box-shadow:inset 0 0 0 5px #a72468,0 16px 32px rgba(0,0,0,.35),0 0 30px rgba(255,77,166,.22);font-size:10px;font-weight:950;letter-spacing:.08em;transform:rotate(-12deg)}
.game-card-copy { padding:10px 38px 38px; display:flex; flex-direction:column; }.game-card-copy > span { color:var(--cyan); font-size:9px; font-weight:900; letter-spacing:.16em; }.game-card--dice .game-card-copy > span { color:var(--gold); }.game-card--poker .game-card-copy > span{color:var(--pink-soft)}.game-card-copy h3 { margin:8px 0 14px; font-size:clamp(42px,4vw,62px); line-height:1; letter-spacing:-.055em; }.game-card-copy p { margin:0; color:var(--muted); line-height:1.68; }.game-card-copy ul { display:grid; gap:8px; margin:24px 0 30px; padding:0; list-style:none; color:#b8c2d2; font-size:12px; }.game-card-copy li::before { content:"◆"; margin-right:9px; color:var(--cyan); font-size:7px; }.game-card--dice .game-card-copy li::before { color:var(--gold); }.game-card--poker .game-card-copy li::before{color:var(--pink-soft)}.game-card-copy .button { margin-top:auto; }

.how-section { display:grid; grid-template-columns:minmax(390px,.9fr) minmax(0,1.1fr); gap:clamp(60px,8vw,140px); align-items:center; background:linear-gradient(180deg,rgba(255,255,255,.018),transparent); }
.how-visual { position:relative; min-height:650px; display:grid; place-items:center; }
.how-visual::before { content:""; position:absolute; width:560px;height:560px;border-radius:50%;background:radial-gradient(circle,rgba(255,77,166,.14),transparent 66%);filter:blur(8px); }
.phone-frame { position:relative; z-index:2; width:285px; height:590px; padding:10px; border:1px solid rgba(255,255,255,.22); border-radius:46px; background:linear-gradient(145deg,#272f40,#070b13 70%); box-shadow:0 50px 100px rgba(0,0,0,.52),inset 0 0 0 2px rgba(255,255,255,.05); transform:rotate(-5deg); }
.phone-island { position:absolute; z-index:3; top:18px; left:50%; width:82px; height:23px; transform:translateX(-50%); border-radius:99px; background:#02040a; }
.phone-screen { height:100%; overflow:hidden; padding:55px 18px 20px; border-radius:37px; background:radial-gradient(circle at 50% 20%,rgba(67,245,229,.12),transparent 36%),linear-gradient(180deg,#0f1728,#070a12); }
.phone-header { display:flex; justify-content:space-between; color:var(--muted-2); font-size:8px; letter-spacing:.12em; }.phone-header span{color:var(--cyan);font-weight:900}.phone-score{display:grid;place-items:center;margin:54px 0 28px}.phone-score small{color:var(--muted-2);font-size:7px;letter-spacing:.17em}.phone-score strong{font-size:58px;line-height:1;letter-spacing:-.08em}.phone-score span{margin-top:8px;padding:5px 9px;border-radius:99px;color:var(--green);background:rgba(77,242,139,.08);font-size:8px;font-weight:900}.phone-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:7px;padding:17px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.025)}.phone-grid i{font-style:normal;font-size:20px;filter:saturate(.85)}.phone-share{margin-top:22px;padding:15px;border-radius:10px;color:#051511;background:var(--cyan);text-align:center;font-size:9px;font-weight:950;letter-spacing:.1em}.share-ping{position:absolute;z-index:3;display:flex;justify-content:space-between;gap:28px;min-width:185px;padding:14px 16px;border:1px solid var(--line-strong);border-radius:12px;background:rgba(15,22,38,.88);box-shadow:var(--shadow);color:var(--muted);font-size:8px;letter-spacing:.11em}.share-ping b{color:var(--cyan)}.share-ping--one{top:24%;right:0;animation:glassFloat 4.8s ease-in-out infinite}.share-ping--two{bottom:22%;left:0;animation:glassFloat 5.6s ease-in-out infinite reverse}.share-ping--two b{color:var(--pink-soft)}
.how-copy { max-width:740px; }.steps { display:grid; gap:0; margin-top:48px; border-top:1px solid var(--line); }.steps article { display:grid; grid-template-columns:70px 1fr; gap:20px; padding:25px 0; border-bottom:1px solid var(--line); }.steps article > strong { color:var(--cyan); font-family:ui-monospace,SFMono-Regular,monospace; font-size:11px; }.steps h3{margin:0 0 7px;font-size:19px}.steps p{margin:0;color:var(--muted);line-height:1.65}

.rankings-section { position:relative; }.rankings-section::before{content:"";position:absolute;inset:12% 15%;z-index:-1;background:radial-gradient(circle,rgba(67,245,229,.06),transparent 60%)}
.rankings-shell { max-width:1120px; margin:0 auto; overflow:hidden; border-radius:var(--radius-lg); }.rankings-tabs{display:flex;align-items:center;gap:8px;padding:18px 22px;border-bottom:1px solid var(--line)}.rankings-tabs button{padding:11px 16px;border:0;border-radius:9px;color:var(--muted);background:transparent;font-size:9px;font-weight:900;letter-spacing:.12em;cursor:pointer}.rankings-tabs button.active{color:#051411;background:var(--cyan)}.rankings-tabs > span{margin-left:auto;color:var(--muted-2);font-size:8px;letter-spacing:.15em}
.podium { display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:30px 30px 16px;align-items:end }.podium-card{position:relative;display:grid;place-items:center;gap:8px;padding:24px 18px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.022);text-align:center}.podium-card--one{padding-top:40px;border-color:rgba(67,245,229,.22);background:linear-gradient(180deg,rgba(67,245,229,.08),rgba(255,255,255,.02));transform:translateY(-10px)}.podium-rank{position:absolute;top:12px;left:14px;color:var(--muted-2);font-size:9px}.player-avatar{display:grid;place-items:center;width:48px;height:48px;border-radius:50%;color:#061512;background:linear-gradient(135deg,var(--cyan),#6ba6ff);font-size:13px;font-weight:950;box-shadow:0 0 24px rgba(67,245,229,.16)}.podium-card:nth-child(2) .player-avatar{background:linear-gradient(135deg,#cbd4e3,#76839a)}.podium-card:nth-child(3) .player-avatar{background:linear-gradient(135deg,var(--gold),#bc6e2f)}.podium-card h3{margin:3px 0 0;font-size:14px}.podium-card strong{font-size:25px;letter-spacing:-.04em}.podium-card small{color:var(--muted-2);font-size:8px;letter-spacing:.1em}
.leaderboard-table { padding:8px 30px 30px; }.leader-row{display:grid;grid-template-columns:60px minmax(0,1fr) 120px 100px;gap:16px;align-items:center;padding:15px 8px;border-bottom:1px solid rgba(255,255,255,.065)}.leader-row span{color:var(--muted-2);font-size:10px}.leader-row.is-user,.podium-card.is-user{border-color:rgba(67,245,229,.38);background:rgba(67,245,229,.055)}.leader-row.is-user .leader-player strong,.podium-card.is-user h3{color:var(--cyan-soft)}.leader-player{display:flex;align-items:center;gap:11px}.leader-player i{display:grid;place-items:center;width:31px;height:31px;border-radius:9px;color:var(--cyan);background:rgba(67,245,229,.07);font-style:normal;font-size:9px;font-weight:900}.leader-player strong{font-size:12px}.leader-score{text-align:right;font-size:14px!important;font-weight:900;color:var(--ink)!important}.leader-tier{text-align:right;font-size:8px!important;letter-spacing:.08em}.rankings-note{display:flex;align-items:center;gap:12px;padding:15px 30px;border-top:1px solid var(--line);color:var(--muted-2);background:rgba(255,255,255,.018);font-size:9px}.rankings-note>span{color:var(--gold)}.rankings-note p{margin:0;line-height:1.45}.rankings-note .text-link{margin:0 0 0 auto;white-space:nowrap}

.proof-section { padding-top:40px; }.proof-card { position:relative; display:grid;grid-template-columns:minmax(0,1fr) minmax(430px,.9fr);gap:70px;align-items:center;overflow:hidden;padding:clamp(42px,6vw,90px);border:1px solid var(--line);border-radius:var(--radius-lg);background:linear-gradient(135deg,rgba(18,27,45,.86),rgba(7,11,20,.96));}.proof-card::before{content:"";position:absolute;width:430px;height:430px;right:-100px;bottom:-180px;border-radius:50%;background:radial-gradient(circle,rgba(67,245,229,.11),transparent 66%)}.proof-copy p{max-width:650px;color:var(--muted);line-height:1.75}.text-link{display:inline-flex;align-items:center;gap:10px;margin-top:22px;padding:0 0 8px;border:0;border-bottom:1px solid rgba(67,245,229,.35);color:var(--cyan);background:none;font-size:9px;font-weight:900;letter-spacing:.13em;cursor:pointer}.proof-terminal{position:relative;z-index:1;overflow:hidden;border:1px solid rgba(255,255,255,.13);border-radius:16px;background:#060913;box-shadow:0 35px 80px rgba(0,0,0,.42);transform:rotate(1.5deg)}.terminal-bar{display:flex;align-items:center;gap:7px;padding:13px 16px;border-bottom:1px solid var(--line);background:rgba(255,255,255,.025)}.terminal-bar i{width:8px;height:8px;border-radius:50%;background:#ff6678}.terminal-bar i:nth-child(2){background:var(--gold)}.terminal-bar i:nth-child(3){background:var(--green)}.terminal-bar span{margin-left:8px;color:var(--muted-2);font-family:ui-monospace,monospace;font-size:8px}.proof-terminal pre{margin:0;padding:30px;overflow:auto;color:#c8d2e4;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:13px;line-height:1.9}.proof-terminal b{color:var(--pink-soft);font-weight:500}.proof-terminal em{color:var(--gold-soft);font-style:normal}.proof-terminal strong{color:var(--green);font-weight:700}

.ad-section { padding:30px clamp(24px,7vw,120px) 70px; }.ad-slot{min-height:150px;display:grid;place-items:center;align-content:center;gap:7px;padding:24px;border:1px dashed rgba(255,255,255,.14);border-radius:16px;color:var(--muted-2);background:rgba(255,255,255,.012);text-align:center}.ad-slot span{font-size:7px;letter-spacing:.22em}.ad-slot strong{color:var(--muted);font-size:12px}.ad-slot small{max-width:560px;font-size:9px;line-height:1.5}

.pro-section { position:relative;display:grid;grid-template-columns:minmax(0,.9fr) minmax(450px,1.1fr);gap:80px;align-items:center;overflow:hidden;margin:0 clamp(18px,3vw,48px) 70px;padding:clamp(55px,7vw,100px);border-radius:var(--radius-lg);background:linear-gradient(135deg,#421552,#14255a 50%,#0b4b52);box-shadow:0 50px 120px rgba(0,0,0,.36)}.pro-glow{position:absolute;width:620px;height:620px;left:-280px;top:-280px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.18),transparent 66%)}.pro-copy,.pro-features{position:relative;z-index:1}.pro-kicker{color:#fff}.pro-copy p{max-width:620px;color:rgba(255,255,255,.72);line-height:1.75}.pro-price{display:flex;align-items:center;gap:12px;margin:28px 0}.pro-price>strong{font-size:45px;letter-spacing:-.06em}.pro-price>span{color:rgba(255,255,255,.72);font-size:11px;line-height:1.25}.pro-price small{font-size:8px;letter-spacing:.05em}.pro-features{display:grid;grid-template-columns:repeat(2,1fr);gap:13px}.pro-features article{display:grid;grid-template-columns:38px 1fr;gap:12px;padding:22px;border:1px solid rgba(255,255,255,.14);border-radius:15px;background:rgba(5,8,18,.18);backdrop-filter:blur(12px)}.pro-features i{display:grid;place-items:center;width:34px;height:34px;border-radius:10px;color:#051411;background:#fff;font-style:normal;font-weight:950}.pro-features h3{margin:0 0 6px;font-size:13px}.pro-features p{margin:0;color:rgba(255,255,255,.64);font-size:11px;line-height:1.55}

.site-footer { display:grid;grid-template-columns:auto 1fr;gap:28px 60px;align-items:center;padding:45px clamp(24px,6vw,100px);border-top:1px solid var(--line);background:#060910}.footer-brand{display:flex;align-items:center;gap:15px}.footer-brand strong{font-size:12px;letter-spacing:.14em}.footer-brand p{margin:4px 0 0;color:var(--muted-2);font-size:9px}.footer-links{display:flex;justify-content:flex-end;gap:28px}.footer-links a{color:var(--muted);font-size:10px;text-decoration:none}.footer-links a:hover{color:var(--cyan)}.footer-disclosure{grid-column:1/-1;margin:0;padding-top:22px;border-top:1px solid var(--line);color:var(--muted-2);font-size:9px;line-height:1.6}

/* Game shell */
.game-view { position:fixed;z-index:200;inset:0;display:grid;grid-template-rows:70px 1fr;background:radial-gradient(circle at 50% 40%,rgba(18,78,79,.16),transparent 45%),#060910; }
.game-header { position:relative;z-index:5;display:grid;grid-template-columns:220px 1fr 220px;align-items:center;gap:20px;padding:0 22px;border-bottom:1px solid var(--line);background:rgba(7,10,18,.92);backdrop-filter:blur(22px) }.game-header-actions{display:flex;justify-content:flex-end;gap:10px}.game-hud{display:flex;justify-content:center;gap:8px}.hud-stat{min-width:112px;display:grid;gap:2px;padding:9px 13px;border:1px solid var(--line);border-radius:10px;background:rgba(255,255,255,.022);text-align:center}.hud-stat span{color:var(--muted-2);font-size:7px;font-weight:850;letter-spacing:.14em}.hud-stat strong{font-size:13px;font-variant-numeric:tabular-nums}.hud-stat--bankroll strong{color:var(--cyan)}
.game-layout{min-height:0;display:grid;grid-template-columns:230px minmax(0,1fr) 230px;gap:14px;padding:14px}.game-sidebar{min-height:0;display:flex;flex-direction:column;gap:12px;overflow:auto}.side-card{padding:16px;border:1px solid var(--line);border-radius:15px;background:linear-gradient(145deg,rgba(17,25,42,.8),rgba(9,14,25,.7));box-shadow:0 18px 45px rgba(0,0,0,.16)}.side-card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}.side-card-header span,.side-card>span{color:var(--muted-2);font-size:7px;font-weight:900;letter-spacing:.14em}.side-card-header strong{font-size:9px}.proof-value{display:block;margin-top:8px;color:var(--cyan)!important;font-family:ui-monospace,monospace;font-size:10px!important;letter-spacing:.08em!important;word-break:break-all}.rank-preview{display:grid;place-items:center;padding:12px 0}.rank-preview strong{font-size:42px;letter-spacing:-.08em}.rank-preview span{color:var(--muted-2);font-size:8px}.side-metric{display:flex;justify-content:space-between;padding:10px 0;border-top:1px solid var(--line);font-size:10px}.side-metric span{color:var(--muted-2)}.outcome-rail{display:grid;grid-template-columns:repeat(5,1fr);gap:5px}.outcome-dot{display:grid;place-items:center;aspect-ratio:1;border-radius:7px;background:rgba(255,255,255,.035);font-size:11px}.side-card p{margin:8px 0 0;color:var(--muted);font-size:10px;line-height:1.55}.side-card .text-link{margin-top:14px}.key-list{display:grid;gap:7px}.key-row{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:9px}.key-row kbd{min-width:28px;padding:4px 6px;border:1px solid var(--line-strong);border-radius:6px;color:var(--ink);background:rgba(255,255,255,.04);font-family:ui-monospace,monospace;text-align:center}
.table-shell{position:relative;min-width:0;min-height:0;overflow:hidden;border:1px solid rgba(255,255,255,.11);border-radius:22px;background:#082d31;box-shadow:inset 0 0 100px rgba(0,0,0,.52),0 28px 80px rgba(0,0,0,.3)}.table-shell::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 50% 46%,rgba(67,245,229,.11),transparent 35%),linear-gradient(125deg,rgba(255,255,255,.025),transparent 45%)}.table-shell::after{content:"";position:absolute;inset:22px;border:1px solid rgba(255,255,255,.11);border-radius:40% 40% 24px 24px;pointer-events:none}.casino-table{position:relative;z-index:1;height:100%;min-height:620px;display:grid;grid-template-rows:1fr auto 1.18fr auto;padding:32px 34px 26px}.table-zone{display:grid;place-items:center;align-content:center;gap:10px;min-height:0}.zone-label{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.5);font-size:8px;font-weight:900;letter-spacing:.18em}.zone-label strong{color:var(--ink);font-size:11px;letter-spacing:.05em}.card-row{display:flex;justify-content:center;align-items:center;min-height:150px;padding-left:28px}.playing-card{position:relative;width:92px;height:132px;margin-left:-28px;padding:10px;border-radius:11px;color:#101727;background:linear-gradient(145deg,#fff,#dce6f0);border:1px solid rgba(255,255,255,.72);box-shadow:0 14px 28px rgba(0,0,0,.32);font-family:Georgia,serif;animation:dealCard 300ms cubic-bezier(.2,.8,.2,1) both}.playing-card:first-child{margin-left:0}.playing-card--red{color:#d62c4e}.playing-card--back{display:grid;place-items:center;color:var(--cyan);background:repeating-linear-gradient(45deg,#111a2c,#111a2c 5px,#1e2f4f 5px,#1e2f4f 10px);border:3px solid #e5ecf5;box-shadow:inset 0 0 0 3px #111a2c,0 14px 28px rgba(0,0,0,.32)}.playing-card--back::after{content:"DD";display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(67,245,229,.55);border-radius:50%;font-family:ui-sans-serif,sans-serif;font-size:13px;font-weight:900}.card-rank{display:block;font-size:24px;font-weight:800;line-height:.9}.card-suit{position:absolute;right:10px;bottom:8px;font-size:35px}.table-status{display:grid;place-items:center;gap:5px;min-height:64px;text-align:center}.table-status strong{font-size:19px}.table-status span{color:rgba(255,255,255,.55);font-size:9px;letter-spacing:.07em}.status-pill{display:inline-flex;align-items:center;gap:7px;padding:6px 9px;border:1px solid rgba(255,255,255,.12);border-radius:99px;color:var(--cyan);background:rgba(7,10,18,.26);font-size:7px;font-weight:900;letter-spacing:.12em}.player-hands{display:flex;justify-content:center;align-items:center;gap:30px;min-width:0}.player-hand{position:relative;min-width:180px;padding:14px;border:1px solid transparent;border-radius:16px;transition:border-color 160ms ease,background 160ms ease}.player-hand.active{border-color:rgba(67,245,229,.25);background:rgba(67,245,229,.045)}.hand-chip{position:absolute;right:9px;top:9px;padding:5px 8px;border-radius:99px;color:#051411;background:var(--cyan);font-size:8px;font-weight:950}.hand-total{display:block;margin-top:7px;color:rgba(255,255,255,.65);font-size:9px;text-align:center}.table-controls{position:relative;z-index:2;display:grid;gap:12px;padding-top:14px;border-top:1px solid rgba(255,255,255,.1)}.wager-strip{display:flex;justify-content:center;align-items:center;gap:10px}.wager-strip>span{color:rgba(255,255,255,.48);font-size:8px;letter-spacing:.13em}.chip-button{display:grid;place-items:center;width:50px;height:50px;border:5px dashed rgba(255,255,255,.86);border-radius:50%;color:#06120f;background:#1dbeb5;box-shadow:inset 0 0 0 4px #087d78,0 8px 18px rgba(0,0,0,.28);font-size:10px;font-weight:950;cursor:pointer;transition:transform 150ms ease,filter 150ms ease}.chip-button:nth-of-type(2){background:#4b78e6;box-shadow:inset 0 0 0 4px #294d9e,0 8px 18px rgba(0,0,0,.28)}.chip-button:nth-of-type(3){background:#df397f;box-shadow:inset 0 0 0 4px #92234f,0 8px 18px rgba(0,0,0,.28)}.chip-button:nth-of-type(4){background:#e6a438;box-shadow:inset 0 0 0 4px #96641e,0 8px 18px rgba(0,0,0,.28)}.chip-button:hover,.chip-button.active{transform:translateY(-5px);filter:brightness(1.12)}.chip-button.active{outline:2px solid #fff;outline-offset:3px}.action-row{display:flex;justify-content:center;gap:8px}.game-action{min-width:105px;min-height:48px;padding:0 16px;border:1px solid rgba(255,255,255,.16);border-radius:10px;color:var(--ink);background:rgba(7,10,18,.38);font-size:9px;font-weight:900;letter-spacing:.1em;text-transform:uppercase;cursor:pointer;transition:transform 150ms ease,border-color 150ms ease,background 150ms ease}.game-action:hover,.game-action:focus-visible{transform:translateY(-2px);border-color:rgba(67,245,229,.45);background:rgba(67,245,229,.08)}.game-action--primary{color:#041411;background:var(--cyan);border-color:transparent}.game-action--danger:hover{border-color:rgba(255,91,110,.5);background:rgba(255,91,110,.08)}.game-action:disabled{opacity:.35;cursor:not-allowed;transform:none}.mobile-action-dock{display:none}
.table-status--win strong{color:var(--green);text-shadow:0 0 18px rgba(77,242,139,.25)}.table-status--loss strong{color:var(--red);text-shadow:0 0 18px rgba(255,91,110,.22)}.table-status--push strong{color:var(--gold-soft)}.player-hand--win{border-color:rgba(77,242,139,.26);background:rgba(77,242,139,.045)}.player-hand--loss,.player-hand--bust{border-color:rgba(255,91,110,.24);background:rgba(255,91,110,.04)}.player-hand--push{border-color:rgba(255,200,87,.26);background:rgba(255,200,87,.045)}

/* Dice table */
.dice-table{position:relative;z-index:1;height:100%;min-height:620px;display:grid;grid-template-rows:auto 1fr auto;padding:28px 32px 24px}.dice-board-head{display:flex;justify-content:space-between;align-items:center;padding:0 10px}.dice-board-head>div{display:grid;gap:4px}.dice-board-head span{color:rgba(255,255,255,.48);font-size:8px;font-weight:900;letter-spacing:.14em}.dice-board-head strong{font-size:17px}.point-puck{display:grid;place-items:center;width:60px;height:60px;border-radius:50%;border:7px solid rgba(255,255,255,.88);color:#07100e;background:var(--gold);box-shadow:0 0 25px rgba(255,200,87,.22);font-size:8px;font-weight:950}.point-puck.off{color:rgba(255,255,255,.7);background:#172134;border-color:#68758b;box-shadow:none}.dice-center{display:grid;place-items:center;align-content:center;gap:22px}.dice-pair{display:flex;gap:22px;min-height:155px;align-items:center}.table-die{width:130px;height:130px;display:grid;grid-template:repeat(3,1fr)/repeat(3,1fr);padding:18px;border-radius:24px;background:linear-gradient(145deg,#fff,#d7e1ed);box-shadow:0 26px 50px rgba(0,0,0,.42);transform:rotate(-6deg);animation:diceLand 480ms cubic-bezier(.16,.9,.25,1) both}.table-die:nth-child(2){transform:rotate(8deg);background:linear-gradient(145deg,var(--gold-soft),#f0a83a)}.table-die i{display:none;place-self:center;width:16px;height:16px;border-radius:50%;background:#111827}.table-die[data-value="1"] i:nth-child(5),.table-die[data-value="2"] i:nth-child(1),.table-die[data-value="2"] i:nth-child(9),.table-die[data-value="3"] i:nth-child(1),.table-die[data-value="3"] i:nth-child(5),.table-die[data-value="3"] i:nth-child(9),.table-die[data-value="4"] i:nth-child(1),.table-die[data-value="4"] i:nth-child(3),.table-die[data-value="4"] i:nth-child(7),.table-die[data-value="4"] i:nth-child(9),.table-die[data-value="5"] i:nth-child(1),.table-die[data-value="5"] i:nth-child(3),.table-die[data-value="5"] i:nth-child(5),.table-die[data-value="5"] i:nth-child(7),.table-die[data-value="5"] i:nth-child(9),.table-die[data-value="6"] i:nth-child(1),.table-die[data-value="6"] i:nth-child(3),.table-die[data-value="6"] i:nth-child(4),.table-die[data-value="6"] i:nth-child(6),.table-die[data-value="6"] i:nth-child(7),.table-die[data-value="6"] i:nth-child(9){display:block}.roll-total{display:grid;place-items:center;gap:3px}.roll-total strong{font-size:44px;line-height:1;letter-spacing:-.08em}.roll-total span{color:rgba(255,255,255,.5);font-size:8px;letter-spacing:.16em}.dice-controls{display:grid;gap:13px;padding-top:16px;border-top:1px solid rgba(255,255,255,.1)}.bet-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:7px}.bet-option{min-height:58px;display:grid;place-items:center;gap:3px;padding:8px;border:1px solid rgba(255,255,255,.13);border-radius:10px;color:var(--ink);background:rgba(7,10,18,.32);cursor:pointer}.bet-option strong{font-size:9px;letter-spacing:.08em}.bet-option span{color:rgba(255,255,255,.45);font-size:7px}.bet-option.active{border-color:var(--gold);background:rgba(255,200,87,.1);box-shadow:0 0 22px rgba(255,200,87,.08)}.bet-option:disabled{opacity:.28;cursor:not-allowed}.dice-wager-row{display:flex;justify-content:center;align-items:center;gap:10px}.dice-wager-value{min-width:90px;text-align:center}.dice-wager-value span{display:block;color:rgba(255,255,255,.45);font-size:7px;letter-spacing:.12em}.dice-wager-value strong{font-size:18px}.wager-adjust{width:38px;height:38px;border:1px solid rgba(255,255,255,.15);border-radius:9px;color:var(--ink);background:rgba(7,10,18,.38);font-size:17px;cursor:pointer}.roll-button{min-width:180px}
.roll-history{display:flex;flex-wrap:wrap;gap:5px}.roll-history i{display:grid;place-items:center;width:29px;height:29px;border-radius:7px;background:rgba(255,255,255,.035);color:var(--muted);font-style:normal;font-size:9px}.roll-history i.win{color:var(--green);background:rgba(77,242,139,.07)}.roll-history i.loss{color:var(--red);background:rgba(255,91,110,.07)}.roll-history i.point,.roll-history i.push{color:var(--gold);background:rgba(255,200,87,.07)}.roll-history i.watch{color:var(--muted);background:rgba(255,255,255,.035)}
.dice-state-grid{width:min(720px,100%);display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.dice-state-card{min-height:74px;display:grid;align-content:center;gap:4px;padding:12px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(7,10,18,.28);text-align:center}.dice-state-card span{color:rgba(255,255,255,.48);font-size:7px;font-weight:900;letter-spacing:.14em}.dice-state-card strong{font-size:13px}.dice-state-card small{color:rgba(255,255,255,.52);font-size:8px;line-height:1.35}.dice-message{max-width:min(760px,100%);padding:10px 14px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:rgba(7,10,18,.26);color:rgba(255,255,255,.74);font-size:12px;font-weight:800;text-align:center;line-height:1.35}.dice-message--win{color:var(--green);border-color:rgba(77,242,139,.24);background:rgba(77,242,139,.055)}.dice-message--loss{color:var(--red);border-color:rgba(255,91,110,.24);background:rgba(255,91,110,.055)}.dice-message--push{color:var(--gold-soft);border-color:rgba(255,200,87,.22);background:rgba(255,200,87,.05)}

/* Video poker */
.poker-table{position:relative;z-index:1;height:100%;min-height:620px;min-width:0;display:grid;grid-template-rows:auto 1fr auto;padding:28px 32px 24px;overflow:hidden}.poker-board-head{display:flex;justify-content:space-between;align-items:center;gap:14px;min-width:0;padding:0 10px}.poker-board-head>div:first-child{min-width:0;display:grid;gap:4px}.poker-board-head span{color:rgba(255,255,255,.48);font-size:8px;font-weight:900;letter-spacing:.14em}.poker-board-head strong{font-size:17px;line-height:1.25}.poker-hand-count{display:grid;place-items:center;flex:none;width:64px;height:64px;border:1px solid rgba(255,77,166,.28);border-radius:14px;color:var(--pink-soft);background:rgba(255,77,166,.06);font-size:24px;font-weight:950;letter-spacing:-.05em}.poker-hand-count span{font-size:8px;color:rgba(255,255,255,.56);letter-spacing:.08em}.poker-center{min-width:0;display:grid;place-items:center;align-content:center;gap:20px}.poker-card-row{display:flex;justify-content:center;align-items:center;gap:10px;width:min(100%,620px);min-width:0;min-height:170px}.poker-card-slot{position:relative;display:grid;place-items:center;min-width:0;padding:0;border:0;background:transparent;cursor:default}.poker-card-slot .playing-card{margin-left:0}.poker-card-label{position:absolute;left:50%;bottom:-7px;transform:translateX(-50%);padding:5px 8px;border-radius:99px;color:#190414;background:var(--pink-soft);box-shadow:0 8px 18px rgba(0,0,0,.24);font-size:7px;font-weight:950;letter-spacing:.12em}.poker-card-slot[type="button"]{cursor:pointer}.poker-card-slot[type="button"]:hover .playing-card,.poker-card-slot[type="button"]:focus-visible .playing-card{transform:translateY(-6px)}.poker-card-slot.held .playing-card{box-shadow:0 0 0 3px var(--pink-soft),0 16px 32px rgba(0,0,0,.34)}.poker-wager-strip{width:min(430px,100%);padding:8px 10px;border:1px solid rgba(255,255,255,.1);border-radius:14px;background:rgba(7,10,18,.22)}.poker-wager-strip::before{content:"WAGER";color:rgba(255,255,255,.48);font-size:8px;font-weight:900;letter-spacing:.13em}.poker-paytable{width:min(760px,100%);min-width:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.poker-paytable div{min-width:0;display:flex;justify-content:space-between;gap:10px;padding:8px 10px;border:1px solid rgba(255,255,255,.1);border-radius:9px;background:rgba(7,10,18,.24)}.poker-paytable span,.poker-paytable strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.poker-paytable span{color:rgba(255,255,255,.54);font-size:7px;font-weight:900;letter-spacing:.11em}.poker-paytable strong{color:var(--pink-soft);font-size:8px;letter-spacing:.05em}

/* Lobby and retention */
.lobby-section{padding-top:90px}.continue-panel{margin-bottom:26px}.panel-heading{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:13px}.panel-heading span{color:var(--muted-2);font-size:8px;font-weight:950;letter-spacing:.15em}.panel-heading strong{color:var(--cyan-soft);font-size:10px;letter-spacing:.1em}.continue-rail,.lobby-carousel{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,1fr);gap:12px;overflow-x:auto;overscroll-behavior-inline:contain;padding-bottom:8px;scroll-snap-type:x proximity;scrollbar-width:none}.continue-rail::-webkit-scrollbar,.lobby-carousel::-webkit-scrollbar{display:none}.continue-card,.lobby-tile{position:relative;min-height:172px;display:grid;align-content:space-between;gap:14px;padding:18px;border:1px solid var(--line);border-radius:14px;background:linear-gradient(145deg,rgba(17,27,45,.88),rgba(8,13,24,.92));box-shadow:0 20px 55px rgba(0,0,0,.18);scroll-snap-align:start;overflow:hidden}.continue-card::before,.lobby-tile::before{content:"";position:absolute;inset:auto -20% -45% 18%;height:150px;border-radius:50%;background:radial-gradient(circle,rgba(67,245,229,.13),transparent 67%);pointer-events:none}.continue-card span,.lobby-tile span{color:var(--muted-2);font-size:7px;font-weight:900;letter-spacing:.15em}.continue-card strong,.lobby-tile strong{font-size:22px;letter-spacing:-.04em}.continue-card small,.lobby-tile small{color:var(--muted);font-size:10px}.lobby-tile{border-radius:12px;color:var(--ink);text-align:left;cursor:pointer}.lobby-tile em{color:rgba(255,255,255,.62);font-size:11px;line-height:1.45;font-style:normal}.lobby-tile--mines::before{background:radial-gradient(circle,rgba(77,242,139,.16),transparent 67%)}.lobby-tile--roulette::before{background:radial-gradient(circle,rgba(255,91,110,.17),transparent 67%)}.lobby-row{margin-top:20px}.mini-progress{height:5px;overflow:hidden;border-radius:99px;background:rgba(255,255,255,.08)}.mini-progress i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--cyan),var(--pink));box-shadow:0 0 14px rgba(67,245,229,.32)}.engagement-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:26px}.mission-panel,.vip-panel,.results-panel,.race-panel,.rooms-panel{padding:18px;border-radius:16px}.mission-grid{display:grid;gap:9px}.mission-card{display:grid;gap:9px;padding:12px;border:1px solid rgba(255,255,255,.09);border-radius:11px;background:rgba(7,10,18,.28)}.mission-card div:first-child{display:flex;align-items:center;justify-content:space-between;gap:10px}.mission-card strong{font-size:11px}.mission-card span{color:var(--muted-2);font-size:9px}.mission-card.complete{border-color:rgba(77,242,139,.26);background:rgba(77,242,139,.045)}.vip-orb{width:86px;height:86px;display:grid;place-items:center;align-content:center;margin:4px auto 16px;border:1px solid rgba(255,77,166,.36);border-radius:50%;background:radial-gradient(circle,rgba(255,77,166,.22),rgba(67,245,229,.06));box-shadow:0 0 30px rgba(255,77,166,.13)}.vip-orb strong{font-size:32px}.vip-orb span{color:var(--muted);font-size:8px;font-weight:900;letter-spacing:.12em}.vip-panel p,.rooms-panel p,.empty-feed{color:var(--muted);font-size:11px;line-height:1.55}.results-feed{display:grid;gap:8px;max-height:314px;overflow:auto}.result-feed-row{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:10px;padding:11px;border:1px solid rgba(255,255,255,.09);border-radius:11px;background:rgba(7,10,18,.26)}.result-feed-row span{color:var(--muted-2);font-size:7px;font-weight:900;letter-spacing:.14em}.result-feed-row strong{display:block;margin-top:3px;font-size:10px;line-height:1.35}.result-feed-row small{font-size:10px;font-weight:900}.result-feed-row.win small{color:var(--green)}.result-feed-row.loss small{color:var(--red)}.race-row{display:grid;grid-template-columns:36px 1fr auto;align-items:center;gap:10px;padding:11px 0;border-top:1px solid var(--line)}.race-row span{color:var(--muted-2);font-size:10px}.race-row strong{font-size:12px}.race-row em{color:var(--gold-soft);font-style:normal;font-size:11px;font-weight:900}.room-code{display:grid;gap:5px;margin:16px 0;padding:14px;border:1px solid rgba(67,245,229,.18);border-radius:12px;background:rgba(67,245,229,.055)}.room-code span{color:var(--muted-2);font-size:8px;font-weight:900;letter-spacing:.14em}.room-code strong{color:var(--cyan-soft);font-family:ui-monospace,monospace;letter-spacing:.1em}.game-card--mines .game-card-glow{background:radial-gradient(circle,rgba(77,242,139,.24),transparent 66%)}.game-card--roulette .game-card-glow{background:radial-gradient(circle,rgba(255,91,110,.24),transparent 66%)}.mines-art,.roulette-art{display:grid;place-items:center}.mine-preview{display:grid;grid-template-columns:repeat(3,54px);gap:9px;transform:rotate(-8deg)}.mine-preview i{display:grid;place-items:center;width:54px;height:54px;border-radius:11px;background:rgba(7,10,18,.48);border:1px solid rgba(255,255,255,.12);color:var(--green);font-style:normal;font-size:20px;box-shadow:inset 0 0 18px rgba(67,245,229,.06)}.mine-preview i:nth-child(5){color:var(--red);background:rgba(255,91,110,.12)}.roulette-preview{display:grid;place-items:center;align-content:center;width:190px;height:190px;border:14px solid #111827;border-radius:50%;background:conic-gradient(#ca2641 0 10deg,#101827 10deg 20deg,#ca2641 20deg 30deg,#101827 30deg 40deg,#0c8f66 40deg 50deg,#101827 50deg 60deg,#ca2641 60deg 70deg,#101827 70deg 80deg,#ca2641 80deg 90deg,#101827 90deg 100deg,#ca2641 100deg 110deg,#101827 110deg 120deg,#ca2641 120deg 130deg,#101827 130deg 140deg,#ca2641 140deg 150deg,#101827 150deg 160deg,#ca2641 160deg 170deg,#101827 170deg 180deg,#ca2641 180deg 190deg,#101827 190deg 200deg,#ca2641 200deg 210deg,#101827 210deg 220deg,#ca2641 220deg 230deg,#101827 230deg 240deg,#ca2641 240deg 250deg,#101827 250deg 260deg,#ca2641 260deg 270deg,#101827 270deg 280deg,#ca2641 280deg 290deg,#101827 290deg 300deg,#ca2641 300deg 310deg,#101827 310deg 320deg,#ca2641 320deg 330deg,#101827 330deg 340deg,#ca2641 340deg 350deg,#101827 350deg 360deg);box-shadow:0 24px 60px rgba(0,0,0,.42),inset 0 0 0 18px rgba(255,255,255,.08)}.roulette-preview strong{display:grid;place-items:center;width:86px;height:86px;border-radius:50%;background:#f6f8ff;color:#bc1f38;font-size:44px}.roulette-preview span{margin-top:8px;color:#fff;font-size:10px;font-weight:900;letter-spacing:.16em}

/* Mines and roulette tables */
.mines-table,.roulette-table{position:relative;z-index:1;height:100%;min-height:620px;display:grid;grid-template-rows:auto 1fr auto;padding:28px 32px 24px;overflow:hidden}.mines-board-head,.roulette-board-head{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:0 10px}.mines-board-head>div:first-child,.roulette-board-head>div:first-child{min-width:0;display:grid;gap:4px}.mines-board-head span,.roulette-board-head span{color:rgba(255,255,255,.48);font-size:8px;font-weight:900;letter-spacing:.14em}.mines-board-head strong,.roulette-board-head strong{font-size:17px;line-height:1.25}.mines-count,.roulette-spin-count{display:grid;place-items:center;flex:none;width:64px;height:64px;border:1px solid rgba(77,242,139,.28);border-radius:14px;color:var(--green);background:rgba(77,242,139,.06);font-size:24px;font-weight:950;letter-spacing:-.05em}.roulette-spin-count{border-color:rgba(255,91,110,.32);color:var(--red);background:rgba(255,91,110,.06)}.mines-count span,.roulette-spin-count span{font-size:8px;color:rgba(255,255,255,.56);letter-spacing:.08em}.mines-center,.roulette-center{display:grid;place-items:center;align-content:center;gap:18px}.mines-grid{width:min(540px,100%);display:grid;grid-template-columns:repeat(5,1fr);gap:9px}.mine-tile{display:grid;place-items:center;aspect-ratio:1;border:1px solid rgba(255,255,255,.12);border-radius:12px;color:var(--ink);background:linear-gradient(145deg,rgba(17,27,45,.92),rgba(8,13,24,.9));box-shadow:inset 0 0 24px rgba(67,245,229,.035),0 10px 22px rgba(0,0,0,.22);font-size:24px;font-weight:950;cursor:default;transition:transform 140ms ease,border-color 140ms ease,background 140ms ease}.mine-tile[type="button"]{cursor:pointer}.mine-tile[type="button"]:hover,.mine-tile[type="button"]:focus-visible{transform:translateY(-3px);border-color:rgba(77,242,139,.34);background:rgba(77,242,139,.08)}.mine-tile.safe{color:var(--green);border-color:rgba(77,242,139,.34);background:rgba(77,242,139,.09);animation:tilePop 220ms ease both}.mine-tile.mine{color:var(--red);border-color:rgba(255,91,110,.28);background:rgba(255,91,110,.08)}.mine-tile.exploded{box-shadow:0 0 0 3px rgba(255,91,110,.42),0 16px 34px rgba(0,0,0,.3)}.mines-wager-strip{justify-self:center;flex-wrap:wrap}.roulette-wheel{position:relative;width:220px;height:220px;display:grid;place-items:center;align-content:center;border:12px solid #111827;border-radius:50%;background:conic-gradient(#c9203f 0 10deg,#111827 10deg 20deg,#c9203f 20deg 30deg,#111827 30deg 40deg,#0c8f66 40deg 50deg,#111827 50deg 60deg,#c9203f 60deg 70deg,#111827 70deg 80deg,#c9203f 80deg 90deg,#111827 90deg 100deg,#c9203f 100deg 110deg,#111827 110deg 120deg,#c9203f 120deg 130deg,#111827 130deg 140deg,#c9203f 140deg 150deg,#111827 150deg 160deg,#c9203f 160deg 170deg,#111827 170deg 180deg,#c9203f 180deg 190deg,#111827 190deg 200deg,#c9203f 200deg 210deg,#111827 210deg 220deg,#c9203f 220deg 230deg,#111827 230deg 240deg,#c9203f 240deg 250deg,#111827 250deg 260deg,#c9203f 260deg 270deg,#111827 270deg 280deg,#c9203f 280deg 290deg,#111827 290deg 300deg,#c9203f 300deg 310deg,#111827 310deg 320deg,#c9203f 320deg 330deg,#111827 330deg 340deg,#c9203f 340deg 350deg,#111827 350deg 360deg);box-shadow:0 28px 70px rgba(0,0,0,.4),inset 0 0 0 22px rgba(255,255,255,.07);animation:wheelPulse 520ms ease both}.roulette-wheel-ring{position:absolute;inset:28px;border:1px dashed rgba(255,255,255,.18);border-radius:50%;pointer-events:none}.roulette-wheel strong{position:relative;z-index:1;display:grid;place-items:center;width:92px;height:92px;border-radius:50%;color:#101727;background:#f6f8ff;font-size:42px}.roulette-wheel.red strong{color:#c9203f}.roulette-wheel.black strong{color:#101827}.roulette-wheel.green strong{color:#0a7f5d}.roulette-wheel span{position:relative;z-index:1;margin-top:8px;color:#fff;font-size:9px;font-weight:900;letter-spacing:.16em;text-shadow:0 2px 8px rgba(0,0,0,.5)}.roulette-history{display:flex;justify-content:center;gap:6px;flex-wrap:wrap}.roulette-history i{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;font-style:normal;font-size:10px;font-weight:950;color:#fff;background:#111827}.roulette-history i.red{background:#c9203f}.roulette-history i.black{background:#111827;border:1px solid rgba(255,255,255,.16)}.roulette-history i.green{background:#0c8f66}.roulette-bet-grid{width:min(760px,100%);display:grid;grid-template-columns:repeat(5,1fr);gap:7px}.roulette-wager-row{justify-content:center}.result-emoji-grid.dice{grid-template-columns:repeat(10,1fr)}.result-emoji-grid.mines{grid-template-columns:repeat(4,1fr)}.result-emoji-grid.roulette{grid-template-columns:repeat(5,1fr)}

/* Stake-style lobby and action consoles */
.lobby-section--first{min-height:calc(100vh - var(--header-height));padding-top:calc(var(--header-height) + 6px);padding-bottom:34px}.lobby-section--first .section-heading{grid-template-columns:minmax(0,.72fr) minmax(340px,1.28fr);gap:24px;margin-bottom:16px}.lobby-section--first .section-heading h2{margin-top:8px;font-size:clamp(30px,3.45vw,50px)}.lobby-section--first .section-heading>p{max-width:760px;font-size:14px}.lobby-section--first .continue-panel{margin-bottom:12px}.lobby-section--first .lobby-row{margin-top:12px}.lobby-section--first .continue-rail{grid-auto-columns:minmax(205px,18vw)}.lobby-section--first .lobby-carousel{grid-auto-columns:minmax(198px,18vw)}.lobby-section--first .continue-card,.lobby-section--first .lobby-tile{min-height:126px;padding:14px}.lobby-section--first .continue-card strong,.lobby-section--first .lobby-tile strong{font-size:20px}.lobby-section--first .engagement-grid{grid-template-columns:1.1fr .9fr 1.2fr .95fr .95fr;gap:12px;margin-top:16px}.lobby-section--first .mission-panel,.lobby-section--first .vip-panel,.lobby-section--first .results-panel,.lobby-section--first .race-panel,.lobby-section--first .rooms-panel{min-width:0;padding:14px;border-radius:12px}.lobby-section--first .results-feed{max-height:194px}.lobby-section--first .vip-orb{width:58px;height:58px;margin-bottom:9px}.lobby-section--first .vip-orb strong{font-size:23px}
.action-console{display:grid;gap:12px;width:100%;padding:12px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:linear-gradient(145deg,rgba(7,10,18,.48),rgba(13,22,36,.5));box-shadow:inset 0 0 30px rgba(255,255,255,.018)}.action-console-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px}.action-console-metric{min-width:0;padding:9px 10px;border:1px solid rgba(255,255,255,.08);border-radius:9px;background:rgba(255,255,255,.03)}.action-console-metric span{display:block;margin-bottom:4px;color:var(--muted-2);font-size:7px;font-weight:950;letter-spacing:.13em;text-transform:uppercase}.action-console-metric strong{display:block;overflow:hidden;color:var(--ink);font-size:11px;font-weight:950;text-overflow:ellipsis;white-space:nowrap}.action-console-metric--win strong{color:var(--green)}.action-console-controls{display:grid;gap:10px}.action-console .action-row{padding-bottom:0}.action-console .wager-strip{flex-wrap:wrap}.casino-table--settled .table-status strong{animation:settlementPulse 520ms ease both}.dealer-settle-card{animation:dealerReveal 520ms cubic-bezier(.2,.8,.2,1) both;animation-delay:calc(var(--deal-index,0) * 120ms)}
.craps-bet-mat{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));grid-template-areas:"pass pass pass dont dont dont" "field field place6 place6 place8 place8" "watch watch watch watch watch watch";gap:7px}.craps-zone{position:relative;min-height:58px;padding:10px;border:1px solid rgba(255,255,255,.11);border-radius:8px;color:var(--ink);background:rgba(7,34,31,.58);text-align:left;cursor:pointer;overflow:hidden}.craps-zone strong,.roulette-cell strong{display:block;font-size:10px;font-weight:950;letter-spacing:.08em}.craps-zone span,.roulette-cell span{display:block;margin-top:4px;color:rgba(255,255,255,.55);font-size:7px;font-weight:800;letter-spacing:.07em}.craps-zone.active{border-color:rgba(255,200,87,.52);background:linear-gradient(145deg,rgba(255,200,87,.12),rgba(7,34,31,.65))}.craps-zone:disabled{opacity:.42;cursor:not-allowed}.craps-zone--pass{grid-area:pass}.craps-zone--dont{grid-area:dont}.craps-zone--field{grid-area:field}.craps-zone--place6{grid-area:place6}.craps-zone--place8{grid-area:place8}.craps-zone--watch{grid-area:watch;text-align:center}.placed-chip{position:absolute;right:9px;top:9px;display:grid;place-items:center;width:34px;height:34px;border:4px dashed rgba(255,255,255,.88);border-radius:50%;color:#051511;background:var(--gold);box-shadow:inset 0 0 0 3px #a86515,0 8px 16px rgba(0,0,0,.28);font-size:8px;font-style:normal;font-weight:950}
.poker-paytable div.active{border-color:rgba(255,77,166,.58);background:rgba(255,77,166,.11);box-shadow:0 0 18px rgba(255,77,166,.12)}.poker-paytable div.active strong{color:#fff}.mines-profit-panel{width:min(680px,100%);display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:7px}.mines-profit-panel div{min-width:0;padding:9px 10px;border:1px solid rgba(77,242,139,.15);border-radius:9px;background:rgba(7,10,18,.28);text-align:center}.mines-profit-panel span{display:block;color:var(--muted-2);font-size:7px;font-weight:950;letter-spacing:.13em}.mines-profit-panel strong{display:block;margin-top:4px;overflow:hidden;color:var(--green);font-size:11px;text-overflow:ellipsis;white-space:nowrap}.roulette-bet-mat{display:grid;gap:7px;width:min(760px,100%);justify-self:center}.roulette-bet-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(70px,1fr));gap:7px}.roulette-cell{position:relative;min-height:52px;padding:9px 10px;border:1px solid rgba(255,255,255,.11);border-radius:8px;color:var(--ink);background:rgba(7,10,18,.4);text-align:center;cursor:pointer}.roulette-cell.active{border-color:rgba(255,91,110,.52);box-shadow:0 0 18px rgba(255,91,110,.12)}.roulette-cell--zero{background:rgba(12,143,102,.22)}.roulette-cell--red{background:rgba(201,32,63,.22)}.roulette-cell--black{background:rgba(0,0,0,.32)}.roulette-wheel{animation:rouletteSpin 820ms cubic-bezier(.2,.75,.25,1) both}

/* Dialogs */
.modal { width:min(94vw,760px);max-height:90vh;padding:0;border:0;border-radius:24px;color:var(--ink);background:transparent;overflow:visible }.modal::backdrop{background:rgba(2,4,9,.78);backdrop-filter:blur(12px)}.modal[open]{animation:modalIn 220ms ease both}.modal-card{max-height:90vh;overflow:auto;margin:0;padding:28px;border:1px solid rgba(255,255,255,.15);border-radius:24px;background:linear-gradient(145deg,rgba(18,27,45,.98),rgba(7,11,20,.99));box-shadow:0 45px 130px rgba(0,0,0,.65)}.modal-card>header{display:flex;justify-content:space-between;gap:30px;align-items:flex-start;margin-bottom:24px}.modal-card h2{margin:8px 0 0;font-size:clamp(34px,5vw,58px);line-height:.96;letter-spacing:-.055em;text-transform:uppercase}.modal-close{display:grid;place-items:center;flex:none;width:40px;height:40px;border:1px solid var(--line);border-radius:10px;color:var(--muted);background:rgba(255,255,255,.025);font-size:24px;cursor:pointer}.modal-kicker--pro{color:var(--pink-soft)}.field-label{display:flex;justify-content:space-between;margin:4px 0 8px;color:var(--ink);font-size:11px;font-weight:800}.field-label small{color:var(--muted-2);font-weight:500}.text-input{width:100%;padding:14px 15px;border:1px solid var(--line);border-radius:10px;color:var(--ink);background:rgba(255,255,255,.035);outline:none}.text-input:focus{border-color:rgba(67,245,229,.48);box-shadow:0 0 0 3px rgba(67,245,229,.07)}.setting-row{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:18px 0;border-bottom:1px solid var(--line)}.setting-row>div{display:grid;gap:4px}.setting-row strong{font-size:12px}.setting-row span{color:var(--muted-2);font-size:9px}.switch{position:relative;width:48px;height:27px;flex:none}.switch input{position:absolute;opacity:0}.switch span{position:absolute;inset:0;border-radius:99px;background:#242e40;cursor:pointer;transition:background 180ms ease}.switch span::after{content:"";position:absolute;top:4px;left:4px;width:19px;height:19px;border-radius:50%;background:#909bad;transition:transform 180ms ease,background 180ms ease}.switch input:checked+span{background:rgba(67,245,229,.25)}.switch input:checked+span::after{transform:translateX(21px);background:var(--cyan)}.settings-card>.button{margin-top:22px}.pro-modal-card>p{color:var(--muted);line-height:1.7}.modal-feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin:22px 0}.modal-feature-grid>div{display:grid;grid-template-columns:34px 1fr;gap:4px 10px;padding:16px;border:1px solid var(--line);border-radius:13px;background:rgba(255,255,255,.02)}.modal-feature-grid i{grid-row:1/3;display:grid;place-items:center;width:30px;height:30px;border-radius:8px;color:#08110f;background:var(--cyan);font-style:normal}.modal-feature-grid strong{font-size:11px}.modal-feature-grid span{color:var(--muted-2);font-size:8px;line-height:1.4}.pro-modal-price{display:flex;align-items:center;gap:14px;margin:20px 0}.pro-modal-price>strong{font-size:42px;letter-spacing:-.06em}.pro-modal-price>span{color:var(--muted);font-size:10px}.pro-modal-price small{color:var(--muted-2);font-size:8px}.modal-footnote{display:block;margin-top:14px;color:var(--muted-2);font-size:8px;text-align:center}.fairness-list{display:grid;gap:0;border-top:1px solid var(--line);margin-bottom:24px}.fairness-list article{display:grid;grid-template-columns:44px 1fr;gap:14px;padding:18px 0;border-bottom:1px solid var(--line)}.fairness-list>article>strong{color:var(--cyan);font-family:ui-monospace,monospace;font-size:10px}.fairness-list h3{margin:0 0 5px;font-size:13px}.fairness-list p{margin:0;color:var(--muted);font-size:10px;line-height:1.6}.result-card{width:min(94vw,800px)}.result-summary{display:grid;grid-template-columns:.8fr 1.2fr;gap:20px}.result-score-panel{display:grid;place-items:center;align-content:center;padding:28px;border:1px solid rgba(67,245,229,.18);border-radius:18px;background:radial-gradient(circle,rgba(67,245,229,.1),transparent 62%),rgba(255,255,255,.02);text-align:center}.result-score-panel small{color:var(--muted-2);font-size:8px;letter-spacing:.16em}.result-score-panel strong{font-size:64px;line-height:1;letter-spacing:-.08em}.result-score-panel span{margin-top:10px;padding:6px 10px;border-radius:99px;color:var(--cyan);background:rgba(67,245,229,.07);font-size:8px;font-weight:900}.result-grid-panel{padding:22px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.02)}.result-emoji-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px}.result-emoji-grid.dice{grid-template-columns:repeat(6,1fr)}.result-emoji-grid i{display:grid;place-items:center;aspect-ratio:1;border-radius:8px;background:rgba(255,255,255,.025);font-style:normal;font-size:23px}.result-legend{margin-top:14px;color:var(--muted-2);font-size:8px;line-height:1.5}.result-verification{display:flex;align-items:center;gap:10px;margin:17px 0;padding:12px 14px;border:1px solid rgba(255,200,87,.18);border-radius:11px;color:var(--gold-soft);background:rgba(255,200,87,.04);font-size:9px}.result-actions{display:grid;grid-template-columns:repeat(2,1fr);gap:9px}.result-actions .button:first-child{grid-column:1/-1}.mobile-menu-modal{width:min(92vw,420px)}.mobile-menu-card{display:grid;gap:4px}.mobile-menu-card header{align-items:center;margin-bottom:12px}.mobile-menu-card>a,.mobile-menu-card>button{padding:16px;border:0;border-bottom:1px solid var(--line);color:var(--ink);background:none;text-align:left;text-decoration:none;font-size:13px;font-weight:800;cursor:pointer}

.toast-region{position:fixed;z-index:1000;right:18px;bottom:calc(18px + var(--safe-bottom));display:grid;gap:9px;pointer-events:none}.toast{min-width:260px;max-width:min(90vw,380px);padding:14px 16px;border:1px solid var(--line-strong);border-radius:12px;color:var(--ink);background:rgba(15,23,39,.95);box-shadow:0 24px 70px rgba(0,0,0,.45);font-size:10px;line-height:1.5;animation:toastIn 220ms ease both}.toast strong{color:var(--cyan)}

/* Focus */
:focus-visible { outline:2px solid var(--cyan); outline-offset:3px; }

@keyframes pulse { 0%,100%{opacity:.55;transform:scale(.85)}50%{opacity:1;transform:scale(1.08)} }
@keyframes cardFloat { 0%,100%{translate:0 0}50%{translate:0 -12px} }
@keyframes cardFloat2 { 0%,100%{translate:0 0}50%{translate:5px -15px} }
@keyframes glassFloat { 0%,100%{translate:0 0}50%{translate:0 -9px} }
@keyframes orbitSpin { to{rotate:360deg} }
@keyframes ticker { to{transform:translateX(-50%)} }
@keyframes dealCard { from{opacity:0;transform:translateY(-50px) rotate(-7deg) scale(.82)}to{opacity:1;transform:none} }
@keyframes diceLand { from{opacity:0;transform:translateY(-70px) rotate(130deg) scale(.65)}to{opacity:1} }
@keyframes modalIn { from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:none} }
@keyframes toastIn { from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none} }
@keyframes tilePop { from{transform:scale(.82);opacity:.7}to{transform:none;opacity:1} }
@keyframes wheelPulse { from{transform:rotate(-16deg) scale(.96)}to{transform:none} }
@keyframes dealerReveal { from{opacity:0;transform:rotateY(82deg) translateY(-12px) scale(.94)}to{opacity:1;transform:none} }
@keyframes settlementPulse { from{filter:brightness(1.5);transform:scale(.96)}to{filter:none;transform:none} }
@keyframes rouletteSpin { from{transform:rotate(-420deg) scale(.94);filter:brightness(1.28)}to{transform:none;filter:none} }

@media (max-width: 1180px) {
  .site-nav { gap: 20px; }
  .utc-pill > span:not(.live-dot) { display:none; }
  .hero { grid-template-columns:minmax(0,.95fr) minmax(430px,1.05fr); padding-inline:42px; }
  .hero h1 { font-size:clamp(62px,8vw,100px); }
  .game-cards { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .game-layout { grid-template-columns:190px minmax(0,1fr) 190px; }
  .game-header { grid-template-columns:190px 1fr 190px; }
  .hud-stat { min-width:95px; }
  .casino-table,.dice-table,.poker-table,.mines-table,.roulette-table{padding-inline:20px}.game-action{min-width:88px;padding-inline:11px}
}

@media (max-width: 980px) {
  .site-nav { display:none; }
  .site-header { grid-template-columns:1fr auto; }
  .mobile-menu-button { display:grid; }
  .hero { grid-template-columns:1fr; min-height:auto; padding-top:150px; }
  .hero-copy { max-width:780px; }
  .hero h1 { font-size:clamp(68px,13vw,118px); }
  .hero-visual { min-height:590px; }
  .section-heading { grid-template-columns:1fr; gap:22px; }
  .game-card { min-height:690px; }
  .how-section { grid-template-columns:1fr; }
  .how-visual { order:2; }
  .proof-card { grid-template-columns:1fr; }
  .pro-section { grid-template-columns:1fr; }
  .game-header { grid-template-columns:1fr auto; }
  .game-hud { grid-column:1/-1; grid-row:2; padding:7px 0; border-top:1px solid var(--line); }
  .game-view { grid-template-rows:112px 1fr; }
  .game-header-actions { grid-column:2; grid-row:1; }
  .game-layout { grid-template-columns:minmax(0,1fr); padding:9px; }
  .game-sidebar { display:none; }
  .table-shell { border-radius:17px; }
  .casino-table,.dice-table,.poker-table,.mines-table,.roulette-table { min-height:calc(100vh - 130px - var(--safe-bottom)); }
  .mobile-action-dock { position:fixed;z-index:210;left:0;right:0;bottom:0;display:flex;justify-content:center;gap:7px;padding:10px 10px calc(10px + var(--safe-bottom));border-top:1px solid var(--line);background:rgba(7,10,18,.94);backdrop-filter:blur(20px) }
  .mobile-action-dock:empty { display:none; }
  .mobile-action-dock .game-action{flex:1;max-width:150px;min-width:0}.table-controls .action-row{padding-bottom:72px}.dice-controls{padding-bottom:72px}
}

@media (max-width: 760px) {
  :root { --header-height:68px; }
  .site-header { padding:0 15px; gap:12px; }
  .brand-copy small { display:none; }
  .utc-pill { padding:8px 9px; }
  .header-actions .button--compact { display:none; }
  .hero { padding:120px 20px 56px; gap:10px; }
  .hero h1 { margin-top:18px; font-size:clamp(54px,17vw,88px); line-height:.86; }
  .hero-lede { font-size:15px; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .hero-actions .button { width:100%; }
  .hero-meta { gap:20px; justify-content:space-between; }
  .hero-meta strong { font-size:18px; }
  .hero-meta span { font-size:7px; }
  .hero-visual { min-height:500px; margin-inline:-20px; overflow:hidden; }
  .hero-table { width:500px; transform:rotateX(58deg) rotateZ(-8deg) translateY(-15px) scale(.78); }
  .orbit--one { width:500px;height:500px }.orbit--two{width:390px;height:390px}.hero-score-card{left:7%;bottom:5%;transform:scale(.86);transform-origin:left bottom}.proof-chip{top:10%;right:5%;transform:scale(.84);transform-origin:right top}.rank-chip{right:4%;bottom:6%;transform:scale(.84);transform-origin:right bottom}
  .section { padding:76px 20px; }
  .section-heading h2,.how-copy h2,.proof-copy h2,.pro-copy h2 { font-size:clamp(39px,12vw,64px); }
  .game-cards { grid-template-columns:1fr; }
  .game-card { min-height:650px; grid-template-rows:auto 235px 1fr; }
  .game-card-copy { padding:8px 25px 26px; }
  .mini-card{width:104px;height:150px;font-size:30px}.mini-card i{margin-top:42px;font-size:42px}.mini-chip{right:20%;width:60px;height:60px}.art-die{width:105px;height:105px;padding:14px}.dice-ring{width:260px;height:260px}
  .how-visual { min-height:580px; transform:scale(.9); margin-inline:-30px; }
  .steps article { grid-template-columns:44px 1fr; }
  .rankings-shell { border-radius:18px; }
  .podium { padding:24px 12px 10px; gap:7px; }.podium-card{padding:18px 8px}.podium-card--one{padding-top:34px}.podium-card strong{font-size:18px}.podium-card h3{font-size:10px}.player-avatar{width:40px;height:40px}.leaderboard-table{padding:5px 14px 20px}.leader-row{grid-template-columns:35px 1fr 80px;padding:12px 2px}.leader-tier{display:none}.rankings-note{flex-wrap:wrap;align-items:flex-start;padding-inline:16px}.rankings-note .text-link{margin-left:0}
  .proof-card { padding:34px 22px; gap:35px; }.proof-terminal pre{padding:20px;font-size:10px}.pro-section{margin:0 10px 50px;padding:45px 22px;gap:38px}.pro-features{grid-template-columns:1fr}.pro-price>strong{font-size:38px}
  .site-footer { grid-template-columns:1fr; }.footer-links{justify-content:flex-start;flex-wrap:wrap}.footer-disclosure{grid-column:auto}
  .game-header { padding-inline:12px; }.game-header .button--compact{display:none}.game-brand>span:last-child small{display:none}.game-hud{gap:5px;overflow-x:auto;justify-content:flex-start}.hud-stat{min-width:90px;padding:7px 9px}.hud-stat span{font-size:6px}.hud-stat strong{font-size:11px}
  .game-layout { padding:0; }.table-shell{border:0;border-radius:0}.table-shell::after{inset:12px;border-radius:26% 26% 12px 12px}.casino-table,.dice-table,.poker-table,.mines-table,.roulette-table{min-height:calc(100vh - 112px);padding:18px 10px 92px}.card-row{min-height:115px;padding-left:20px}.playing-card{width:72px;height:104px;margin-left:-20px;padding:8px;border-radius:9px}.card-rank{font-size:19px}.card-suit{font-size:28px}.player-hands{gap:3px}.player-hand{min-width:0;padding:9px}.hand-chip{font-size:6px}.table-status{min-height:52px}.table-status strong{font-size:15px}.wager-strip{gap:6px}.chip-button{width:42px;height:42px;border-width:4px;font-size:8px}.action-row{gap:5px;flex-wrap:wrap}.game-action{min-width:76px;min-height:44px;font-size:8px}.zone-label{font-size:6px}.zone-label strong{font-size:9px}
  .dice-board-head{padding:0}.point-puck{width:50px;height:50px;border-width:6px}.dice-pair{min-height:130px;gap:13px}.table-die{width:100px;height:100px;padding:14px;border-radius:18px}.table-die i{width:12px;height:12px}.roll-total strong{font-size:35px}.bet-grid{grid-template-columns:repeat(3,1fr);gap:5px}.bet-option{min-height:48px}.dice-wager-row{gap:6px;flex-wrap:wrap}.roll-button{min-width:140px}.dice-controls{padding-top:10px}
  .dice-state-grid{grid-template-columns:1fr;gap:6px}.dice-state-card{min-height:auto;padding:9px}.dice-message{font-size:10px}
  .poker-board-head{padding:0}.poker-board-head>div:first-child{max-width:calc(100vw - 76px)}.poker-board-head strong{font-size:16px}.poker-hand-count{width:50px;height:50px;font-size:20px}.poker-card-row{justify-self:start;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:4px;width:100%;max-width:370px;min-height:112px}.poker-card-slot .playing-card{width:54px;height:78px;margin-left:0;padding:7px}.poker-card-slot .card-rank{font-size:16px}.poker-card-slot .card-suit{font-size:24px}.poker-card-label{bottom:-6px;padding:4px 6px;font-size:6px}.poker-center>.table-status,.poker-paytable{justify-self:start;width:100%;max-width:370px}.poker-paytable{grid-template-columns:repeat(2,minmax(0,1fr));gap:5px}.poker-paytable div{padding:7px 8px}.poker-paytable span,.poker-paytable strong{font-size:6px}.poker-table .wager-strip{justify-self:start;flex-wrap:wrap;width:100%;max-width:370px}.poker-table .chip-button{width:38px;height:38px}
  .continue-rail,.lobby-carousel{grid-auto-columns:minmax(230px,82vw)}.engagement-grid{grid-template-columns:1fr}.mine-preview{grid-template-columns:repeat(3,45px)}.mine-preview i{width:45px;height:45px}.roulette-preview{width:155px;height:155px}.roulette-preview strong{width:70px;height:70px;font-size:34px}
  .mines-board-head,.roulette-board-head{padding:0}.mines-board-head>div:first-child,.roulette-board-head>div:first-child{max-width:calc(100vw - 76px)}.mines-board-head strong,.roulette-board-head strong{font-size:15px}.mines-count,.roulette-spin-count{width:50px;height:50px;font-size:20px}.mines-center,.roulette-center{gap:10px}.mines-center>.table-status,.roulette-center>.table-status{justify-self:start;width:calc(100vw - 20px);max-width:370px}.mines-grid{justify-self:start;width:calc(100vw - 20px);max-width:370px;gap:6px}.mine-tile{border-radius:9px;font-size:18px}.roulette-wheel{width:138px;height:138px;border-width:8px}.roulette-wheel strong{width:58px;height:58px;font-size:28px}.roulette-bet-grid{justify-self:start;grid-template-columns:repeat(5,minmax(0,1fr));gap:4px;width:calc(100vw - 20px);max-width:370px}.roulette-bet-grid .bet-option{min-height:42px;padding:5px 3px}.roulette-bet-grid .bet-option strong{font-size:7px}.roulette-bet-grid .bet-option span{font-size:6px}.roulette-history{max-width:370px}.roulette-history i{width:28px;height:28px;font-size:9px}.mines-wager-strip{justify-self:start;width:calc(100vw - 20px);max-width:370px;flex-wrap:wrap}.mines-table .chip-button{width:38px;height:38px}
  .modal { width:95vw; }.modal-card{padding:22px 18px;border-radius:19px}.modal-card>header{gap:12px}.modal-feature-grid{grid-template-columns:1fr}.result-summary{grid-template-columns:1fr}.result-score-panel strong{font-size:55px}.result-emoji-grid{gap:5px}.result-emoji-grid i{font-size:19px}.result-actions{grid-template-columns:1fr}.result-actions .button:first-child{grid-column:auto}
}

@media (max-width: 390px) {
  .brand-copy strong { font-size:11px; }
  .utc-pill strong { display:none; }
  .utc-pill { padding-inline:8px; }
  .hero h1 { font-size:52px; }
  .hero-meta { gap:10px; }
  .hero-visual { min-height:450px; }
  .hero-table { transform:rotateX(58deg) rotateZ(-8deg) translateY(-15px) scale(.7); }
  .hero-score-card,.rank-chip { display:none; }
  .game-card-copy h3 { font-size:42px; }
  .playing-card { width:64px;height:94px; }
  .poker-board-head strong{font-size:14px}.poker-card-slot .playing-card { width:50px;height:74px; }.poker-paytable div{gap:5px;padding-inline:6px}
  .player-hand { padding-inline:5px; }
  .game-action { font-size:7px;padding-inline:7px; }
  .table-die { width:88px;height:88px; }
}

@media (max-width: 760px) {
  .game-view,.game-layout,.table-shell { max-width:100vw; }
  .game-layout,.table-shell { width:100vw; }
  .game-layout { overflow-y:auto;-webkit-overflow-scrolling:touch; }
  .lobby-section--first{padding-top:calc(var(--header-height) + 8px);padding-bottom:28px}.lobby-section--first .section-heading{grid-template-columns:1fr;gap:10px;margin-bottom:16px}.lobby-section--first .section-heading h2{font-size:34px}.lobby-section--first .continue-card,.lobby-section--first .lobby-tile{min-height:128px}.lobby-section--first .engagement-grid{grid-template-columns:1fr}
  .rankings-intro{gap:10px}.player-name-strip{grid-template-columns:1fr;gap:7px}.player-name-strip .button{width:100%}
  .action-console{gap:9px;padding:9px;border-radius:0;border-inline:0}.action-console-metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:5px}.action-console-metric{padding:7px}.action-console-metric strong{font-size:9px}.craps-bet-mat{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-areas:"pass dont" "field field" "place6 place8" "watch watch";gap:5px}.craps-zone{min-height:48px;padding:8px}.craps-zone strong,.roulette-cell strong{font-size:8px}.craps-zone span,.roulette-cell span{font-size:6px}.placed-chip{width:28px;height:28px;border-width:3px;font-size:7px}.mines-profit-panel{grid-template-columns:repeat(5,minmax(0,1fr));gap:4px;width:calc(100vw - 20px);max-width:370px}.mines-profit-panel div{padding:7px 4px}.mines-profit-panel span{font-size:6px}.mines-profit-panel strong{font-size:8px}.roulette-bet-mat{width:calc(100vw - 20px);max-width:370px}.roulette-bet-row{grid-template-columns:repeat(auto-fit,minmax(48px,1fr));gap:4px}.roulette-cell{min-height:42px;padding:6px 3px}
  .mines-table { width:100%;max-width:100vw;height:auto;min-height:calc(100dvh - 112px);grid-template-rows:auto auto auto;align-content:start;overflow:visible;overflow-x:hidden;padding-bottom:calc(128px + var(--safe-bottom)); }
  .mines-table .mines-center { gap:7px; }
  .mines-table .mines-grid { justify-self:start;width:calc(100vw - 20px);max-width:370px;gap:5px; }
  .mines-table .mine-tile { height:56px;aspect-ratio:auto;border-radius:8px;font-size:16px; }
  .mines-table .table-status,.mines-table .mines-profit-panel { justify-self:start;width:calc(100vw - 20px);max-width:370px; }
  .mines-table .table-status { min-height:44px; }
  .mines-table .table-status strong { font-size:14px; }
  .mines-table .table-controls { display:none; }
  .mobile-mines-controls { display:grid;justify-items:center;gap:9px;width:min(360px,100%); }
  .mobile-mines-controls .mines-wager-strip { width:100%;max-width:none;justify-content:center;flex-wrap:nowrap; }
  .mobile-mines-controls .wager-strip>span { display:none; }
  .mobile-mines-controls .chip-button { width:38px;height:38px;border-width:4px;font-size:8px; }
  .mobile-mines-controls .game-action { width:min(170px,100%);max-width:none; }
}

@media (max-width: 760px) and (max-height: 720px) {
  .mines-table { padding-top:12px;padding-bottom:calc(124px + var(--safe-bottom)); }
  .mines-board-head strong { font-size:13px; }
  .mines-count { width:42px;height:42px;font-size:18px; }
  .mines-center { gap:6px; }
  .mines-grid { width:min(245px,calc(100vw - 20px));gap:5px; }
  .mine-tile { border-radius:8px;font-size:16px; }
  .mines-center>.table-status { min-height:42px; }
  .mines-center>.table-status strong { font-size:13px; }
  .mines-center>.table-status span:not(.status-pill) { font-size:7px; }
  .mobile-mines-controls .chip-button { width:34px;height:34px;border-width:4px;font-size:7px; }
  .mines-wager-strip { gap:5px; }
  .mobile-mines-controls .game-action { min-height:40px; }
}

@media (min-width: 981px) and (max-height: 780px) {
  .dice-table,.poker-table,.mines-table,.roulette-table { min-height:0;padding:16px 26px 12px; }
  .dice-board-head { padding-inline:6px; }
  .dice-board-head strong { font-size:15px; }
  .point-puck { width:50px;height:50px;border-width:6px; }
  .dice-center { gap:5px; }
  .dice-state-grid { gap:5px; }
  .dice-state-card { min-height:0;gap:2px;padding:6px 8px;border-radius:9px; }
  .dice-state-card strong { font-size:11px; }
  .dice-state-card small { font-size:7px;line-height:1.15; }
  .dice-pair { min-height:58px;gap:10px; }
  .table-die { width:58px;height:58px;padding:9px;border-radius:13px; }
  .table-die i { width:8px;height:8px; }
  .roll-total strong { font-size:24px;letter-spacing:0; }
  .roll-total span { font-size:7px; }
  .dice-message { padding:7px 10px;font-size:10px; }
  .roll-history { gap:4px; }
  .roll-history i { width:24px;height:24px;font-size:8px; }
  .poker-center,.mines-center,.roulette-center { gap:12px; }
  .poker-card-row { min-height:126px; }
  .poker-card-slot .playing-card { width:78px;height:112px; }
  .poker-wager-strip { padding:6px 9px; }
  .poker-paytable div { padding:6px 9px; }
  .mines-center { gap:8px; }
  .mines-grid { width:min(280px,100%);gap:5px; }
  .mine-tile { border-radius:8px;font-size:18px; }
  .roulette-wheel { width:142px;height:142px;border-width:8px; }
  .roulette-wheel strong { width:58px;height:58px;font-size:29px; }
  .roulette-bet-mat,.craps-bet-mat { gap:5px; }
  .roulette-bet-row { gap:5px; }
  .roulette-cell,.craps-zone { min-height:38px;padding:6px 8px; }
  .roulette-cell strong,.craps-zone strong { font-size:8px; }
  .roulette-cell span,.craps-zone span { font-size:6px; }
  .placed-chip { width:28px;height:28px;border-width:3px;font-size:7px; }
  .poker-table .table-status,.mines-table .table-status,.roulette-table .table-status { min-height:54px; }
  .poker-table .table-status strong,.mines-table .table-status strong,.roulette-table .table-status strong { font-size:17px; }
  .poker-table .table-controls,.mines-table .table-controls,.roulette-table .table-controls { padding-top:10px; }
  .poker-table .game-action,.mines-table .game-action,.roulette-table .game-action { min-height:44px; }
  .action-console { gap:7px;padding:8px; }
  .action-console-metric { padding:7px 8px; }
  .action-console-metric strong { font-size:10px; }
  .dice-controls { gap:8px;padding-top:6px; }
  .action-console--dice { gap:6px;padding:7px; }
  .action-console--dice .action-console-metrics { gap:5px; }
  .action-console--dice .action-console-metric { padding:6px 7px; }
  .action-console--dice .craps-bet-mat { gap:4px; }
  .action-console--dice .craps-zone { min-height:34px;padding:5px 7px; }
  .action-console--dice .craps-zone span { margin-top:2px; }
  .action-console--dice .placed-chip { top:5px;right:7px;width:26px;height:26px;border-width:3px;font-size:7px; }
  .action-console--dice .dice-wager-row { gap:7px; }
  .action-console--dice .wager-adjust { width:34px;height:34px; }
  .action-console--dice .dice-wager-value strong { font-size:15px; }
  .action-console--dice .roll-button { min-width:150px;min-height:40px; }
}

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

body.pro-active .table-shell{border-color:rgba(255,77,166,.32);box-shadow:inset 0 0 110px rgba(0,0,0,.52),0 28px 80px rgba(0,0,0,.3),0 0 50px rgba(255,77,166,.08)}
body.pro-active .brand-card--front{background:linear-gradient(145deg,#ff9bd0,#a872ff);box-shadow:0 0 24px rgba(255,77,166,.35)}
.result-emoji-grid.dice{grid-template-columns:repeat(10,1fr)}
.result-emoji-grid.mines{grid-template-columns:repeat(4,1fr)}
.result-emoji-grid.roulette{grid-template-columns:repeat(5,1fr)}
