@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #060c07;
  --bg-secondary: #0f1310;
  --bg-tertiary: #141a15;
  --accent-red: #c62828;
  --accent-orange: #ff5500;
  --accent-orange-glow: rgba(255, 85, 0, 0.35);
  --accent-gold: #c5a059;
  --text-primary: #f4f6f0;
  --text-muted: #b5cebb;
  /* Increased contrast for accessibility (contrast ratio 5.5+:1 on dark backgrounds) */
  --forest-green: #2e7d32;
  --sky-blue: #1565c0;
  --card-border: rgba(255, 85, 0, 0.12);
  --glass-bg: rgba(15, 22, 16, 0.75);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-glow: 0 0 20px var(--accent-orange-glow);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Visuals - Pine forest particles and mist */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(198, 40, 40, 0.08) 0%, transparent 45%);
  z-index: -2;
  pointer-events: none;
}

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

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 12, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 85, 0, 0.1);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design - Bear silhouette in a maple leaf */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.logo-icon-wrapper {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 100%;
  height: 100%;
  fill: url(#logoGradient);
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, 0.5));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-family: var(--font-display);
  background: linear-gradient(135deg, #ff8f00, #ff5500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Lang Toggle Switcher */
.lang-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px;
  display: flex;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(255, 85, 0, 0.3);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.25);
  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: 0.6s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

/* User status styles (when logged in and subscribed) */
.user-badge-wrapper {
  display: none;
  /* Shown dynamically when user is logged/subscribed */
  align-items: center;
  gap: 12px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
}

.user-balance {
  font-family: var(--font-display);
  font-size: 15px;
  color: #ffb300;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-balance svg {
  width: 16px;
  height: 16px;
  fill: #ffb300;
}

.user-rank {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* Sticky top announcement bar */
.sticky-announce-bar {
  background: linear-gradient(90deg, #1b0c03, #2a1405, #1b0c03);
  border-bottom: 1px solid rgba(255, 85, 0, 0.25);
  color: var(--text-primary);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-border 3s infinite alternate;
}

@keyframes pulse-border {
  0% {
    border-bottom-color: rgba(255, 85, 0, 0.2);
  }

  100% {
    border-bottom-color: rgba(255, 85, 0, 0.6);
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  color: #81c784;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: #81c784;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Hero Panoramic Image with Bruno */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panoramic-card {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  background: rgba(15, 22, 16, 0.4);
  border: 2px solid rgba(255, 85, 0, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Wilderness illustration backdrop utilizing SVGs and CSS */
.wilderness-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #071926 0%, #0c3325 50%, #0d2110 100%);
  z-index: 1;
}

.aurora-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 20%, rgba(0, 230, 118, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  animation: aurora-move 10s infinite ease-in-out alternate;
  z-index: 2;
}

@keyframes aurora-move {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  100% {
    transform: translateY(5%) scale(1.1) rotate(3deg);
  }
}

.mountain-silhouettes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  fill: #08110b;
  z-index: 3;
}

.pine-trees-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  fill: #040905;
  z-index: 4;
}

.bruno-illustration {
  position: relative;
  z-index: 5;
  width: 80%;
  max-width: 320px;
  height: auto;
  margin-bottom: -15px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  transition: var(--transition-smooth);
}

.hero-panoramic-card:hover .bruno-illustration {
  transform: translateY(-5px) scale(1.03);
}

/* Drifting maple leaf CSS particles */
.maple-leaf-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 6;
  overflow: hidden;
}

.maple-particle {
  position: absolute;
  display: block;
  fill: rgba(255, 85, 0, 0.4);
  animation: drift 12s infinite linear;
}

@keyframes drift {
  0% {
    transform: translateY(-10%) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(110%) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* WHY SUBSCRIBE / ADVENTURE PASS */
.pass-section {
  padding: 60px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pass-grid {
  display: grid;
  grid-template-columns: 1.10fr 0.90fr;
  gap: 50px;
  align-items: center;
}

.pass-info-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 85, 0, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pass-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pass-title svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-orange);
}

.pass-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
}

.feature-icon-wrapper {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-wrapper svg {
  width: 10px;
  height: 10px;
  fill: #81c784;
}

/* Form Styling - Adventure Pass Container */
.form-container {
  background: #0d2010;
  border: 2px solid var(--accent-orange);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 85, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-title svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-orange);
}

.form-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sub-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-field {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 85, 0, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

.input-field:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.2);
}

