/* ============================================
   155 GAMES — game.css
   Shared styles for all game detail pages
   ============================================ */

/* =============================================
   GAME HERO
   ============================================= */
.game-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.game-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.game-hero-bg video,
.game-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(1turn, #000 10%, transparent 65%),
    linear-gradient(90deg, rgba(0,0,0,0.75) 40%, transparent 80%);
  z-index: 1;
}

.game-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  max-width: 600px;
}

.game-hero-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.game-type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999em;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.game-type-badge--brand {
  background: var(--primary-yellow);
  color: #000;
  border-color: var(--primary-yellow);
}

.game-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 16px;
}

.game-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

/* Stats row */
.game-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.game-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.game-stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.game-stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.game-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.game-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Floating phone right */
.game-hero-phone {
  position: absolute;
  right: max(40px, 8vw);
  bottom: 0;
  z-index: 2;
  height: 85%;
  display: flex;
  align-items: flex-end;
}
.game-hero-phone img {
  height: 100%;
  width: auto;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}


/* =============================================
   GAME INTRO
   ============================================= */
.game-intro {
  position: relative;
  padding: 100px 40px;
  background: #000;
  overflow: hidden;
}

.game-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.game-intro-text p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 16px;
}
.game-intro-text .section-title { margin-bottom: 24px; }

.game-intro-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.game-intro-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-card);
}

/* CV detection overlay animation */
.cv-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cv-box {
  position: absolute;
  border: 2px solid #22c55e;
  border-radius: 3px;
  opacity: 0;
  animation: cvBoxPulse 3s ease-in-out var(--d, 0s) infinite;
}

/* Default CV box = green (Rush Hour vehicles) */
@keyframes cvBoxPulse {
  0%   { opacity: 0; transform: scale(0.95); }
  15%  { opacity: 1; transform: scale(1); }
  70%  { opacity: 1; transform: scale(1); }
  85%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; }
}

/* Duck River: orange tracking brackets */
.cv-box--orange {
  border-color: #f97316;
  border-radius: 50%;
}

/* Duck River: green counted flash */
.cv-box--green-flash {
  border-color: #22c55e;
  border-radius: 50%;
  animation-name: cvFlashPulse;
}
@keyframes cvFlashPulse {
  0%   { opacity: 0; }
  10%  { opacity: 1; box-shadow: 0 0 8px rgba(34,197,94,0.8); }
  30%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Snow Run: arc fill tracking */
.cv-box--arc {
  border-color: #36C7EC;
  border-radius: 4px;
  overflow: hidden;
}
.cv-box--arc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54,199,236,0.18) 0%, transparent 60%);
  animation: cvArcFill 2.4s ease-in-out infinite;
}
@keyframes cvArcFill {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  30%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}

