/* ==========================================================================
   PRIM3PLAY — OFFICIAL SOFTSWISS COMMERCIAL GAMING PORTAL
   Design System: Stake.com & Shuffle.com Ultra-Modern Dark Aesthetics
   Brand: prim3play | 3-in-1 Ecosystem: Casino, Sportsbook, Prediction Markets
   ========================================================================== */

:root {
  /* Stake / Shuffle Color Architecture */
  --bg-abyss: #070c14;
  --bg-base: #0b1320;
  --bg-surface: #0f1c2e;
  --bg-card: #122238;
  --bg-card-hover: #172a45;
  --bg-card-active: #1c3354;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(43, 76, 114, 0.45);
  --border-focus: #00e701;

  /* 3-Pillar Accent Colors */
  --neon-green: #00e701;
  --neon-green-glow: rgba(0, 231, 1, 0.35);
  --neon-green-dark: #00b801;
  --sports-cyan: #00f2fe;
  --sports-cyan-glow: rgba(0, 242, 254, 0.35);
  --predict-purple: #a855f7;
  --predict-purple-glow: rgba(168, 85, 247, 0.35);
  --gold-accent: #f59e0b;
  --danger-red: #ef4444;

  /* Typography Colors */
  --text-main: #ffffff;
  --text-sub: #b1bad3;
  --text-muted: #557086;
  --text-dark: #070c14;

  /* Layout Constants */
  --header-height: 72px;
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 76px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-abyss);
  color: var(--text-main);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% -10%, #102138 0%, #070c14 65%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography Utility */
.font-heading { font-family: 'Montserrat', 'Inter', sans-serif; letter-spacing: -0.02em; }
.font-mono-num { font-family: 'JetBrains Mono', monospace; font-feature-settings: 'tnum'; }

/* Scrollbar Customization */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-abyss); }
::-webkit-scrollbar-thumb { background: var(--border-card); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.portal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(7, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px var(--neon-green-glow));
  transition: transform 0.2s ease;
}
.brand-wrapper:hover .brand-logo-img {
  transform: scale(1.03);
}

/* 3-Pillar Master Switcher */
.pillar-nav-wrapper {
  display: flex;
  align-items: center;
  background: rgba(15, 28, 46, 0.7);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  gap: 4px;
}

.pillar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pillar-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-btn.active-casino {
  background: var(--neon-green);
  color: var(--text-dark);
  box-shadow: 0 4px 16px var(--neon-green-glow);
}

.pillar-btn.active-sports {
  background: var(--sports-cyan);
  color: var(--text-dark);
  box-shadow: 0 4px 16px var(--sports-cyan-glow);
}

.pillar-btn.active-prediction {
  background: var(--predict-purple);
  color: var(--text-main);
  box-shadow: 0 4px 16px var(--predict-purple-glow);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wallet-badge {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 4px 6px 4px 14px;
  gap: 12px;
}

.wallet-balance-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--neon-green);
}

.btn-deposit-fast {
  background: var(--neon-green);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-deposit-fast:hover {
  background: #1fff20;
  box-shadow: 0 0 16px var(--neon-green-glow);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SHOWCASE & PROMO BANNER
   ========================================================================== */
.portal-hero-banner {
  position: relative;
  margin: 20px 24px 28px 24px;
  border-radius: 24px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #0d2038 0%, #0a1728 50%, #070c14 100%);
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-glow-blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 231, 1, 0.18) 0%, rgba(0, 242, 254, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 231, 1, 0.12);
  border: 1px solid rgba(0, 231, 1, 0.3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 40%, #c4d7ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-sub);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--neon-green);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px var(--neon-green-glow);
  transition: all 0.2s ease;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: #1fff20;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   PROVIDER BAR & HORIZONTAL FILTER
   ========================================================================== */
.provider-strip {
  margin: 0 24px 24px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.provider-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}
.provider-pill:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}
.provider-pill.active {
  background: var(--bg-card-active);
  color: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 14px rgba(0, 231, 1, 0.2);
}

/* Category Filter Bar with Search */
.filter-search-bar {
  margin: 0 24px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.category-pill-group {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
}

.category-pill {
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.category-pill:hover {
  color: var(--text-main);
  background: var(--bg-card);
}
.category-pill.active {
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.search-box {
  position: relative;
  min-width: 260px;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 10px 14px 10px 38px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease;
}
.search-input:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green-glow);
}
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

/* ==========================================================================
   MULTI-ROW CAROUSELS (STAKE & SHUFFLE SECTION PATTERN)
   ========================================================================== */
.carousel-section {
  margin: 0 24px 36px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-nav-arrows {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-carousel-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: bold;
}
.btn-carousel-arrow:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

/* ==========================================================================
   STAKE & SHUFFLE POSTER GAME CARDS (3:4 RATIO)
   ========================================================================== */
.game-card-poster {
  position: relative;
  flex: 0 0 185px;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  user-select: none;
}

@media (min-width: 1440px) {
  .game-card-poster {
    flex: 0 0 205px;
  }
}

.game-card-poster:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 231, 1, 0.15);
  border-color: rgba(0, 231, 1, 0.5);
  z-index: 10;
}

.game-card-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card-poster:hover .game-card-artwork {
  transform: scale(1.06);
}

.card-top-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.badge-provider {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #93c5fd;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-multiplier {
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.95);
  color: #070c14;
  font-size: 10px;
  font-weight: 900;
}

/* Hover Vignette Overlay & Center Play Button */
.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.2) 0%, rgba(7, 12, 20, 0.88) 60%, rgba(7, 12, 20, 0.98) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  z-index: 6;
}
.game-card-poster:hover .card-hover-overlay {
  opacity: 1;
}

