/* ===========================
   SLOT PARTY - STREET FOOD FESTIVAL
   styles.css
   =========================== */

/* --- CSS Variables --- */
:root {
  --mustard: #D4A017;
  --mustard-light: #F2C94C;
  --tomato: #C0392B;
  --tomato-light: #E74C3C;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --teal: #1A6B5C;
  --teal-light: #2D9B87;
  --copper: #C87533;
  --copper-light: #E8944D;
  --shadow-dark: rgba(0, 0, 0, 0.4);
  --shadow-light: rgba(0, 0, 0, 0.15);
  --glow-mustard: rgba(212, 160, 23, 0.4);
  --glow-tomato: rgba(192, 57, 43, 0.3);
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-chalk: 'Georgia', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--mustard);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--mustard-light);
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--mustard);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--shadow-dark);
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--cream-dark);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

/* --- String Lights Decoration --- */
.string-lights {
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.string-lights::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #555;
  border-radius: 1px;
}

.light-bulb {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  top: 12px;
  animation: twinkle 2s infinite alternate;
}

.light-bulb:nth-child(1) { left: 5%; background: var(--mustard); animation-delay: 0s; }
.light-bulb:nth-child(2) { left: 15%; background: var(--tomato); animation-delay: 0.3s; }
.light-bulb:nth-child(3) { left: 25%; background: var(--teal-light); animation-delay: 0.6s; }
.light-bulb:nth-child(4) { left: 35%; background: var(--copper-light); animation-delay: 0.9s; }
.light-bulb:nth-child(5) { left: 45%; background: var(--mustard-light); animation-delay: 1.2s; }
.light-bulb:nth-child(6) { left: 55%; background: var(--tomato-light); animation-delay: 0.2s; }
.light-bulb:nth-child(7) { left: 65%; background: var(--teal); animation-delay: 0.5s; }
.light-bulb:nth-child(8) { left: 75%; background: var(--copper); animation-delay: 0.8s; }
.light-bulb:nth-child(9) { left: 85%; background: var(--mustard); animation-delay: 1.1s; }
.light-bulb:nth-child(10) { left: 95%; background: var(--tomato-light); animation-delay: 0.4s; }

@keyframes twinkle {
  0% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.7; transform: scale(1); }
}

/* --- Banner Separator --- */
.banner-separator {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.banner-separator::before,
.banner-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--mustard), transparent);
}

.banner-separator::before { left: 5%; }
.banner-separator::after { right: 5%; }

/* === NAVIGATION === */
.market-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-bottom: 3px solid var(--mustard);
  box-shadow: 0 4px 20px var(--shadow-dark);
  padding: 0 20px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--mustard);
  font-weight: bold;
  text-shadow: 1px 1px 3px var(--shadow-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-badge-18 {
  background: var(--tomato);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

.nav-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  background: radial-gradient(ellipse at center bottom, var(--charcoal-light) 0%, var(--charcoal) 70%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--glow-mustard) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, var(--glow-tomato) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--tomato);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 3px 3px 6px var(--shadow-dark);
}

.hero-title span {
  color: var(--mustard);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--cream-dark);
  margin-bottom: 35px;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--mustard) 0%, var(--copper) 100%);
  color: var(--charcoal);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--glow-mustard);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--glow-mustard);
  color: var(--charcoal);
}

/* Floating Lanterns */
.hero-lanterns {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.lantern {
  position: absolute;
  width: 20px;
  height: 30px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.6;
  animation: float-lantern 6s ease-in-out infinite;
}

.lantern:nth-child(1) { left: 10%; top: 20%; background: var(--mustard); animation-delay: 0s; animation-duration: 7s; }
.lantern:nth-child(2) { left: 25%; top: 40%; background: var(--tomato-light); animation-delay: 1s; animation-duration: 5s; }
.lantern:nth-child(3) { left: 70%; top: 15%; background: var(--copper-light); animation-delay: 2s; animation-duration: 8s; }
.lantern:nth-child(4) { left: 85%; top: 50%; background: var(--mustard-light); animation-delay: 0.5s; animation-duration: 6s; }
.lantern:nth-child(5) { left: 50%; top: 70%; background: var(--teal-light); animation-delay: 3s; animation-duration: 7s; }

@keyframes float-lantern {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* === DUAL GAME FOOD COURT === */
.food-court-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--charcoal) 0%, #1e1e1e 100%);
}

.food-court-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* --- Food Truck Card (Game Container) --- */
.food-truck {
  background: var(--charcoal-light);
  border-radius: 16px;
  border: 2px solid #3a3a3a;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow-dark);
}

.truck-header {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, #333 100%);
  padding: 20px 24px;
  border-bottom: 3px solid var(--mustard);
  display: flex;
  align-items: center;
  gap: 12px;
}

.truck-header-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.truck-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--mustard);
}

.truck-body {
  padding: 24px;
}

/* === CARD GAME === */
.card-game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card-table {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 10px 0;
  perspective: 800px;
}

