/* ========================================
   jett0ur — Main Stylesheet
   jett0ur.com | Social Casino | Light Theme
   ======================================== */

:root {
  /* ── Light Palette ── */
  --bg-main:        #F7F4EE;
  --bg-cream:       #FEFCF8;
  --bg-white:       #FFFFFF;
  --bg-soft:        #F0EDE6;
  --bg-card:        #FFFFFF;
  --bg-dark:        #1A2340;
  --bg-dark-2:      #243055;

  /* ── Accents ── */
  --accent:         #4A9EE0;
  --accent-hover:   #3A8ED0;
  --accent-gold:    #F5A623;
  --accent-gold-2:  #FFC044;
  --accent-teal:    #2EC4B6;

  /* ── Text ── */
  --text-dark:      #1A2340;
  --text-mid:       #4B5563;
  --text-soft:      #6B7280;
  --text-light:     #F9FAFB;
  --text-muted:     #9CA3AF;

  /* ── Status ── */
  --green:          #22C55E;
  --red:            #EF4444;

  /* ── Borders ── */
  --border-light:   rgba(26,35,64,.1);
  --border-mid:     rgba(26,35,64,.15);
  --border-dark:    rgba(255,255,255,.08);

  /* ── Shape & Motion ── */
  --radius:         14px;
  --radius-sm:      8px;
  --shadow-sm:      0 2px 8px rgba(74,158,224,.08);
  --shadow-md:      0 8px 28px rgba(74,158,224,.12);
  --shadow-lg:      0 16px 48px rgba(74,158,224,.18);
  --font:           'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition:     .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ==============================
   HEADER / NAV
   ============================== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(74,158,224,.07);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900; letter-spacing: -.3px;
  color: var(--text-dark);
}
.logo-img {
  width: 36px; height: 36px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(74,158,224,.3);
}
.logo-text { color: var(--text-dark); }
.logo-text span { color: var(--accent); }

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 700; color: var(--text-soft);
  transition: var(--transition);
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--text-dark); background: rgba(74,158,224,.08);
}
nav.main-nav a.active { color: var(--accent); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; background: none; border: none;
  color: var(--text-dark); font-size: 1.3rem; padding: 4px;
}

/* ==============================
   HERO — LIGHT GRADIENT
   ============================== */
.hero {
  background: linear-gradient(160deg, #EDF5FF 0%, #FFF8ED 60%, #F7F4EE 100%);
  color: var(--text-dark); padding: 90px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(74,158,224,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(74,158,224,.1); border: 1px solid rgba(74,158,224,.2);
  font-size: .78rem; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -.5px;
  color: var(--text-dark);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #4A9EE0, #F5A623);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.05rem; color: var(--text-mid); max-width: 540px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: .95rem; font-weight: 800;
  letter-spacing: .3px; transition: var(--transition); border: none; cursor: pointer;
}
.btn-hero-main {
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff; box-shadow: 0 6px 24px rgba(74,158,224,.4);
}
.btn-hero-main:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,158,224,.6); }
.btn-hero-secondary {
  background: var(--bg-white); color: var(--text-dark);
  border: 2px solid var(--border-mid);
  box-shadow: var(--shadow-sm);
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-md); }

.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat span:first-child {
  display: block; font-size: 1.6rem; font-weight: 900; color: var(--text-dark);
}
.hero-stat span:last-child {
  display: block; font-size: .75rem; font-weight: 700; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 2px;
}

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 72px 24px; }
.section-light { background: var(--bg-main); }
.section-white { background: var(--bg-white); }
.section-soft { background: var(--bg-soft); }
.section-dark  { background: var(--bg-dark); color: var(--text-light); }

