/* ============================================
   Fire Mountain - Social Casino Entertainment
   New Zealand | 18+ Entertainment Only
   ============================================ */

:root {
  --fire-orange: #FF6B2B;
  --fire-gold: #FFB347;
  --fire-deep: #1A0A00;
  --fire-dark: #0D0500;
  --fire-mid: #2A1200;
  --fire-ember: #FF4500;
  --mountain-slate: #1C1C2E;
  --mountain-deep: #0F0F1A;
  --accent-teal: #00E5CC;
  --accent-purple: #8B5CF6;
  --text-primary: #F5F0EB;
  --text-muted: #A89080;
  --gold-glow: #FFD700;
  --green-win: #00FF88;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-fire: 0 0 30px rgba(255,107,43,0.35);
  --shadow-deep: 0 8px 40px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: var(--mountain-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mountain-deep); }
::-webkit-scrollbar-thumb { background: var(--fire-orange); border-radius: 3px; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,5,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,43,0.2);
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 0 18px rgba(255,107,43,0.5);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-emblem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child {
  font-size: 17px;
  font-weight: 800;
  color: var(--fire-gold);
  letter-spacing: 0.5px;
}
.logo-text span:last-child {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--fire-gold);
  background: rgba(255,179,71,0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember)) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(255,107,43,0.4);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(255,107,43,0.6) !important;
}

.nav-18plus {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fire-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,107,43,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(255,179,71,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139,92,246,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0D0500 0%, #1A0A00 50%, #0F0F1A 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fire-gold);
  margin-bottom: 24px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,107,43,0.2); }
  50% { box-shadow: 0 0 20px rgba(255,107,43,0.5); }
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-win);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold), #FFE066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 36px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--fire-orange);
  border-radius: 0 6px 6px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: var(--shadow-fire);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::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;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255,107,43,0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--fire-gold);
  color: var(--fire-gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--fire-gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  height: 480px;
}

.hero-slot-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  background: linear-gradient(145deg, #1E0D00, #2A1500);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,179,71,0.3);
  box-shadow: 0 0 60px rgba(255,107,43,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 24px;
  overflow: hidden;
}

.hero-slot-preview::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--fire-orange), transparent, var(--fire-gold), transparent);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.4;
}

.preview-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-gold);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.preview-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.preview-reel {
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,179,71,0.15);
  position: relative;
}

.preview-spin-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}
.preview-spin-btn:hover {
  box-shadow: 0 0 20px rgba(255,107,43,0.6);
}

.preview-credits {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  font-size: 12px;
}
.preview-credits span:first-child { color: var(--text-muted); }
.preview-credits span:last-child { color: var(--fire-gold); font-weight: 700; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(26,10,0,0.9);
  border: 1px solid rgba(255,179,71,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  animation: float-card 4s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: -1.5s; }
.floating-card:nth-child(3) { animation-delay: -3s; }

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

.fc-win { top: 8%; right: -5%; }
.fc-free { bottom: 15%; left: -8%; }
.fc-hot { top: 55%; right: -10%; }

.fc-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fc-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--green-win);
  margin-top: 2px;
}
.fc-value.gold { color: var(--fire-gold); }
.fc-value.orange { color: var(--fire-orange); }

