/* Sunset Orange Theme - Premium Social Casino */
:root {
  --primary: #EA580C;
  --primary-dark: #d64400;
  --primary-light: #fe6c20;
  --secondary: #FB923C;
  --secondary-dark: #e77e28;
  --accent: #FDBA74;
  --background: #1A1A1A;
  --background-light: #242424;
  --surface: #262626;
  --surface-light: #353535;
  --text: #FFF7ED;
  --text-muted: #FED7AA;
  --text-dim: #eac396;
  --gold: #ffd700;
  --gold-dark: #b8860b;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-primary: 0 0 20px rgba(234, 88, 12, 0.4);
  --glow-gold: 0 0 20px rgba(251, 191, 36, 0.4);
}

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

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==================== AGE VERIFICATION GATE ==================== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--background) 0%, var(--background-light) 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: var(--surface);
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--surface-light);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.age-gate-logo {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.age-gate-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.age-gate-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.age-gate-disclaimer {
  background: var(--background-light);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
  border-left: 4px solid var(--primary);
}

.age-gate-disclaimer p {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.age-gate-disclaimer ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.age-gate-disclaimer li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.age-gate-disclaimer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.age-gate-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.age-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.age-btn-yes {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: var(--primary);
}

.age-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.age-btn-no {
  background: var(--surface-light);
  color: var(--text-muted);
  border-color: var(--surface-light);
}

.age-btn-no:hover {
  background: var(--surface);
  border-color: var(--text-dim);
}

.age-gate-footer {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.age-gate-footer a {
  color: var(--primary);
  text-decoration: none;
}

.age-gate-footer a:hover {
  text-decoration: underline;
}

/* Exit Page */
.exit-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exit-page.active {
  display: flex;
}

.exit-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.exit-content h2 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 1rem;
}

.exit-content p {
  color: var(--text-muted);
}

.exit-redirect {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Main Content */
.main-content {
  display: none;
}

.main-content.visible {
  display: block;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at top, rgba(234, 88, 12, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--background-light) 0%, var(--background) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(234, 88, 12, 0.3);
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.coin-display {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.coin-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.coin-icon {
  font-size: 1.75rem;
  animation: coinBounce 2s ease-in-out infinite;
}

@keyframes coinBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(10deg); }
}

.coin-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.coin-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  line-height: 1;
}

.coin-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==================== GAME SECTION ==================== */
.game-section {
  padding: 1rem 1rem 3rem;
}

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

.game-header {
  text-align: center;
  margin-bottom: 1rem;
}

.game-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.title-icon {
  font-size: 1.25rem;
}

.game-subtitle {
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

/* ==================== SLOT MACHINE ==================== */
.slot-machine {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-light) 100%);
  border-radius: 20px;
  padding: 1.25rem;
  border: 3px solid var(--primary);
  box-shadow:
    var(--glow-primary),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.slot-frame {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  border: 2px solid var(--surface-light);
  margin-bottom: 1rem;
}

.slot-lights {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  animation: blink 1s ease-in-out infinite;
}

.light:nth-child(2) { animation-delay: 0.1s; }
.light:nth-child(3) { animation-delay: 0.2s; }
.light:nth-child(4) { animation-delay: 0.3s; }
.light:nth-child(5) { animation-delay: 0.4s; }
.light:nth-child(6) { animation-delay: 0.5s; }
.light:nth-child(7) { animation-delay: 0.6s; }
.light:nth-child(8) { animation-delay: 0.7s; }

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--secondary); }
  50% { opacity: 0.3; box-shadow: none; }
}

.slot-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.reel-container {
  position: relative;
}

.reel {
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #0a0f1a 0%, #1a2332 50%, #0a0f1a 100%);
  border-radius: 10px;
  border: 3px solid var(--gold-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 5px 15px rgba(0,0,0,0.5),
    0 0 15px rgba(255, 215, 0, 0.2);
}

.reel-inner {
  font-size: 2.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.1s ease-out;
}

.reel.spinning .reel-inner {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(-20%); }
  100% { transform: translateY(20%); }
}

.win-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 3px;
  background: transparent;
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}

.win-line.active {
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
  animation: winPulse 0.5s ease-in-out 3;
}

@keyframes winPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.result-display {
  text-align: center;
  min-height: 2rem;
  margin-bottom: 1rem;
}

.result-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-muted);
}

.result-display.win .result-text {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(251, 146, 60, 0.5);
  animation: resultPop 0.3s ease-out;
}

.result-display.jackpot .result-text {
  color: var(--gold);
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: jackpotText 0.5s ease-out;
}

@keyframes resultPop {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes jackpotText {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.bet-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.bet-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.bet-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--background);
  padding: 0.5rem;
  border-radius: 50px;
  border: 2px solid var(--surface-light);
}

.bet-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--surface);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bet-btn svg {
  width: 20px;
  height: 20px;
}

.bet-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.bet-btn:active {
  transform: scale(0.95);
}

.bet-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
  justify-content: center;
}

.bet-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
}

.bet-coin {
  font-size: 1.25rem;
}

.spin-btn {
  width: 100%;
  max-width: 240px;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow:
    0 4px 15px rgba(234, 88, 12, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.spin-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.spin-btn:hover::before {
  left: 100%;
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(234, 88, 12, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.spin-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spin-btn.spinning {
  animation: spinBtnPulse 0.3s ease-in-out infinite;
}

@keyframes spinBtnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.98); }
}

.spin-icon {
  font-size: 1.5rem;
}

/* ==================== PAY TABLE ==================== */
.pay-table {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--surface-light);
}