.container { max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.section-head p { font-size: 1rem; color: var(--text-soft); max-width: 500px; margin: 0 auto; }
.section-dark .section-head p { color: rgba(249,250,251,.6); }

.tag-blue {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(74,158,224,.12); border: 1px solid rgba(74,158,224,.25);
  font-size: .72rem; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.tag-gold {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3);
  font-size: .72rem; font-weight: 800; color: var(--accent-gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}

/* ==============================
   FEATURED LAYOUT
   ============================== */
.featured-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start;
}
.featured-card {
  background: var(--bg-white); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-card-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.fc-open-tag {
  margin-left: auto; font-size: .65rem; font-weight: 800;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
}
.featured-art { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.featured-art img { width: 100%; height: 100%; object-fit: cover; }
.featured-art-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,64,.5) 0%, transparent 60%);
}
.featured-body { padding: 24px; }
.featured-body h2 { font-size: 1.4rem; font-weight: 900; color: var(--text-dark); margin-bottom: 8px; }
.featured-body p { font-size: .85rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }

.jackpot-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.jackpot-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 14px; border-radius: 10px; font-size: .68rem; font-weight: 800;
  letter-spacing: .3px;
}
.jackpot-pill span:first-child { font-size: .58rem; opacity: .7; text-transform: uppercase; }
.jackpot-pill span:last-child { font-size: .88rem; }
.jp-grand { background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3); color: #D97706; }
.jp-major { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: #16A34A; }
.jp-minor { background: rgba(74,158,224,.1); border: 1px solid rgba(74,158,224,.25); color: var(--accent); }
.jp-mini  { background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2); color: #9333EA; }

.btn-play-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff; font-size: .9rem; font-weight: 800;
  border: none; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(74,158,224,.4);
}
.btn-play-lg:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(74,158,224,.55); }