/* ============ SECTIONS ============ */
.section {
  padding: 90px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.3), transparent);
  margin: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fire-orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============ GAME CARDS ============ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.game-card {
  background: linear-gradient(145deg, #1E0D00, #160A00);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,179,71,0.15);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,43,0.5);
  box-shadow: 0 20px 60px rgba(255,107,43,0.2);
}

.game-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--fire-mid);
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card-thumb img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,5,0,0.9) 0%, rgba(13,5,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-hot { background: rgba(255,69,0,0.3); color: #FF6B2B; border: 1px solid rgba(255,69,0,0.4); }
.badge-new { background: rgba(0,229,204,0.2); color: var(--accent-teal); border: 1px solid rgba(0,229,204,0.3); }
.badge-popular { background: rgba(139,92,246,0.2); color: var(--accent-purple); border: 1px solid rgba(139,92,246,0.3); }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .play-overlay { opacity: 1; }

.play-btn-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 30px rgba(255,107,43,0.6);
  transform: scale(0.8);
  transition: var(--transition);
}
.game-card:hover .play-btn-circle { transform: scale(1); }

.game-card-info {
  padding: 18px;
}

.game-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.game-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.game-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.gs-item { display: flex; flex-direction: column; gap: 2px; }
.gs-val { font-size: 15px; font-weight: 700; color: var(--fire-gold); }
.gs-key { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.btn-play-card {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-play-card:hover {
  box-shadow: 0 0 20px rgba(255,107,43,0.5);
  transform: translateY(-1px);
}

/* ============ FEATURES ============ */
.features-bg {
  background: linear-gradient(180deg, var(--mountain-deep), rgba(26,10,0,0.5), var(--mountain-deep));
  padding: 90px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { 
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-4px);
  background: rgba(255,107,43,0.04);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,43,0.15), rgba(255,179,71,0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  border: 1px solid rgba(255,179,71,0.2);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ HOW TO PLAY ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover {
  border-color: rgba(255,107,43,0.25);
  background: rgba(255,107,43,0.03);
}

.step-num {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ RESPONSIBLE GAMBLING ============ */
.rg-section {
  background: linear-gradient(135deg, rgba(26,10,0,0.8), rgba(15,15,26,0.8));
  border-top: 1px solid rgba(255,107,43,0.2);
  border-bottom: 1px solid rgba(255,107,43,0.2);
  padding: 80px 32px;
}

.rg-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.rg-message {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.rg-tools {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.rg-tool-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
}
.rg-tool-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.rg-tool-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.rg-tool-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.rg-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rg-logo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.rg-logo-card:hover {
  border-color: rgba(255,107,43,0.3);
  background: rgba(255,107,43,0.04);
  transform: translateY(-2px);
}
.rg-logo-card img {
  height: 36px;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
}
.rg-logo-card span {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ============ DISCLAIMER BANNER ============ */
.disclaimer-bar {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,107,43,0.15);
  padding: 16px 32px;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.disclaimer-bar a { color: var(--fire-gold); text-decoration: underline; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--fire-dark);
  border-top: 1px solid rgba(255,107,43,0.2);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255,107,43,0.2);
  color: var(--fire-gold);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fire-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-icon { color: var(--fire-orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.contact-text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--fire-gold); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.footer-badge-img {
  height: 32px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
  filter: grayscale(0.3);
}
.footer-badge-img:hover { opacity: 1; filter: none; }

/* ============ AGE GATE MODAL ============ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,3,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-box {
  background: linear-gradient(145deg, #1E0D00, #2A1500);
  border: 1px solid rgba(255,179,71,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,107,43,0.3);
  animation: modal-in 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes modal-in {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.age-gate-logo { margin: 0 auto 24px; }
.age-gate-icon {
  font-size: 56px;
  margin-bottom: 8px;
}

.age-gate-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(255,107,43,0.5);
}

.age-gate-title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.age-gate-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 32px;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
}

.age-gate-btns {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.btn-age-yes {
  padding: 16px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--transition);
}
.btn-age-yes:hover {
  box-shadow: 0 0 25px rgba(255,107,43,0.6);
  transform: translateY(-2px);
}

.btn-age-no {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.btn-age-no:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: rgba(13,5,0,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,107,43,0.25);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}
.cookie-text a { color: var(--fire-gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-cookie-accept:hover { box-shadow: 0 0 15px rgba(255,107,43,0.4); }

.btn-cookie-decline {
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-cookie-decline:hover { color: var(--text-primary); }

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 130px 32px 60px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,107,43,0.12) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255,107,43,0.1);
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 32px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--fire-gold);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,179,71,0.15);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a { color: var(--fire-gold); text-decoration: underline; }

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: italic;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.highlight-box {
  background: rgba(255,107,43,0.06);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--fire-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(255,107,43,0.25);
  background: rgba(255,107,43,0.03);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255,107,43,0.15), rgba(255,179,71,0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255,179,71,0.2);
}
.contact-card-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.contact-card-body a { color: var(--fire-gold); }

/* ============ RG PAGE ============ */
.rg-hero {
  text-align: center;
  padding: 130px 32px 60px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,107,43,0.1) 0%, transparent 70%);
}

.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.rg-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}
.rg-card:hover {
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-4px);
}

.rg-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.rg-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.rg-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-orgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.support-org-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.support-org-card:hover {
  border-color: rgba(255,107,43,0.35);
  background: rgba(255,107,43,0.04);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,107,43,0.15);
}
.support-org-card img {
  height: 44px;
  object-fit: contain;
  filter: brightness(1.1);
}
.support-org-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.support-org-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.support-org-card .org-link {
  font-size: 12px;
  color: var(--fire-gold);
  font-weight: 600;
  margin-top: 4px;
}

/* ============ GAMES PAGE ============ */
.game-engine-wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
}

.game-selector {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.game-tab {
  flex: 1;
  min-width: 200px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.game-tab:hover, .game-tab.active {
  border-color: rgba(255,107,43,0.5);
  background: rgba(255,107,43,0.06);
}
.game-tab.active { border-color: var(--fire-orange); }

.game-tab-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.game-tab-type {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-frame {
  display: none;
}
.game-frame.active { display: block; }

/* Slot Machine Styles */
.slot-machine {
  background: linear-gradient(145deg, #1A0800, #0D0400);
  border-radius: 24px;
  border: 2px solid rgba(255,179,71,0.2);
  box-shadow: 0 0 80px rgba(255,107,43,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}

.slot-machine::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-ember), var(--fire-gold), var(--fire-ember));
  animation: scan-line 3s linear infinite;
}
@keyframes scan-line {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.slot-header {
  background: linear-gradient(135deg, #2A1000, #1A0800);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,179,71,0.1);
}

.slot-game-name {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.slot-hud {
  display: flex;
  gap: 20px;
}

.hud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  border: 1px solid rgba(255,179,71,0.1);
  min-width: 80px;
}
.hud-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hud-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--fire-gold);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.hud-value.win-flash { color: var(--green-win); animation: flash-green 0.4s ease-in-out 3; }
@keyframes flash-green {
  0%,100% { color: var(--fire-gold); }
  50% { color: var(--green-win); text-shadow: 0 0 10px var(--green-win); }
}

.slot-body {
  padding: 28px;
}

.reels-wrap {
  background: rgba(0,0,0,0.6);
  border-radius: 16px;
  border: 1px solid rgba(255,179,71,0.15);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.win-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.win-line.active { opacity: 1; animation: pulse-line 0.6s ease-in-out infinite; }
@keyframes pulse-line {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; box-shadow: 0 0 10px var(--fire-gold); }
}

.reels-row {
  display: grid;
  gap: 10px;
  justify-content: center;
}

.reel {
  background: linear-gradient(180deg, #0A0400, #150A00);
  border-radius: 10px;
  border: 1px solid rgba(255,179,71,0.15);
  height: 110px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.reel::before, .reel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 30%;
  z-index: 2;
  pointer-events: none;
}
.reel::before {
  top: 0;
  background: linear-gradient(180deg, rgba(10,4,0,0.8), transparent);
}
.reel::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(10,4,0,0.8), transparent);
}

.reel-symbol {
  position: absolute;
  font-size: 52px;
  line-height: 110px;
  text-align: center;
  width: 100%;
  transition: transform 0.05s;
}

.reel.spinning .reel-symbol {
  animation: reel-spin 0.08s linear infinite;
}
@keyframes reel-spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-110px); }
}