.playing-card {
  width: 100px;
  height: 140px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px var(--shadow-dark);
  transform-style: preserve-3d;
}

.playing-card.face-up {
  background: #fff;
  color: var(--charcoal);
  border: 2px solid #ddd;
}

.playing-card.face-up.red {
  color: var(--tomato);
}

.playing-card.face-up.red .card-suit,
.playing-card.face-up.red .card-center-suit {
  color: var(--tomato);
}

.playing-card.face-down {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border: 2px solid var(--teal-light);
}

.playing-card .card-question {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
}

.playing-card.flipping {
  animation: card-flip-out 0.25s ease-in forwards;
}

.playing-card.flip-in {
  animation: card-flip-in 0.3s ease-out forwards;
}

@keyframes card-flip-out {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(90deg); }
}

@keyframes card-flip-in {
  0% { transform: rotateY(-90deg); }
  100% { transform: rotateY(0deg); }
}

.card-value {
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  top: 8px;
  left: 10px;
}

.card-suit {
  font-size: 1.2rem;
  position: absolute;
  bottom: 8px;
  right: 10px;
}

.card-center-suit {
  font-size: 2.2rem;
  opacity: 0.3;
}

.card-controls {
  display: flex;
  gap: 15px;
}

.btn-higher, .btn-lower {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-higher {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff;
}

.btn-higher:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 155, 135, 0.4);
}

.btn-lower {
  background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-light) 100%);
  color: #fff;
}

.btn-lower:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.card-score-panel {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.score-item {
  text-align: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid #3a3a3a;
}

.score-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.7;
  margin-bottom: 4px;
}

.score-item .value {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--mustard);
}

.card-result-banner {
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-result-banner.win {
  background: rgba(45, 155, 135, 0.2);
  border: 1px solid var(--teal-light);
  color: var(--teal-light);
}

.card-result-banner.loss {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid var(--tomato-light);
  color: var(--tomato-light);
}

.card-result-banner.neutral {
  background: rgba(255,255,255,0.05);
  border: 1px solid #3a3a3a;
  color: var(--cream-dark);
}

.card-history {
  width: 100%;
  max-height: 120px;
  overflow-y: auto;
  margin-top: 10px;
}

.card-history-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.7;
  margin-bottom: 8px;
}

.history-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.history-item {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.history-item.win {
  background: rgba(45, 155, 135, 0.2);
  color: var(--teal-light);
}

.history-item.loss {
  background: rgba(231, 76, 60, 0.2);
  color: var(--tomato-light);
}

.btn-play-again {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--copper) 100%);
  color: var(--charcoal);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 10px;
}

.btn-play-again:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow-mustard);
}

/* Streak Meter */
.streak-meter {
  width: 100%;
  height: 8px;
  background: #3a3a3a;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.streak-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--mustard) 50%, var(--tomato) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}

/* === REEL MACHINE === */
.reel-machine-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reel-frame {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid var(--mustard);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), 0 0 20px var(--glow-mustard);
  position: relative;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.reel-column {
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  position: relative;
}

.reel-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease-out;
}

.reel-strip.spinning {
  animation: reel-scroll infinite linear;
}

.reel-strip.stopping {
  animation: reel-bounce 0.2s ease-out forwards;
}

@keyframes reel-scroll {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

@keyframes reel-bounce {
  0% { transform: translateY(-6px); }
  60% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

.reel-cell {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
  border: 1px solid #333;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.reel-cell svg {
  width: 36px;
  height: 36px;
}

.reel-cell.winning {
  border-color: var(--mustard);
  box-shadow: 0 0 12px var(--glow-mustard);
  animation: win-pulse 0.5s ease infinite alternate;
}

@keyframes win-pulse {
  0% { box-shadow: 0 0 5px var(--glow-mustard); }
  100% { box-shadow: 0 0 20px var(--glow-mustard); }
}

.reel-line-indicators {
  position: absolute;
  top: 16px;
  left: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.line-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555;
}

.line-dot.active {
  background: var(--mustard);
}

.reel-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-spin {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--copper) 100%);
  color: var(--charcoal);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--glow-mustard);
}

.btn-spin:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--glow-mustard);
}

.btn-spin:disabled {
  opacity: 0.5;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-auto-spin {
  background: rgba(255,255,255,0.08);
  border: 1px solid #555;
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.btn-auto-spin.active {
  background: var(--teal);
  border-color: var(--teal-light);
  color: #fff;
}

.reel-score-panel {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.reel-combo-banner {
  text-align: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-combo-banner.win {
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid var(--mustard);
  color: var(--mustard-light);
}

.reel-combo-banner.neutral {
  background: rgba(255,255,255,0.05);
  border: 1px solid #3a3a3a;
  color: var(--cream-dark);
}

.reel-history {
  width: 100%;
  max-height: 100px;
  overflow-y: auto;
}

.reel-history-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.7;
  margin-bottom: 6px;
}

.reel-history-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-history-item {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid #2a2a2a;
  color: var(--cream-dark);
}

.reel-history-item.win {
  border-color: var(--mustard);
  color: var(--mustard-light);
}

/* Combo panel */
.combo-panel {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
}

.combo-panel-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 8px;
}

.combo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--cream-dark);
}