.input-field::placeholder {
  color: rgba(244, 246, 240, 0.35);
}

.sub-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8f00);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 85, 0, 0.5);
}

.consent-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.consent-checkbox-wrapper input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent-orange);
  cursor: pointer;
}

.consent-label {
  font-size: 12px;
  line-height: 1.5;
  color: #cfd8dc;
  /* Increased contrast for small text accessibility */
  cursor: pointer;
}

.consent-label a {
  color: #ffa726;
  /* Highly accessible orange-yellow contrast on dark green background */
  text-decoration: underline;
  /* Indicated links visually without color reliance */
}

.consent-label a:hover {
  color: #ffcc80;
}

/* Form success message state */
.form-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.15);
  border: 2px solid var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: #81c784;
}

.success-heading {
  font-family: var(--font-display);
  font-size: 22px;
  color: #81c784;
  margin-bottom: 8px;
}

.success-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* GAMES SECTION */
.games-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-title svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-orange);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Game Card Styles */
.game-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 85, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 85, 0, 0.08);
}

.game-media {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 7;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.game-card:hover .game-img {
  transform: scale(1.08);
}

.game-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 4px 12px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-badge.free-badge {
  background: #2e7d32;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-badge.sub-badge {
  background: #ff5500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.game-province {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.game-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.game-bonus-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Mist/Lock overlay for Subscriber games */
.fog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 15, 10, 0.88);
  backdrop-filter: blur(12px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: all;
  border-radius: 15px;
}

/* Background forest fog silhouette inside overlay */
.fog-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

.lock-icon-wrapper {
  position: relative;
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.1);
  border: 2px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.2);
  transition: var(--transition-smooth);
}

.lock-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-orange);
}

.fog-overlay:hover .lock-icon-wrapper {
  transform: scale(1.1);
  background: rgba(255, 85, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

.lock-title {
  position: relative;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.lock-desc {
  position: relative;
  z-index: 5;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 220px;
  margin-bottom: 18px;
}

.lock-btn {
  position: relative;
  z-index: 5;
  background: transparent;
  border: 2px solid var(--accent-orange);
  border-radius: 8px;
  color: var(--accent-orange);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lock-btn:hover {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.35);
}

/* Unlocking CSS animations - wilderness-reveal */
.games-grid.wilderness-unlocked .fog-overlay {
  opacity: 0 !important;
  filter: blur(20px) !important;
  transform: scale(1.05) !important;
  pointer-events: none !important;
}

/* MEET THE CREW MASCOTS */
.crew-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.crew-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.crew-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 85, 0, 0.2);
}

.crew-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 85, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.crew-card:hover .crew-avatar-wrapper {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

.crew-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.crew-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.crew-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.crew-quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* SATURDAY WILD NIGHT BANNER */
.saturday-section {
  padding: 60px 0;
  background: radial-gradient(circle at center, #170d2b 0%, #060c07 100%);
  border-bottom: 1px solid rgba(255, 85, 0, 0.15);
}

.saturday-banner {
  background: rgba(13, 10, 24, 0.6);
  border: 2px solid #7b1fa2;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(123, 31, 162, 0.25);
}

/* Pulsing background glow for Saturday night */
.saturday-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 31, 162, 0.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.saturday-content {
  position: relative;
  z-index: 5;
}

.saturday-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 31, 162, 0.15);
  border: 1px solid rgba(123, 31, 162, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  color: #e040fb;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.saturday-badge svg {
  width: 14px;
  height: 14px;
  fill: #e040fb;
}

.saturday-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}

.saturday-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #b0bec5;
}