/* CV tracking legend */
.cv-legend {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cv-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cv-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
}
.cv-legend-dot--orange { color: #f97316; }
.cv-legend-dot--green  { color: #22c55e; }

/* Fish Tank: landing zone markers */
.zone-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.zone-marker::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: rgba(0,0,0,0.4);
  animation: cvPulse 2s ease-in-out infinite;
}
.zone-label {
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: inherit;
  background: rgba(0,0,0,0.55);
  padding: 2px 5px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.zone-marker--blue  { color: #36C7EC; }
.zone-marker--gold  { color: #E5A000; }
.zone-marker--white { color: rgba(255,255,255,0.85); }
.zone-marker--red   { color: #ef4444; }

/* Animated count at bottom of intro visual */
.cv-count {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
}
.cv-count-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 44px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  backdrop-filter: blur(4px);
}


/* =============================================
   BETTING OPTIONS
   ============================================= */
.betting-section { background: #000; }

.section-sub {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 48px;
  margin-top: -28px;
}

.bet-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bet-options-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
  .bet-options-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .bet-options-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
.bet-options-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .bet-options-grid--3 { grid-template-columns: 1fr; }
}

/* =============================================
   MARBLE / ROLLING DUNES UI MOCK COMPONENTS
   ============================================= */
.ui-mtype-row {
  display: flex;
  gap: 4px;
  padding: 0 8px;
}
.ui-mtype {
  flex: 1;
  padding: 6px 4px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
}
.ui-mtype--active {
  background: rgba(229,160,0,0.15);
  border-color: rgba(229,160,0,0.5);
  color: #E5A000;
}
.ui-podium-row {
  display: flex;
  gap: 6px;
  padding: 0 8px;
}
.ui-podium-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ui-podium-pos {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
.ui-podium-marble {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}
.ui-marble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 8px;
}
.ui-marble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.ui-marble--picked {
  border-color: var(--mc, #fff);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 6px rgba(255,255,255,0.1);
}
.ui-marble-ball {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.ui-marble-pct {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.ui-multiplier-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: rgba(229,160,0,0.08);
  border-top: 1px solid rgba(229,160,0,0.2);
  border-bottom: 1px solid rgba(229,160,0,0.2);
}
.ui-multiplier-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(229,160,0,0.7);
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}
.ui-multiplier-val {
  font-size: 18px;
  font-weight: 800;
  color: #E5A000;
  font-family: var(--font-display);
}

.bet-option {
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease;
  border: 1px solid transparent;
}
.bet-option:hover { transform: translateY(-4px); }

.bet-option--under {
  background:
    rgba(239,68,68,0.06) padding-box,
    rgba(239,68,68,0.25) border-box;
}
.bet-option--range {
  background:
    rgba(54,199,236,0.06) padding-box,
    rgba(54,199,236,0.25) border-box;
}
.bet-option--over {
  background:
    rgba(20,174,92,0.06) padding-box,
    rgba(20,174,92,0.3) border-box;
}
.bet-option--exact {
  background:
    rgba(229,160,0,0.06) padding-box,
    rgba(229,160,0,0.3) border-box;
}

.bet-option-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bet-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bet-icon svg { width: 20px; height: 20px; }

.bet-icon--red    { background: rgba(239,68,68,0.15);  color: #ef4444; }
.bet-icon--blue   { background: rgba(54,199,236,0.15); color: var(--primary-blue); }
.bet-icon--green  { background: rgba(20,174,92,0.15);  color: var(--primary-green); }
.bet-icon--yellow { background: rgba(229,160,0,0.15);  color: var(--primary-yellow); }
.bet-icon--pink   { background: rgba(236,72,153,0.15); color: #ec4899; }

.bet-option--pink {
  background:
    rgba(236,72,153,0.06) padding-box,
    rgba(236,72,153,0.35) border-box;
  border: 1px solid transparent;
}
.bet-example-pill--pink {
  background: rgba(236,72,153,0.12);
  color: #ec4899;
  border-color: rgba(236,72,153,0.3);
}

/* Stairpong: ball dot in UI mock bet buttons */
.ui-ball-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Stairpong: ball position markers on intro image */
.ball-marker {
  position: absolute;
  width: calc(14px * var(--s, 1));
  height: calc(14px * var(--s, 1));
  border-radius: 50%;
  background: var(--bc, #fff);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--bc, #fff);
  animation: ballFloat 1.8s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 1s);
}
@keyframes ballFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50%       { transform: translate(-50%, -60%) scale(1.1); opacity: 1; }
}

.bet-option h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.bet-desc {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.4;
}

.bet-metrics {
  display: flex;
  gap: 20px;
}
.bet-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bet-multiplier {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bet-chance {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}
.bet-metric-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
}

.bet-example-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999em;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
  width: fit-content;
}
.bet-example-pill--red    { background: rgba(239,68,68,0.15);  color: #ef4444;  border: 1px solid rgba(239,68,68,0.3); }
.bet-example-pill--blue   { background: rgba(54,199,236,0.15); color: var(--primary-blue); border: 1px solid rgba(54,199,236,0.3); }
.bet-example-pill--green  { background: rgba(20,174,92,0.15);  color: var(--primary-green); border: 1px solid rgba(20,174,92,0.3); }
.bet-example-pill--yellow { background: rgba(229,160,0,0.15);  color: var(--primary-yellow); border: 1px solid rgba(229,160,0,0.3); }


/* =============================================
   BETTING INTERFACE MOCKUP
   ============================================= */
.interface-section { background: #000; }

.interface-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.interface-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.interface-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-color);
}
.if-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.if-dot--green { background: var(--primary-green); box-shadow: 0 0 6px rgba(20,174,92,0.6); }

/* Phone-like UI mockup */
.ui-mock {
  display: flex;
  justify-content: center;
}

.ui-mock-screen {
  width: 320px;
  background: #111;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
}

/* Feed area */
.ui-feed {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ui-feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ui-feed-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  border-radius: 999em;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.08em;
}
.ui-live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: launchPulse 1.5s ease-in-out infinite;
}
.ui-feed-location {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Bet buttons row */
.ui-bets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ui-bet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px;
  background: #111;
  transition: background 0.2s;
  cursor: pointer;
}
.ui-bet:hover { background: rgba(255,255,255,0.06); }
.ui-bet-icon { font-size: 14px; line-height: 1; }
.ui-bet-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.ui-bet-odds { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; }

.ui-bet--red    .ui-bet-icon { color: #ef4444; }
.ui-bet--blue   .ui-bet-icon { color: var(--primary-blue); }
.ui-bet--green  .ui-bet-icon { color: var(--primary-green); }
.ui-bet--yellow .ui-bet-icon { color: var(--primary-yellow); }

.ui-bet--active {
  background: rgba(20,174,92,0.12);
  outline: 1px solid rgba(20,174,92,0.4);
}

/* Stake row */
.ui-stake-row {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ui-stake-row::-webkit-scrollbar { display: none; }
.ui-stake-btn {
  flex-shrink: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: background 0.15s;
  cursor: pointer;
}
.ui-stake-btn:hover,
.ui-stake-btn--active { background: rgba(255,255,255,0.16); color: #fff; }
.ui-stake-btn--2x { background: rgba(229,160,0,0.15); color: var(--primary-yellow); }

/* Stake/Win display */
.ui-stake-display {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ui-stake-info, .ui-win-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ui-win-info { text-align: right; }
.ui-stake-val, .ui-win-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ui-win-val { color: var(--primary-green); }
.ui-stake-lbl, .ui-win-lbl {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* Bet submit button */
.ui-bet-submit {
  margin: 10px 12px;
  padding: 14px;
  background: var(--primary-green);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ui-bet-submit:hover { opacity: 0.88; }

/* Count display */
.ui-countdown {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px 16px;
}
.ui-countdown span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}


/* =============================================
   TRACKING / HOW IT WORKS
   ============================================= */
.tracking-section {
  position: relative;
  background: #000;
}

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tracking-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}
.tracking-card:hover { border-color: rgba(255,255,255,0.18); }

.tracking-icon svg {
  width: 48px;
  height: 48px;
}

.tracking-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
}
.tracking-card p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
}

/* Fairness note */
.fairness-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.fairness-note-icon {
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
}
.fairness-note strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.fairness-note p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.6;
}


/* =============================================
   GAME CTA
   ============================================= */
.game-cta {
  position: relative;
  padding: 120px 40px;
  text-align: center;
}
.game-cta-inner {
  position: relative;
  z-index: 1;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .game-hero-phone { height: 70%; }
  .bet-options-grid { grid-template-columns: repeat(2, 1fr); }
  .tracking-grid { grid-template-columns: repeat(2, 1fr); }
  .interface-inner { grid-template-columns: 1fr; gap: 48px; }
  .ui-mock { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .game-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .game-hero-phone { display: none; }
  .game-hero-inner { max-width: 100%; }
}

@media (max-width: 600px) {
  .game-hero { padding-bottom: 60px; min-height: 90svh; }
  .game-hero-inner { padding-top: 100px; }
  .game-hero-title { font-size: clamp(60px, 16vw, 80px); }
  .game-stats { gap: 16px; }
  .bet-options-grid { grid-template-columns: 1fr; }
  .tracking-grid { grid-template-columns: 1fr; }
  .game-intro { padding: 60px 20px; }
  .game-cta { padding: 80px 20px; }
  .ui-mock-screen { width: 100%; max-width: 320px; }
}