.pay-table h3,
.rules-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-icon {
  font-size: 1.25rem;
}

.pay-table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 12px;
  border: 1px solid var(--surface-light);
  transition: all 0.3s;
}

.pay-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.pay-item.highlight {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(253, 186, 116, 0.1) 100%);
  border-color: var(--secondary);
}

.pay-symbol-wrap {
  width: 50px;
  height: 50px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-symbol {
  font-size: 2rem;
}

.pay-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--secondary);
}

.pay-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== RULES SECTION ==================== */
.rules-section {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--surface-light);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 12px;
}

.rule-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.rule-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==================== COMPLIANCE NOTICE ==================== */
.compliance-notice {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.compliance-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.compliance-text strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.compliance-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==================== REWARDS SECTION ==================== */
.rewards-section,
.leaderboard-section,
.vip-section {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--surface-light);
}

.rewards-section h3,
.leaderboard-section h3,
.vip-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.rewards-intro,
.vip-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.rewards-tiers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reward-tier {
  background: var(--background-light);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--surface-light);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--surface-light);
}

.tier-coins {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--secondary);
}

.tier-label {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.tier-rewards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.reward-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--surface-light);
  transition: all 0.3s;
}

.reward-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.reward-logo-wrap {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.25rem;
}

.reward-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reward-logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
  border-radius: 8px;
}

.reward-brand {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rewards-disclaimer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ==================== LEADERBOARD SECTION ==================== */
.leaderboard-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 12px;
  border: 1px solid var(--surface-light);
  transition: all 0.3s;
}

.leaderboard-row:hover {
  border-color: var(--primary);
}

.leaderboard-row.top-player {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(253, 186, 116, 0.1) 100%);
  border-color: var(--secondary);
}

.rank {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
  background: var(--surface);
  border-radius: 50%;
  flex-shrink: 0;
}

.top-player .rank {
  background: transparent;
  font-size: 1.5rem;
}

.player-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-light);
  flex-shrink: 0;
}

.top-player .player-avatar {
  border-color: var(--secondary);
  box-shadow: 0 0 10px rgba(251, 146, 60, 0.3);
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.player-name {
  font-weight: 600;
  color: var(--text);
}

.player-level {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.player-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
}

.stat-value {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 0.9rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recent-winners {
  background: var(--background-light);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--surface-light);
}

.recent-winners h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.winners-ticker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.winner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem;
  background: var(--surface);
  border-radius: 8px;
}

.winner-name {
  font-weight: 600;
  color: var(--text);
}

.winner-amount {
  color: var(--secondary);
  font-weight: 600;
}

.winner-time {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==================== VIP SECTION ==================== */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.vip-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--background-light);
  border-radius: 12px;
  border: 2px solid var(--surface-light);
  transition: all 0.3s;
}

.vip-level:hover {
  transform: translateY(-3px);
  border-color: var(--level-color);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.vip-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.vip-multiplier {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}

.vip-requirement {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==================== JACKPOT MODAL ==================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0% { transform: scale(0.5) rotate(-5deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.jackpot-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
  animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2s linear infinite;
  background-size: 200% auto;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.jackpot-coins {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.jackpot-coins span {
  font-size: 2rem;
  animation: coinFall 0.5s ease-out;
}

.jackpot-coins span:nth-child(2) { animation-delay: 0.1s; }
.jackpot-coins span:nth-child(3) { animation-delay: 0.2s; }

@keyframes coinFall {
  0% { transform: translateY(-50px) rotate(-180deg); opacity: 0; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

.jackpot-message {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.jackpot-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.continue-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(234, 88, 12, 0.4);
}

/* ==================== EMAIL MODAL ==================== */
.email-modal-content {
  max-width: 400px;
}

.email-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.email-message {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.email-message span,
.email-message strong {
  color: var(--secondary);
  font-weight: 700;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.email-form input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--surface-light);
  border-radius: 12px;
  background: var(--background);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s;
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.email-form input::placeholder {
  color: var(--text-dim);
}

.claim-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--background);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(251, 146, 60, 0.4);
}

.email-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.skip-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.skip-btn:hover {
  color: var(--text-muted);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--surface);
  padding: 3rem 2rem;
  border-top: 1px solid var(--surface-light);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  background: var(--background-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
}

.footer-disclaimer p:first-child {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-disclaimer p:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.copyright {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 640px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.875rem;
  }

  .hero {
    padding: 1rem 0.75rem 0.75rem;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .game-section {
    padding: 0.75rem 0.75rem 2rem;
  }

  .slot-display {
    gap: 0.5rem;
  }

  .reel {
    width: 70px;
    height: 70px;
  }

  .reel-inner {
    font-size: 2.25rem;
  }

  .pay-table-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .age-gate-content {
    padding: 2rem 1.5rem;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .compliance-notice {
    flex-direction: column;
    text-align: center;
  }

  .rewards-section,
  .leaderboard-section,
  .vip-section {
    padding: 1.5rem;
  }

  .tier-rewards {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaderboard-row {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .player-avatar {
    width: 36px;
    height: 36px;
  }
}