.saturday-timer-container {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(123, 31, 162, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.timer-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: #b0bec5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.timer-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.timer-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: #78909c;
  text-transform: uppercase;
  margin-top: 4px;
}

/* PARTNERS / LEGAL BRANDS INFO */
.partners-section {
  padding: 40px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-logo-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: var(--transition-smooth);
}

.partner-logo-box:hover {
  background: rgba(255, 85, 0, 0.05);
  border-color: rgba(255, 85, 0, 0.2);
}

.partner-logo-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* EDITORIAL / LEGAL REGULATORY PAGES (Privacy, Terms, etc.) */
.editorial-section {
  padding: 80px 0;
  min-height: 60px;
}

.editorial-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.editorial-card h1 {
  font-family: var(--font-display);
  font-size: 40px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 85, 0, 0.2);
  padding-bottom: 6px;
}

.editorial-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--accent-orange);
}

.editorial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfd8dc;
  margin-bottom: 18px;
}

.editorial-card ul,
.editorial-card ol {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editorial-card li {
  font-size: 15px;
  line-height: 1.5;
  color: #cfd8dc;
}

.editorial-card strong {
  color: #fff;
}

/* FOOTER SECTION */
.site-footer {
  background-color: #050a06;
  border-top: 2px solid var(--accent-orange);
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-address-text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-address-text strong {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.disclaimer-para {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 12px;
  color: #a4bfa9;
  /* Increased contrast for accessibility on dark footer background */
}

.footer-help-helpline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #ffa726;
  /* Highly contrast orange-yellow */
}

/* MANDATORY DISCLAIMER STICKY BOTTOM BAR */
.mandatory-disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 26, 10, 0.96);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--accent-orange);
  z-index: 150;
  padding: 8px 16px;
  text-align: center;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.mandatory-disclaimer-inner {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.disclaimer-lang {
  color: #ffb300;
  /* Extremely high contrast gold for accessibility */
  margin-right: 4px;
}

/* ADJUST BODY FOR STICKY DISCLAIMER */
body {
  padding-bottom: 40px;
  /* Offset to prevent sticky bar overlaying footer copyright */
}

/* INTERACTIVE POPUP GAME OVERLAYS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 12, 7, 0.85);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  /* Controlled via JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

/* SLOTS REELS PLAYGROUND STYLES */
.slots-reels-box {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  background: radial-gradient(circle, #2a4c1e 0%, #0d1a0a 100%);
  border: 4px solid var(--accent-orange);
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 10px 25px rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.slots-reel {
  background: #070d05;
  border: 3px solid rgba(255, 85, 0, 0.2);
  border-radius: 12px;
  width: 130px;
  height: 150px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 15px 25px rgba(0,0,0,0.9), inset 0 -15px 25px rgba(0,0,0,0.9), 0 5px 15px rgba(0,0,0,0.3);
}

.slots-reel-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slots-symbol-card {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slots-symbol-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-orange);
  margin-top: 8px;
  letter-spacing: 1px;
}

.slots-reel.spinning .slots-symbol-card svg {
  filter: blur(2px) scaleY(1.2);
  transition: filter 0.1s;
}

/* POKER TRAILS PLAYGROUND STYLES */
.poker-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.poker-hand {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  justify-content: center;
  min-height: 120px;
  width: 100%;
}

.poker-card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  width: 80px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.2s ease;
  font-family: var(--font-mono);
}

.poker-card.animated {
  animation: dealCard 0.4s ease-out forwards;
}

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

.card-val {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.card-suit {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  color: var(--accent-orange);
}

/* ==========================================================================
   ROULETTE DESIGN SYSTEM (Great Lakes Roulette)
   ========================================================================== */
.roulette-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 10px;
  flex-wrap: wrap;
}

.roulette-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 220px;
}