.reel.win-glow {
  box-shadow: 0 0 20px var(--fire-gold), inset 0 0 20px rgba(255,215,0,0.1);
  border-color: var(--fire-gold);
}

.slot-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.bet-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bet-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bet-selector {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bet-btn {
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.bet-btn:hover { color: var(--fire-gold); border-color: rgba(255,179,71,0.3); }
.bet-btn.active { background: rgba(255,107,43,0.15); color: var(--fire-gold); border-color: rgba(255,107,43,0.4); }

.spin-btn {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-ember));
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 0 30px rgba(255,107,43,0.4), 0 4px 15px rgba(0,0,0,0.5);
}
.spin-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,179,71,0.3);
  animation: spin-ring 3s linear infinite;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(255,107,43,0.6), 0 4px 20px rgba(0,0,0,0.5);
}
.spin-btn:active { transform: scale(0.96); }
.spin-btn.spinning {
  animation: spin-bounce 0.3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spin-bounce {
  0%,100% { transform: scale(1); }
  50% { transform: scale(0.95); }
}
.spin-btn.disabled { opacity: 0.4; pointer-events: none; }

.auto-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.lines-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.lines-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lines-btns {
  display: flex;
  gap: 6px;
}
.lines-btn {
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.lines-btn:hover { color: var(--fire-gold); border-color: rgba(255,179,71,0.3); }
.lines-btn.active { background: rgba(0,229,204,0.1); color: var(--accent-teal); border-color: rgba(0,229,204,0.3); }

/* Win notification */
.win-notification {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(26,10,0,0.98));
  border: 2px solid var(--fire-gold);
  border-radius: 16px;
  padding: 20px 32px;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 60px rgba(255,215,0,0.4);
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  min-width: 180px;
}
.win-notification.show {
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.win-notification .win-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--green-win);
  text-shadow: 0 0 20px var(--green-win);
  line-height: 1;
}
.win-notification .win-label {
  font-size: 11px;
  color: var(--fire-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.win-notification .win-type {
  font-size: 14px;
  color: var(--fire-gold);
  margin-top: 4px;
}

/* Paytable */
.paytable {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,179,71,0.1);
  padding: 16px 20px;
  margin-top: 16px;
}
.paytable-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}
.pt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.pt-symbol { font-size: 24px; }
.pt-mult { font-size: 12px; font-weight: 700; color: var(--fire-gold); }