.combo-list-item {
  padding: 3px 6px;
  background: rgba(255,255,255,0.02);
  border-radius: 3px;
}

/* === STATISTICS === */
.stats-section {
  padding: 80px 20px;
  background: var(--charcoal);
  position: relative;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--charcoal-light);
  border: 2px solid #3a3a3a;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--copper));
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--mustard);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* === TIMELINE === */
.timeline-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #1e1e1e 0%, var(--charcoal) 100%);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--mustard), var(--teal), var(--copper), var(--tomato));
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  padding: 20px 0 40px 30px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mustard);
  border: 3px solid var(--charcoal);
  box-shadow: 0 0 10px var(--glow-mustard);
}

.timeline-step:nth-child(2) .timeline-dot { background: var(--teal-light); box-shadow: 0 0 10px rgba(45, 155, 135, 0.4); }
.timeline-step:nth-child(3) .timeline-dot { background: var(--copper); box-shadow: 0 0 10px rgba(200, 117, 51, 0.4); }
.timeline-step:nth-child(4) .timeline-dot { background: var(--tomato); box-shadow: 0 0 10px var(--glow-tomato); }

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--cream-dark);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* === VENDOR HIGHLIGHTS === */
.highlights-section {
  padding: 80px 20px;
  background: var(--charcoal);
}

.highlights-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--charcoal-light);
  border: 2px solid #3a3a3a;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.highlight-card:hover {
  border-color: var(--mustard);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.highlight-card p {
  color: var(--cream-dark);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* === LIVE FEED === */
.feed-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--charcoal) 0%, #1e1e1e 100%);
}

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

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  background: var(--charcoal-light);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: feed-slide-in 0.5s ease;
}

@keyframes feed-slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.feed-icon.streak { background: rgba(45, 155, 135, 0.2); }
.feed-icon.combo { background: rgba(212, 160, 23, 0.2); }
.feed-icon.big-win { background: rgba(200, 117, 51, 0.2); }

.feed-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--cream-dark);
}

.feed-time {
  font-size: 0.75rem;
  color: #666;
  white-space: nowrap;
}

/* === FAQ === */
.faq-section {
  padding: 80px 20px;
  background: var(--charcoal);
}

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

.faq-item {
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--charcoal-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-question:hover {
  color: var(--mustard);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--cream-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* === VIP BANNER === */
.vip-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--charcoal-light) 0%, #252525 100%);
  text-align: center;
  border-top: 2px solid var(--mustard);
  border-bottom: 2px solid var(--mustard);
}

.vip-content {
  max-width: 600px;
  margin: 0 auto;
}

.vip-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--mustard);
  margin-bottom: 12px;
}

.vip-content p {
  color: var(--cream-dark);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.vip-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--copper) 0%, var(--mustard) 100%);
  color: var(--charcoal);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--glow-mustard);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--glow-mustard);
  color: var(--charcoal);
}

/* === FOOTER === */
.site-footer {
  background: #111;
  padding: 60px 20px 30px;
  border-top: 3px solid var(--mustard);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-responsible {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-responsible h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--mustard);
  margin-bottom: 16px;
}

.responsible-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.responsible-links a {
  color: var(--cream-dark);
  font-size: 0.9rem;
  padding: 6px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  transition: border-color 0.3s, color 0.3s;
}

.responsible-links a:hover {
  border-color: var(--mustard);
  color: var(--mustard);
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-nav a {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--mustard);
}

.footer-disclaimer {
  text-align: center;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.footer-badge-18 {
  background: var(--tomato);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-copyright {
  text-align: center;
  color: #555;
  font-size: 0.78rem;
  margin-top: 20px;
}

/* === SECONDARY PAGE LAYOUT === */
.page-content {
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--mustard);
  margin-bottom: 24px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  color: var(--cream-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content ul li {
  color: var(--cream-dark);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--mustard);
  border-radius: 50%;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .food-court-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 2px solid var(--mustard);
    box-shadow: 0 10px 20px var(--shadow-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .stat-value {
    font-size: 1.5rem;
  }

  .card-table {
    gap: 16px;
  }

  .playing-card {
    width: 80px;
    height: 112px;
  }

  .reel-cell {
    width: 48px;
    height: 48px;
  }

  .reel-cell svg {
    width: 28px;
    height: 28px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .card-controls {
    flex-direction: row;
  }

  .btn-higher, .btn-lower {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .responsible-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .nav-inner {
    height: 60px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .playing-card {
    width: 70px;
    height: 98px;
    font-size: 1.5rem;
  }

  .reel-cell {
    width: 42px;
    height: 42px;
  }

  .reel-cell svg {
    width: 24px;
    height: 24px;
  }

  .btn-spin {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 16px 12px;
  }
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