.roulette-wheel-outer {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #5c2c16 0%, #301408 60%, #150803 100%);
  border: 10px solid #200a02;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roulette-wheel-outer::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.roulette-wheel-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0d1a0a;
  border: 4px solid #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s, transform 0.1s linear;
}

.roulette-wheel-inner.spinning {
  animation: innerWheelSpin 1.5s infinite linear;
}

@keyframes innerWheelSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.roulette-ball-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #ffffff 0%, #cccccc 80%, #aaaaaa 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -7px;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transform: rotate(0deg) translate(65px) rotate(0deg);
}

.roulette-ball-dot.spinning {
  animation: ballOrbit 1.5s infinite linear;
}

@keyframes ballOrbit {
  0% { transform: rotate(360deg) translate(65px) rotate(-360deg); }
  100% { transform: rotate(0deg) translate(65px) rotate(0deg); }
}

/* Betting Board */
.roulette-betting-board {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roulette-special-bets {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}

.bet-board-btn {
  flex: 1;
  min-width: 70px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.bet-board-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.bet-board-btn.selected {
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.3), rgba(255, 143, 0, 0.3));
}

.red-bet {
  border-left: 4px solid var(--accent-red);
}
.black-bet {
  border-left: 4px solid #111;
}
.even-bet {
  border-left: 4px solid #1565c0;
}
.odd-bet {
  border-left: 4px solid var(--accent-orange);
}
.heritage-bet {
  border-left: 4px solid #ffa726;
}

/* Number Board */
.roulette-numbers-board {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  min-height: 120px;
}

.roulette-num-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  position: relative;
  min-height: 38px;
}

.roulette-num-cell.selected::after {
  content: '🍁';
  position: absolute;
  font-size: 14px;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(0,0,0,0.8);
  animation: chipDrop 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes chipDrop {
  0% { transform: scale(3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cell-0 {
  width: 50px;
  background: var(--forest-green);
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

.cell-0:hover {
  background: #388e3c;
}

.roulette-grid-numbers {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
}

.roulette-num-cell.red {
  background: var(--accent-red);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.roulette-num-cell.red:hover {
  background: #e53935;
}

.roulette-num-cell.black {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.roulette-num-cell.black:hover {
  background: #222;
}

.roulette-selection-status {
  padding: 10px;
  background: rgba(255, 85, 0, 0.05);
  border: 1px dashed rgba(255, 85, 0, 0.3);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #fff;
  text-align: center;
}

@media (max-width: 580px) {
  .roulette-layout {
    flex-direction: column;
    gap: 15px;
  }
  .roulette-grid-numbers {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .cell-0 {
    width: 40px;
  }
}

/* LOTTO PLAYGROUND STYLES */
.lotto-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.lotto-numbers-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.lotto-ball {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.lotto-ball:hover {
  background: rgba(255, 85, 0, 0.2);
  border-color: var(--accent-orange);
}

.lotto-ball.selected {
  background: var(--forest-green);
  border-color: #81c784;
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.6);
}

.lotto-ticket-bar {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
}


.modal-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-orange);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.modal-head {
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modal-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 1px;
}

.modal-body {
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 85, 0, 0.06);
}

.interactive-game-area {
  width: 100%;
  text-align: center;
}

.game-visual-sim {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 10px;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
  color: #ffb300;
}

.modal-action-btn {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
  transition: var(--transition-smooth);
}

.modal-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.5);
}

.game-feedback {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: #81c784;
  margin-top: 16px;
  min-height: 18px;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .pass-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .saturday-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .saturday-timer-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Handled via drawer in JS */
  }

  .mobile-toggle {
    display: block;
  }

  .site-header {
    padding: 12px 0;
  }

  .hero-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-legal-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .editorial-card {
    padding: 30px 20px;
  }
}