/* ============================================
   GoldenEmu – Main Stylesheet
   Font: Outfit + Playfair Display
   Palette: Deep Navy / Gold / Teal accent
   ============================================ */

:root {
  --navy:      #0d0d1a;
  --navy-2:    #13132b;
  --navy-3:    #1a1a35;
  --navy-4:    #22224a;
  --gold:      #C8960C;
  --gold-light:#f0b429;
  --gold-pale: #f5d67a;
  --teal:      #00c8a0;
  --teal-dark: #009e7e;
  --white:     #ffffff;
  --text:      #d4d4e8;
  --text-muted:#8888aa;
  --border:    rgba(200,150,12,0.18);
  --card-bg:   rgba(26,26,53,0.92);
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0,0,0,0.45);
  --transition:0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-pale); }

img { max-width: 100%; display: block; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
.gold-text { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,12,0.35);
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,150,12,0.5);
  filter: brightness(1.08);
  color: var(--navy);
}
.btn-primary.btn-large { font-size: 1.05rem; padding: 16px 38px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-transform: uppercase;
}
.btn-ghost:hover {
  background: rgba(200,150,12,0.12);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-ghost.btn-large { font-size: 1.05rem; padding: 14px 36px; }

.center-cta { text-align: center; margin-top: 40px; }

/* ── AGE POPUP ── */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,18,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  padding: 16px;
}
.age-popup-overlay.hidden { display: none; }

.age-popup-box {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  animation: popIn 0.4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.age-popup-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.age-popup-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}

.age-popup-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
}

.age-popup-box h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.age-popup-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.popup-sub { color: var(--text) !important; font-size: 1rem !important; }
.popup-sub strong { color: var(--gold-light); }

.age-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 16px;
}
.age-popup-buttons .btn-primary,
.age-popup-buttons .btn-ghost {
  justify-content: center;
  width: 100%;
}