/* Game list aside */
.game-list-aside { display: flex; flex-direction: column; gap: 12px; }
.game-list-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border-light);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.game-list-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateX(4px); }
.game-list-thumb {
  width: 60px; height: 44px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.game-list-info { flex: 1; }
.game-list-info h4 { font-size: .88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.game-list-info span { font-size: .72rem; color: var(--text-soft); }
.game-list-arrow { color: var(--text-muted); font-size: .8rem; flex-shrink: 0; }

/* ==============================
   PROMO CARDS
   ============================== */
.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
  margin-top: 48px;
}
.promo-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(74,158,224,.2); }
.promo-card-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.promo-card h3 { font-size: .95rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.promo-card p { font-size: .78rem; color: var(--text-soft); line-height: 1.5; }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  background: linear-gradient(135deg, #1A2340 0%, #243055 100%);
  border-radius: 20px; padding: 48px 36px; text-align: center;
  border: 1px solid rgba(74,158,224,.2);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(74,158,224,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: .95rem; color: rgba(249,250,251,.6); margin-bottom: 28px; position: relative; }

/* ==============================
   SLOT GAME LAYOUT
   ============================== */
.game-page { background: #EDF4FC; min-height: 100vh; }
.game-frame-wrap {
  background: linear-gradient(160deg, #E8F4FF 0%, #FFF8ED 100%);
  border-bottom: 1px solid var(--border-light);
}
.game-frame-inner { max-width: 600px; margin: 0 auto; padding: 12px 16px; }
.game-frame-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.game-frame-header h1 { font-size: 1.1rem; font-weight: 900; color: var(--text-dark); }
.game-now-open { font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }

.slot-game {
  max-width: 560px; margin: 0 auto;
  background: linear-gradient(160deg, #1A2340 0%, #243055 50%, #1a1e2e 100%);
  position: relative; overflow: visible;
  border-radius: 16px; border: 1px solid rgba(74,158,224,.25);
  box-shadow: 0 12px 48px rgba(74,158,224,.15);
}

/* Splash */
.game-splash {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
.splash-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; letter-spacing: 2px;
  background: linear-gradient(135deg, #4A9EE0 0%, #F5A623 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.splash-subtitle { font-size: .85rem; color: rgba(249,250,251,.5); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px; }
.splash-jackpots { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.splash-jp {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 16px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  min-width: 80px;
}
.splash-jp-label { font-size: .6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(249,250,251,.4); margin-bottom: 4px; }
.splash-jp-val { font-size: 1.05rem; font-weight: 900; }
.jp-g  { color: #FFC044; }
.jp-mj { color: #22C55E; }
.jp-mn { color: #60B4FF; }
.jp-mi { color: #C084FC; }

.splash-features { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.splash-feat {
  padding: 6px 14px; border-radius: 50px;
  background: rgba(74,158,224,.12); border: 1px solid rgba(74,158,224,.25);
  font-size: .75rem; font-weight: 700; color: rgba(249,250,251,.85);
}
.btn-start {
  padding: 16px 52px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, #4A9EE0 0%, #2563eb 100%);
  color: #fff; font-size: 1.1rem; font-weight: 900; letter-spacing: 1px;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 32px rgba(74,158,224,.5);
  animation: pulseBtn 2s ease-in-out infinite;
}
.btn-start:hover { transform: scale(1.05); box-shadow: 0 12px 45px rgba(74,158,224,.7); }
@keyframes pulseBtn {
  0%,100% { box-shadow: 0 8px 32px rgba(74,158,224,.5); }
  50%      { box-shadow: 0 10px 45px rgba(74,158,224,.8); }
}

/* Game UI */
.game-ui { display: none; flex-direction: column; padding: 10px 12px; }
.game-ui.active { display: flex; }

/* Jackpot display */
.jackpot-display {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  padding: 7px 8px; background: rgba(0,0,0,.25);
  border-radius: 10px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.06);
}
.jd-item { text-align: center; min-width: 60px; }
.jd-label { font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(249,250,251,.4); display: block; }
.jd-val   { font-size: .82rem; font-weight: 900; display: block; }

/* Reels */
.reels-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
  padding: 10px; background: rgba(0,0,0,.3); border-radius: 12px; margin-bottom: 10px;
}
.reel-cell {
  width: 100%; height: 110px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: clamp(1.6rem, 5vw, 2.2rem); position: relative;
  transition: .3s; overflow: hidden;
}
.reel-cell .cell-val {
  position: absolute; bottom: 4px; right: 6px;
  font-size: .6rem; font-weight: 800; color: #FFC044;
  background: rgba(0,0,0,.5); padding: 1px 4px; border-radius: 4px;
}
.reel-cell.spinning { animation: cellSpin .12s steps(1) infinite; }
@keyframes cellSpin { 0%{transform:translateY(-4px) scale(.95)} 50%{transform:translateY(4px) scale(1.02)} 100%{transform:translateY(0) scale(1)} }
.reel-cell.win-cell { animation: winGlow .5s ease forwards; }
@keyframes winGlow {
  0%   { box-shadow: none; }
  50%  { box-shadow: 0 0 0 3px rgba(74,158,224,.9), 0 0 20px rgba(74,158,224,.5); background: rgba(74,158,224,.18); }
  100% { box-shadow: 0 0 0 2px rgba(74,158,224,.5); background: rgba(74,158,224,.1); }
}
.reel-cell.lose-cell { animation: loseDim .5s ease forwards; }
@keyframes loseDim { 0%{opacity:1} 100%{opacity:.3; filter:grayscale(.8)} }
.reel-cell.major-cell { animation: majorPulse .6s ease infinite alternate; }
@keyframes majorPulse {
  0%   { box-shadow: 0 0 0 2px rgba(34,197,94,.6); }
  100% { box-shadow: 0 0 0 4px rgba(34,197,94,.9), 0 0 24px rgba(34,197,94,.4); }
}
.reel-cell.bonus-cell { animation: bonusPulse .6s ease infinite alternate; }
@keyframes bonusPulse {
  0%   { box-shadow: 0 0 0 2px rgba(245,166,35,.6); }
  100% { box-shadow: 0 0 0 4px rgba(245,166,35,.9), 0 0 24px rgba(245,166,35,.4); }
}

/* Notifies */
.win-notify {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.8);
  z-index: 20; text-align: center; pointer-events: none; opacity: 0;
  transition: .3s cubic-bezier(.175,.885,.32,1.275);
}
.win-notify.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.win-notify-inner {
  background: rgba(26,35,64,.95); border: 1px solid rgba(74,158,224,.5);
  border-radius: 16px; padding: 16px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(74,158,224,.2);
}
.win-notify-title { font-size: .7rem; font-weight: 700; color: rgba(249,250,251,.6); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.win-notify-amount { font-size: 2.4rem; font-weight: 900; color: #FFC044; }
.win-notify-sub { font-size: .75rem; color: rgba(249,250,251,.5); margin-top: 4px; }

.lose-notify {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%) scale(.8);
  z-index: 20; text-align: center; pointer-events: none; opacity: 0;
  transition: .3s;
}
.lose-notify.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.lose-notify-inner {
  background: rgba(26,35,64,.85); border: 1px solid rgba(239,68,68,.3);
  border-radius: 14px; padding: 10px 22px;
}
.lose-notify-text { font-size: 1.1rem; font-weight: 800; color: rgba(239,68,68,.9); }

.jackpot-notify {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.5);
  z-index: 25; text-align: center; pointer-events: none; opacity: 0;
  transition: .4s cubic-bezier(.175,.885,.32,1.275);
}
.jackpot-notify.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.jackpot-notify-inner {
  background: linear-gradient(135deg, #1A2340, #243055);
  border: 2px solid #F5A623;
  border-radius: 20px; padding: 24px 36px;
  box-shadow: 0 0 60px rgba(245,166,35,.5);
}
.jackpot-notify-title { font-size: .85rem; font-weight: 700; color: rgba(249,250,251,.7); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.jackpot-notify-type  { font-size: 2rem; font-weight: 900; color: #F5A623; text-transform: uppercase; margin-bottom: 4px; }
.jackpot-notify-amount { font-size: 3rem; font-weight: 900; color: #fff; }

/* Controls */
.game-controls { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.ctrl-btn {
  padding: 7px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07); color: rgba(249,250,251,.8);
  font-size: .78rem; font-weight: 700; transition: var(--transition);
}
.ctrl-btn:hover { background: rgba(255,255,255,.14); }
.ctrl-btn.active { background: rgba(74,158,224,.25); border-color: rgba(74,158,224,.5); color: #60B4FF; }
.btn-spin {
  flex: 1; padding: 11px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, #4A9EE0, #2563eb);
  color: #fff; font-size: .95rem; font-weight: 900; letter-spacing: 1px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(74,158,224,.4);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,158,224,.6); }
.btn-spin:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-spin.spinning-anim { animation: spinBtnAnim .3s ease infinite alternate; }
@keyframes spinBtnAnim { from{box-shadow:0 4px 20px rgba(74,158,224,.4)} to{box-shadow:0 8px 35px rgba(74,158,224,.8)} }

/* Stats bar */
.game-stats {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 8px 12px; background: rgba(0,0,0,.25);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.05);
}
.game-stat { text-align: center; flex: 1; min-width: 60px; }
.game-stat-label { font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(249,250,251,.4); display: block; margin-bottom: 2px; }
.game-stat-val { font-size: .88rem; font-weight: 800; color: rgba(249,250,251,.9); display: block; }
.game-stat-val.win-color  { color: #22C55E; }
.game-stat-val.lose-color { color: #EF4444; }

/* Bottom bar */
.game-bottom-bar {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  background: rgba(0,0,0,.15); border-top: 1px solid rgba(255,255,255,.06);
  border-radius: 0 0 16px 16px; flex-wrap: wrap;
}
.bottom-nav-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  background: transparent; border: 1px solid rgba(255,255,255,.1);
  color: rgba(249,250,251,.6); font-size: .78rem; font-weight: 700;
  transition: var(--transition);
}
.bottom-nav-btn:hover { background: rgba(255,255,255,.08); color: rgba(249,250,251,.9); }

/* Bet selector */
.bet-selector { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.bet-selector label { font-size: .72rem; color: rgba(249,250,251,.5); font-weight: 700; }
.bet-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  color: rgba(249,250,251,.9); font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.bet-btn:hover { background: rgba(74,158,224,.25); border-color: rgba(74,158,224,.5); }
.bet-val { font-size: .92rem; font-weight: 900; color: #FFC044; min-width: 28px; text-align: center; }

/* ==============================
   GAME INFO / REVIEWS
   ============================== */
.game-info-section { padding: 48px 24px; background: var(--bg-soft); }
.game-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.info-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 20px; transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.info-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-card h4 { font-size: .9rem; font-weight: 800; margin-bottom: 6px; color: var(--text-dark); }
.info-card p { font-size: .8rem; color: var(--text-soft); line-height: 1.5; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.review-name { font-size: .88rem; font-weight: 800; color: var(--text-dark); }
.review-date { font-size: .72rem; color: var(--text-soft); }
.review-stars { color: var(--accent-gold); font-size: .85rem; margin-bottom: 10px; }
.review-text { font-size: .83rem; color: var(--text-soft); line-height: 1.6; }

/* ==============================
   REGULATORS BAR
   ============================== */
.regulators-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px;
}
.regulators-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.reg-logo {
  display: flex; align-items: center; gap: 8px;
  opacity: .6; transition: var(--transition); filter: none;
}
.reg-logo:hover { opacity: 1; }
.reg-logo img { height: 26px; width: auto; object-fit: contain; }
.reg-logo-text { font-size: .7rem; font-weight: 800; color: var(--text-mid); letter-spacing: .5px; white-space: nowrap; }
.badge-18 {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 900; flex-shrink: 0;
}
.reg-nz-flag { font-size: 1rem; }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--bg-dark); color: var(--text-light);
  padding: 56px 24px 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .84rem; color: rgba(249,250,251,.45); margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-col h5 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(249,250,251,.35); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: rgba(249,250,251,.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--text-light); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(249,250,251,.3); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: .78rem; color: rgba(249,250,251,.3); transition: var(--transition); }
.footer-legal-links a:hover { color: rgba(249,250,251,.7); }

/* ==============================
   TOAST
   ============================== */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--bg-dark); border: 1px solid rgba(74,158,224,.25);
  border-radius: var(--radius-sm); padding: 12px 18px;
  font-size: .85rem; color: var(--text-light);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  animation: toastIn .3s ease, toastOut .3s ease 3s forwards;
  max-width: 300px;
}
@keyframes toastIn { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes toastOut { from{opacity:1} to{opacity:0;transform:translateX(100%)} }

/* ==============================
   INFO PAGES
   ============================== */
.page-hero {
  background: linear-gradient(160deg, #EDF5FF 0%, #FFF8ED 100%);
  padding: 64px 24px 56px; color: var(--text-dark); text-align: center;
}
.page-hero .hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: var(--text-mid); }

.page-content {
  max-width: 800px; margin: 0 auto; padding: 56px 24px;
}
.page-content h2 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin: 28px 0 12px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: .9rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }
.page-content ul { margin-bottom: 14px; }
.page-content ul li { font-size: .9rem; color: var(--text-mid); padding: 6px 0 6px 18px; position: relative; }
.page-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.info-box {
  background: rgba(74,158,224,.07); border: 1px solid rgba(74,158,224,.2);
  border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 24px;
}
.info-box p { font-size: .84rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--bg-white); border: 1px solid var(--border-light);
  margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info-label { font-size: .72rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-info-val { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.contact-form-wrap {
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-mid); background: var(--bg-cream);
  font-size: .88rem; color: var(--text-dark); font-family: var(--font);
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,158,224,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 13px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff; font-size: .92rem; font-weight: 800;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(74,158,224,.35);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74,158,224,.55); }

/* Leaderboard */
.lb-table { width: 100%; border-collapse: collapse; }
.lb-table th {
  padding: 12px 16px; background: var(--bg-soft);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-soft); text-align: left; border-bottom: 2px solid var(--border-light);
}
.lb-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: .88rem; }
.lb-table tr:hover td { background: rgba(74,158,224,.04); }
.lb-rank { font-weight: 800; text-align: center; }
.lb-rank-gold   { color: #D97706; }
.lb-rank-silver { color: #6B7280; }
.lb-rank-bronze { color: #92400E; }
.lb-name  { font-weight: 700; color: var(--text-dark); }
.lb-coins { font-weight: 800; color: var(--accent); }

/* Games grid */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  background: var(--bg-white); border: 1px solid var(--border-mid);
  font-size: .82rem; font-weight: 700; color: var(--text-soft);
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 4px 14px rgba(74,158,224,.35);
}
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.game-card {
  background: var(--bg-white); border-radius: 20px;
  border: 1px solid var(--border-light); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.game-card-art { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.game-card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover .game-card-art img { transform: scale(1.04); }
.game-card-art-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,64,.5) 0%, transparent 60%);
}
.game-card-art-tags { position: absolute; bottom: 10px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.card-tag {
  padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  font-size: .65rem; font-weight: 700; color: #fff; letter-spacing: .3px;
}
.card-tag-hot { background: linear-gradient(135deg, #F5A623, #EF4444); }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.game-card-body p { font-size: .82rem; color: var(--text-soft); margin-bottom: 16px; line-height: 1.5; }
.game-card-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 16px; }
.stat-item { text-align: center; padding: 8px 4px; background: var(--bg-soft); border-radius: 8px; }
.stat-item span:first-child { display: block; font-size: .58rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; }
.stat-item span:last-child { display: block; font-size: .82rem; font-weight: 800; color: var(--text-dark); }
.game-card-actions { display: flex; gap: 10px; }
.btn-card-play {
  flex: 1; padding: 10px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff; font-size: .82rem; font-weight: 800; text-align: center;
  transition: var(--transition); border: none;
  box-shadow: 0 4px 14px rgba(74,158,224,.35);
}
.btn-card-play:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,158,224,.5); }
.btn-card-secondary {
  padding: 10px 16px; border-radius: 50px;
  background: var(--bg-soft); border: 1px solid var(--border-mid);
  color: var(--text-mid); font-size: .82rem; font-weight: 700;
  transition: var(--transition);
}
.btn-card-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 16px; background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 700; color: var(--text-soft);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(74,158,224,.08); color: var(--accent); }

/* ==============================
   CONTACT — DETAIL LIST
   ============================== */
.contact-info h2 { font-size: 1.3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 12px; }
.contact-info > p { font-size: .88rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
.contact-detail-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--bg-white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
}
.contact-detail-item > div { flex: 1; }
.contact-detail-item strong { display: block; font-size: .78rem; font-weight: 800; color: var(--text-soft); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-detail-item span,
.contact-detail-item a { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.contact-detail-item a:hover { color: var(--accent); }
.contact-note {
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.25);
  font-size: .82rem; color: var(--text-mid); line-height: 1.6;
}
.contact-note i { color: var(--accent-gold); margin-right: 6px; }
.contact-note a { color: var(--accent); font-weight: 700; }
.contact-note a:hover { text-decoration: underline; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; }

/* ==============================
   ABOUT PAGE
   ============================== */
.about-info-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(74,158,224,.07); border: 1px solid rgba(74,158,224,.2);
  font-size: .88rem; color: var(--text-mid); margin-bottom: 40px; line-height: 1.6;
}
.about-info-box i { color: var(--accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.about-info-box strong { color: var(--text-dark); }

.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.about-text h2 { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); margin-bottom: 16px; }
.about-text p { font-size: .9rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }

.about-stats-col { display: flex; flex-direction: column; gap: 12px; }
.about-stat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.about-stat-num { font-size: 1.9rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-soft); }

.responsible-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.responsible-col p { font-size: .9rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }
.responsible-links { margin: 0; }
.responsible-links li { margin-bottom: 10px; }
.responsible-links li a {
  font-size: .88rem; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.responsible-links li a:hover { text-decoration: underline; }
.btn-outline-blue {
  padding: 10px 22px; border-radius: 50px;
  border: 2px solid var(--accent); color: var(--accent);
  font-size: .85rem; font-weight: 800;
  transition: var(--transition);
}
.btn-outline-blue:hover { background: var(--accent); color: #fff; }

/* ==============================
   LEADERBOARD PAGE
   ============================== */
.lb-header-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.lb-header-row h2 { font-size: 1.4rem; font-weight: 900; color: var(--text-dark); }
.lb-resets { font-size: .82rem; color: var(--text-soft); font-weight: 700; }
.lb-resets strong { color: var(--accent); }
.lb-table-wrap {
  background: var(--bg-white); border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lb-row td { vertical-align: middle; }
.lb-gold td { background: rgba(245,166,35,.06); }
.lb-silver td { background: rgba(107,114,128,.04); }
.lb-bronze td { background: rgba(146,64,14,.04); }
.lb-rank { font-size: 1.2rem; display: block; text-align: center; }
.lb-rank-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft); font-size: .8rem; font-weight: 800; color: var(--text-soft);
}
.lb-player { font-weight: 800; color: var(--text-dark); }
.lb-spin { font-weight: 700; color: var(--text-mid); }

/* ==============================
   LEGAL CONTENT
   ============================== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.15rem; font-weight: 800; color: var(--text-dark);
  margin: 32px 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .9rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin-bottom: 14px; padding-left: 4px; }
.legal-content ul li {
  font-size: .9rem; color: var(--text-mid); padding: 5px 0 5px 20px;
  position: relative; line-height: 1.6;
}
.legal-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.legal-content a { color: var(--accent); font-weight: 700; }
.legal-content a:hover { text-decoration: underline; }

/* ==============================
   RESPONSIBLE / SUPPORT CARDS
   ============================== */
.support-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 28px; }
.support-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.support-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.support-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.support-card > div { flex: 1; }
.support-card strong { display: block; font-size: .88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.support-card span { font-size: .75rem; color: var(--text-soft); }
.support-card .fa-external-link-alt { font-size: .75rem; color: var(--text-muted); flex-shrink: 0; }

/* ==============================
   TOAST — extra variants
   ============================== */
.toast-success { border-color: rgba(34,197,94,.4); }
.toast-error   { border-color: rgba(239,68,68,.4); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .featured-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .game-list-aside { display: none; }
  .section { padding: 48px 16px; }
  /* game compact */
  .game-frame-inner { padding: 8px 10px; }
  .reel-cell { height: 90px; font-size: 1.5rem; }
  .game-ui { padding: 8px 10px; }
  .jackpot-display { gap: 4px; padding: 5px; margin-bottom: 8px; }
  .reels-grid { gap: 5px; padding: 8px; margin-bottom: 8px; }
  .game-controls { gap: 6px; margin-bottom: 6px; }
  .ctrl-btn { padding: 6px 10px; font-size: .72rem; }
  .btn-spin { padding: 9px; font-size: .85rem; }
  .game-stats { padding: 6px 10px; gap: 6px; }
  .game-bottom-bar { padding: 6px 10px; gap: 6px; }
  .bottom-nav-btn { padding: 5px 10px; font-size: .72rem; }
}
@media (max-width: 400px) {
  .reel-cell { height: 76px; font-size: 1.3rem; }
}