.play-circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--neon-green);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 20px var(--neon-green-glow);
  transform: scale(0.85);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}
.game-card-poster:hover .play-circle-btn {
  transform: scale(1);
}
.play-circle-btn:hover {
  background: #1fff20;
  transform: scale(1.1) !important;
}

.card-action-btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-play-real {
  width: 100%;
  padding: 8px 0;
  background: var(--neon-green);
  color: var(--text-dark);
  border-radius: 8px;
  border: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-play-real:hover {
  background: #1fff20;
}

.btn-play-demo {
  width: 100%;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  border-radius: 8px;
  border: none;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-play-demo:hover {
  background: rgba(255, 255, 255, 0.2);
}

.card-title-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 12, 20, 0.95) 70%);
  pointer-events: none;
  z-index: 4;
}
.game-name-text {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider-text {
  font-size: 10px;
  color: var(--text-sub);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   PILAR 2: SOFTSWISS SPORTSBOOK
   ========================================================================== */
.sportsbook-container {
  margin: 0 24px 36px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .sportsbook-container {
    grid-template-columns: 1fr;
  }
}

.sports-match-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}
.sports-match-card:hover {
  background: var(--bg-card);
  border-color: rgba(0, 242, 254, 0.35);
}

.match-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.match-league {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.live-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.teams-scoreboard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
.team-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 900;
  color: var(--sports-cyan);
}

.odds-button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.odds-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-sub);
}
.odds-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--sports-cyan);
  color: var(--text-main);
}
.odds-btn.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--sports-cyan);
  color: var(--sports-cyan);
}
.odds-label { font-size: 11px; font-weight: 600; }
.odds-value { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 800; color: #ffffff; }

/* Interactive Bet Slip */
.bet-slip-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 92px;
}
.slip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}
.slip-title { font-size: 15px; font-weight: 800; color: #ffffff; }
.slip-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sports-cyan);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 800;
}

/* ==========================================================================
   PILAR 3: SOFTSWISS PREDICTION MARKETS
   ========================================================================== */
.prediction-market-grid {
  margin: 0 24px 36px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 18px;
}

.prediction-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 22px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prediction-card:hover {
  background: var(--bg-card);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.12);
}

.predict-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.predict-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.predict-volume {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.predict-question {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Dual-Color Probability Bar */
.probability-bar-wrapper {
  margin-bottom: 18px;
}
.probability-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}
.prob-yes { color: var(--neon-green); }
.prob-no { color: var(--danger-red); }

.prob-track {
  height: 10px;
  width: 100%;
  background: rgba(239, 68, 68, 0.4);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
}
.prob-fill-yes {
  height: 100%;
  background: linear-gradient(90deg, #00b801 0%, #00e701 100%);
  border-radius: 999px 0 0 999px;
  transition: width 0.5s ease;
}

.predict-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-predict-yes {
  padding: 10px 0;
  border-radius: 10px;
  background: rgba(0, 231, 1, 0.12);
  border: 1px solid rgba(0, 231, 1, 0.35);
  color: var(--neon-green);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-predict-yes:hover {
  background: var(--neon-green);
  color: var(--text-dark);
  box-shadow: 0 4px 14px var(--neon-green-glow);
}

.btn-predict-no {
  padding: 10px 0;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-predict-no:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   STAKE-STYLE LIVE BETS ROLLING TABLE
   ========================================================================== */
.live-bets-section {
  margin: 0 24px 40px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 22px;
}

.live-bets-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-bets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.live-bets-table th {
  text-align: left;
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
}

.live-bets-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.live-bets-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.payout-win {
  color: var(--neon-green);
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   GAME PLAYER THEATER MODAL
   ========================================================================== */
.game-theater-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 7, 12, 0.94);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.game-theater-content {
  width: 100%;
  max-width: 1280px;
  height: 90vh;
  background: var(--bg-abyss);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.game-theater-topbar {
  height: 60px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.game-iframe-holder {
  flex: 1;
  background: #000000;
  position: relative;
}

.game-iframe-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.game-theater-infobar {
  height: 50px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 12px;
  color: var(--text-sub);
}