/* Bonus badge */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(59,130,246,0.3));
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: 0.5px;
}

.slot-footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,179,71,0.08);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

.slot-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============ WIN HISTORY ============ */
.win-history {
  margin-top: 24px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,179,71,0.08);
  padding: 16px 20px;
}
.history-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 160px;
  overflow-y: auto;
}
.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  animation: slide-in 0.3s ease forwards;
}
@keyframes slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.history-symbols { color: var(--text-muted); font-size: 16px; }
.history-win { color: var(--green-win); font-weight: 700; }
.history-credits { color: var(--text-muted); font-size: 12px; }

/* ============ TICKER ============ */
.live-ticker {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,107,43,0.15);
  border-bottom: 1px solid rgba(255,107,43,0.15);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ticker-item .t-name { color: var(--text-primary); font-weight: 600; }
.ticker-item .t-win { color: var(--green-win); font-weight: 700; }
.ticker-dot { width: 4px; height: 4px; background: var(--fire-orange); border-radius: 50%; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 360px; }
  .rg-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(7,3,0,0.98);
    padding: 20px;
    border-bottom: 1px solid rgba(255,107,43,0.2);
    gap: 4px;
    z-index: 999;
  }
  .main-nav.open a { padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; }
  
  .hero-content { padding: 60px 24px; }
  .hero-visual { display: none; }
  
  .section { padding: 60px 24px; }
  
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .slot-controls { grid-template-columns: 1fr; gap: 16px; }
  .auto-controls { align-items: flex-start; }
  .slot-hud { gap: 10px; }
  .hud-item { min-width: 64px; padding: 6px 10px; }
  .hud-value { font-size: 15px; }
  
  .slot-header { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .slot-body { padding: 20px; }
  
  .rg-logos { grid-template-columns: repeat(2, 1fr); }
  
  .age-gate-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .btn-primary, .btn-secondary { padding: 13px 20px; font-size: 14px; }
  .games-grid { grid-template-columns: 1fr; }
  .reel { height: 90px; font-size: 40px; }
  .spin-btn { width: 76px; height: 76px; font-size: 26px; }
  .rg-logos { grid-template-columns: 1fr 1fr; }
}