.popup-disclaimer {
  font-size: 0.78rem !important;
  color: #55556a !important;
  line-height: 1.5;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 8888;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(40px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.cookie-banner a { color: var(--gold-light); }
.btn-cookie {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: filter var(--transition);
  white-space: nowrap;
}
.btn-cookie:hover { filter: brightness(1.1); }

/* ── NAVBAR ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,26,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,150,12,0.1);
  transition: background var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--white); }
.nav-logo em { color: var(--gold-light); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(200,150,12,0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,26,0.88) 0%,
    rgba(13,13,26,0.65) 50%,
    rgba(13,13,26,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-disclaimer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: rgba(13,13,26,0.7);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── REGULATORS BAR ── */
.regulators-bar {
  background: #10101f;
  border-bottom: 1px solid rgba(200,150,12,0.12);
  padding: 14px 0;
}
.regulators-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.reg-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.reg-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.reg-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aaaacc;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.reg-item:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.reg-item.active-reg {
  background: rgba(0,200,160,0.08);
  border: 1px solid rgba(0,200,160,0.25);
  color: var(--teal);
  border-radius: 6px;
}
.reg-item.sm { font-size: 0.8rem; padding: 4px 10px; }
.reg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.reg-dot.orange { background: #f97316; box-shadow: 0 0 6px rgba(249,115,22,0.6); }
.reg-dot.teal   { background: var(--teal); box-shadow: 0 0 6px rgba(0,200,160,0.6); }
.reg-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── HIGHLIGHTS ── */
.highlights {
  padding: 90px 0;
  background: var(--navy-2);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(200,150,12,0.35);
}
.hc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.highlight-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.highlight-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ── GAMES PREVIEW ── */
.games-preview {
  padding: 90px 0;
  background: var(--navy);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.game-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.game-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-img-wrap img { transform: scale(1.06); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.game-card:hover .btn-play { transform: scale(1); }
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e53e3e;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}
.game-badge.new { background: var(--teal); color: var(--navy); }
.game-info { padding: 20px 22px; }
.game-info h3 { margin-bottom: 8px; }
.game-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.game-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── DISCLAIMER BANNER ── */
.disclaimer-banner {
  background: linear-gradient(135deg, rgba(26,26,53,0.9) 0%, rgba(22,22,45,0.9) 100%);
  border-top: 1px solid rgba(200,150,12,0.2);
  border-bottom: 1px solid rgba(200,150,12,0.2);
  padding: 36px 0;
}
.disclaimer-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(200,150,12,0.06);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.disclaimer-icon { font-size: 2rem; flex-shrink: 0; }
.disclaimer-text strong { color: var(--gold-light); font-size: 1.05rem; display: block; margin-bottom: 8px; }
.disclaimer-text p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── LEADERBOARD PREVIEW ── */
.leaderboard-preview {
  padding: 90px 0;
  background: var(--navy-2);
}
.lb-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.lb-table thead tr {
  background: rgba(200,150,12,0.12);
}
.lb-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.lb-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
  white-space: nowrap;
}
.lb-table tbody tr:last-child td { border-bottom: none; }
.lb-table tbody tr {
  transition: background var(--transition);
}
.lb-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.lb-table tbody tr:nth-child(1) .rank-num { color: #FFD700; font-weight: 800; }
.lb-table tbody tr:nth-child(2) .rank-num { color: #C0C0C0; font-weight: 800; }
.lb-table tbody tr:nth-child(3) .rank-num { color: #CD7F32; font-weight: 800; }
.rank-num { font-weight: 700; font-family: 'Playfair Display', serif; }
.player-name { font-weight: 600; color: var(--white); }
.coins-val { color: var(--gold-light); font-weight: 700; }
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px rgba(0,200,160,0.7);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FOOTER ── */
.site-footer {
  background: #08080f;
  border-top: 1px solid rgba(200,150,12,0.12);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0 10px;
  line-height: 1.7;
}
.footer-address {
  font-size: 0.82rem !important;
  color: #555570 !important;
  margin-top: 4px !important;
}
.footer-address a { color: var(--gold); }
.footer-logo { margin-bottom: 4px; }
.footer-nav h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-regulators {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-copy {
  font-size: 0.78rem;
  color: #444455;
  line-height: 1.6;
  max-width: 760px;
}

/* ── INNER PAGE HEADER ── */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #333348; }

/* ── INNER PAGE CONTENT ── */
.page-content {
  padding: 60px 0 90px;
}
.content-block {
  max-width: 860px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--gold-light);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.content-block h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--white); }
.content-block p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 14px; line-height: 1.75; }
.content-block ul { color: var(--text-muted); font-size: 0.95rem; padding-left: 20px; margin-bottom: 14px; }
.content-block li { margin-bottom: 6px; line-height: 1.7; }
.content-block strong { color: var(--text); }
.content-block a { color: var(--gold-light); }
.last-updated { display: inline-block; background: rgba(200,150,12,0.1); border: 1px solid var(--border); padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 32px; }

/* ── GAMES PAGE ── */
.games-page { padding: 90px 0; }
.game-full-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
.game-full-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.game-full-header h2 { font-size: 1.6rem; margin: 0; }
.game-tag {
  display: inline-block;
  background: rgba(0,200,160,0.12);
  border: 1px solid rgba(0,200,160,0.3);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Slot Machine */
.slot-machine {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.slot-display {
  background: #08080f;
  border: 2px solid rgba(200,150,12,0.3);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 560px;
}
.slot-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.slot-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.slot-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.slot-info-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.slot-reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.slot-reel {
  width: 90px;
  height: 90px;
  background: var(--navy-3);
  border: 2px solid rgba(200,150,12,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
}
.slot-reel.spinning { animation: reelSpin 0.15s linear infinite; }
@keyframes reelSpin {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.slot-reel.win-flash { animation: winFlash 0.5s ease 3; }
@keyframes winFlash {
  0%, 100% { border-color: rgba(200,150,12,0.2); background: var(--navy-3); }
  50%       { border-color: var(--gold-light); background: rgba(200,150,12,0.15); }
}
.slot-paylines {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.slot-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.bet-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 12px;
}
.bet-control label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.bet-control input[type="range"] {
  width: 100px;
  accent-color: var(--gold);
}
.bet-control span { font-weight: 700; color: var(--gold-light); min-width: 30px; text-align: center; }
.spin-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,12,0.4);
  text-transform: uppercase;
}
.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(200,150,12,0.55);
  filter: brightness(1.08);
}
.spin-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.slot-message {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  min-height: 24px;
  color: var(--gold-light);
  transition: opacity 0.3s;
}

/* Blackjack */
.blackjack-game {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bj-table {
  background: radial-gradient(ellipse at center, #0a3d2b 0%, #062518 100%);
  border: 3px solid rgba(200,150,12,0.35);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 620px;
}
.bj-area { text-align: center; margin-bottom: 16px; }
.bj-area-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  font-weight: 600;
}
.bj-score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 8px;
}
.cards-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 90px;
}
.card {
  width: 62px;
  height: 88px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 7px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  font-size: 1rem;
  font-weight: 800;
  animation: cardDeal 0.3s ease;
  flex-shrink: 0;
}
@keyframes cardDeal {
  from { transform: translateY(-20px) scale(0.8); opacity: 0; }
  to   { transform: translateY(0) scale(1);    opacity: 1; }
}
.card.red { color: #dc2626; }
.card.black { color: #111; }
.card.hidden {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e40af 100%);
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0px, transparent 4px,
    rgba(255,255,255,0.06) 4px, rgba(255,255,255,0.06) 8px
  );
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; font-size: 0.85rem; }
.card-mid { text-align: center; font-size: 1.3rem; line-height: 1; }
.card-bot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.85rem; transform: rotate(180deg); }
.bj-divider {
  border: none;
  border-top: 1px solid rgba(200,150,12,0.2);
  margin: 12px 0;
}
.bj-info-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.bj-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.bj-btn {
  background: var(--navy-3);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bj-btn:hover:not(:disabled) {
  background: rgba(200,150,12,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bj-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 16px rgba(200,150,12,0.35);
}
.bj-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.bj-message {
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-light);
  min-height: 26px;
}

/* ── LEADERBOARD PAGE ── */
.leaderboard-page { padding: 60px 0 90px; }
.lb-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lb-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lb-filter-btn {
  background: var(--navy-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.lb-filter-btn.active, .lb-filter-btn:hover {
  background: rgba(200,150,12,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}
.lb-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
}
.lb-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s infinite;
}

/* ── CONTACT PAGE ── */
.contact-page { padding: 60px 0 90px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-card, .contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-card h2, .contact-info-card h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-3); }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(200,150,12,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; font-family: 'Outfit',sans-serif; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text p { font-size: 0.95rem; color: var(--text); }
.contact-info-text a { color: var(--gold-light); }
.form-success {
  display: none;
  background: rgba(0,200,160,0.1);
  border: 1px solid rgba(0,200,160,0.3);
  border-radius: var(--radius-sm);
  color: var(--teal);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-top: 16px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,26,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .nav-toggle { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-disclaimer-strip { gap: 12px; font-size: 0.76rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .slot-reels { gap: 5px; }
  .slot-reel { width: 70px; height: 70px; font-size: 2.2rem; }
  .cookie-banner { flex-direction: column; gap: 10px; white-space: normal; text-align: center; border-radius: 14px; padding: 16px 20px; }
  .regulators-bar .container { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .age-popup-box { padding: 32px 22px; }
  .wheel-game-wrap { flex-direction: column; }
  .nr-tiles-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── LUCKY WHEEL GAME ── */
.wheel-game-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  flex-wrap: wrap;
}
.wheel-canvas-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wheel-outer {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(200,150,12,0.25), 0 0 80px rgba(200,150,12,0.1);
}
.wheel-controls-side {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── NUMBER RUSH GAME ── */
.nr-game-wrap {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nr-timer-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nr-timer-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
}
.nr-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 50px;
  transition: width 0.9s linear;
}
.nr-timer-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
}
.nr-play-area {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.nr-target-box {
  background: rgba(200,150,12,0.08);
  border: 2px solid rgba(200,150,12,0.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nr-target-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}
.nr-target-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.nr-target-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.nr-tiles-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-width: 240px;
}
.nr-tile {
  background: var(--navy-3);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 18px 0;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.nr-tile:hover {
  background: rgba(200,150,12,0.1);
  border-color: var(--gold);
  transform: scale(1.04);
}
.nr-tile.selected {
  background: rgba(200,150,12,0.2);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: scale(1.06);
  box-shadow: 0 0 14px rgba(200,150,12,0.35);
}
.nr-tile-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 32px;
}
.nr-message {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  min-height: 24px;
}
.nr-bottom-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.nr-stats {
  flex-wrap: wrap;
  gap: 12px;
}

/* ── SHARED GAME COMPONENTS ── */
.game-stats-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.wheel-paytable {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.paytable-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.paytable-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.paytable-grid span {
  background: rgba(200,150,12,0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}
.pt-hot {
  background: rgba(0,200,160,0.1) !important;
  border-color: rgba(0,200,160,0.3) !important;
  color: var(--teal) !important;
}
.wheel-message-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  min-height: 46px;
  display: flex;
  align-items: center;
}
.stake-control-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stake-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.stake-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
}
.stake-slider-wrap input[type="range"] {
  flex: 1;
  accent-color: var(--gold);
}
.stake-display {
  font-weight: 700;
  color: var(--gold-light);
  min-width: 44px;
  text-align: right;
  font-size: 0.95rem;
}
.spin-action-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,12,0.4);
  width: 100%;
}
.spin-action-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(200,150,12,0.55);
  filter: brightness(1.08);
}
.spin-action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.game-fine-print {
  font-size: 0.74rem;
  color: #3a3a50;
  text-align: center;
  margin-top: 4px;
}
