/* ===========================
   1. CSS VARIABLES
   =========================== */
:root {
  /* Base */
  --midnight-desert: #0E0C0A;
  --dark-wood: #1C1510;
  --burnt-brown: #2A1F17;

  /* Accents */
  --saddle-brown: #8B5E3C;
  --dusty-gold: #D4A373;
  --sunset-orange: #FF8C42;

  /* Text */
  --text-primary: #F5F5F5;
  --text-secondary: #C2B280;

  /* Gradients */
  --sunset-gradient: linear-gradient(135deg, #FF8C42 0%, #D4A373 50%, #8B5E3C 100%);
  --sunset-btn: linear-gradient(135deg, #FF8C42 0%, #D4A373 100%);
  --dark-gradient: linear-gradient(180deg, #0E0C0A 0%, #1C1510 50%, #2A1F17 100%);
  --wood-gradient: linear-gradient(180deg, rgba(28,21,16,0.95) 0%, rgba(14,12,10,0.98) 100%);
  --glow-gold: 0 0 20px rgba(212,163,115,0.3);
  --glow-gold-strong: 0 0 30px rgba(212,163,115,0.5), 0 0 60px rgba(255,140,66,0.2);

  /* Layout */
  --max-width: 1400px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Spacing */
  --section-gap: 120px;
  --container-padding: 40px;
}

/* ===========================
   2. RESET
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--midnight-desert);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* ===========================
   3. LAYOUT
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  position: relative;
}

/* ===========================
   4. COMPONENTS
   =========================== */

/* --- Typography --- */
.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.heading-sm {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.text-gold {
  color: var(--dusty-gold);
}

.text-orange {
  color: var(--sunset-orange);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-gradient {
  background: var(--sunset-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sunset-btn);
  color: var(--midnight-desert);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 140, 66, 0.5), 0 0 40px rgba(212, 163, 115, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--dusty-gold);
  border: 2px solid var(--saddle-brown);
}

.btn-secondary:hover {
  border-color: var(--dusty-gold);
  background: rgba(139, 94, 60, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

/* --- Cards --- */
.card {
  background: linear-gradient(145deg, rgba(42, 31, 23, 0.6) 0%, rgba(28, 21, 16, 0.8) 100%);
  border: 1px solid rgba(139, 94, 60, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.3), transparent);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 115, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(139, 94, 60, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 94, 60, 0.25);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dusty-gold);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset-orange);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 140, 66, 0.25);
  border-radius: 100px;
  background: rgba(255, 140, 66, 0.06);
}

.section-header .section-title {
  margin-bottom: 20px;
}

.section-header .section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Disclaimer Badge --- */
.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 31, 23, 0.6);
  border: 1px solid rgba(139, 94, 60, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.disclaimer-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sunset-orange);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 94, 60, 0.15);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(14, 12, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(212, 163, 115, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dusty-gold);
  letter-spacing: -0.02em;
  z-index: 1001;
}

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

.logo-text span {
  color: var(--sunset-orange);
}

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

.nav-link {
  padding: 8px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sunset-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--dusty-gold);
}

.nav-link:hover::after {
  width: 24px;
}

.nav-link.active {
  color: var(--dusty-gold);
}

.nav-link.active::after {
  width: 24px;
}

.header-cta {
  z-index: 1001;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dusty-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--wood-gradient);
  border-left: 1px solid rgba(139, 94, 60, 0.2);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 20px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 140, 66, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(139, 94, 60, 0.06) 0%, transparent 50%),
              var(--midnight-desert);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A373' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Dust Particles */
.dust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dust {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212, 163, 115, 0.4);
  border-radius: 50%;
  animation: float-dust linear infinite;
}

.dust:nth-child(1) { left: 10%; top: 20%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 0s; }
.dust:nth-child(2) { left: 25%; top: 60%; width: 3px; height: 3px; animation-duration: 22s; animation-delay: 2s; }
.dust:nth-child(3) { left: 40%; top: 35%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 4s; }
.dust:nth-child(4) { left: 55%; top: 75%; width: 4px; height: 4px; animation-duration: 20s; animation-delay: 1s; opacity: 0.3; }
.dust:nth-child(5) { left: 70%; top: 15%; width: 2px; height: 2px; animation-duration: 25s; animation-delay: 3s; }
.dust:nth-child(6) { left: 85%; top: 50%; width: 3px; height: 3px; animation-duration: 17s; animation-delay: 5s; }
.dust:nth-child(7) { left: 15%; top: 80%; width: 2px; height: 2px; animation-duration: 21s; animation-delay: 7s; }
.dust:nth-child(8) { left: 60%; top: 45%; width: 3px; height: 3px; animation-duration: 19s; animation-delay: 6s; }
.dust:nth-child(9) { left: 35%; top: 10%; width: 2px; height: 2px; animation-duration: 23s; animation-delay: 8s; }
.dust:nth-child(10) { left: 80%; top: 70%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 2s; opacity: 0.25; }
.dust:nth-child(11) { left: 5%; top: 40%; width: 2px; height: 2px; animation-duration: 24s; animation-delay: 9s; }
.dust:nth-child(12) { left: 50%; top: 90%; width: 3px; height: 3px; animation-duration: 20s; animation-delay: 4s; }
.dust:nth-child(13) { left: 90%; top: 25%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 10s; }
.dust:nth-child(14) { left: 30%; top: 55%; width: 3px; height: 3px; animation-duration: 22s; animation-delay: 11s; }
.dust:nth-child(15) { left: 75%; top: 5%; width: 2px; height: 2px; animation-duration: 26s; animation-delay: 3s; }

@keyframes float-dust {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translate(100px, -200px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(42, 31, 23, 0.5);
  border: 1px solid rgba(139, 94, 60, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sunset-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  margin-top: 8px;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.hero-glow-1 {
  background: var(--sunset-orange);
  top: 10%;
  left: 20%;
}

.hero-glow-2 {
  background: var(--dusty-gold);
  bottom: 10%;
  right: 15%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   GAME SECTION
   =========================== */
.game-section {
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.2), transparent);
}

.game-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.game-frame-outer {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(145deg, rgba(212, 163, 115, 0.3), rgba(139, 94, 60, 0.15), rgba(42, 31, 23, 0.3));
  box-shadow: 0 0 40px rgba(212, 163, 115, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-frame-inner {
  border-radius: calc(var(--radius-xl) - 2px);
  overflow: hidden;
  background: var(--midnight-desert);
  position: relative;
}

.game-frame-inner iframe {
  display: block;
  width: 100%;
  height: 750px;
  border: none;
  border-radius: calc(var(--radius-xl) - 2px);
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.game-title-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sunset-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-dot 1.5s ease infinite;
}

.game-info-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.game-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.game-stat-value {
  color: var(--dusty-gold);
  font-weight: 600;
}

.game-footer {
  margin-top: 20px;
  text-align: center;
}

.game-footer p {
  font-size: 0.85rem;
  color: rgba(194, 178, 128, 0.6);
}

/* Decorative corner elements for game frame */
.game-frame-outer::before,
.game-frame-outer::after {
  content: '✦';
  position: absolute;
  font-size: 1.2rem;
  color: rgba(212, 163, 115, 0.3);
  z-index: 5;
}

.game-frame-outer::before {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.game-frame-outer::after {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===========================
   SALOON INTRO SECTION
   =========================== */
.saloon-section {
  position: relative;
  overflow: hidden;
}

.saloon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 94, 60, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.saloon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.saloon-visual {
  position: relative;
}

.saloon-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(42, 31, 23, 0.8), rgba(28, 21, 16, 0.9));
  border: 1px solid rgba(139, 94, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.saloon-image-placeholder {
  text-align: center;
  padding: 40px;
}

.saloon-image-placeholder .saloon-emoji {
  font-size: 5rem;
  display: block;
  margin-bottom: 20px;
  filter: grayscale(0.2);
}

.saloon-image-placeholder p {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1.1rem;
}

.saloon-content .saloon-story {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.saloon-content .saloon-story:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dusty-gold);
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
}

.saloon-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.saloon-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(42, 31, 23, 0.4);
  border: 1px solid rgba(139, 94, 60, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.saloon-highlight:hover {
  border-color: rgba(212, 163, 115, 0.3);
  background: rgba(42, 31, 23, 0.6);
}

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

.saloon-highlight-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.saloon-highlight-text strong {
  color: var(--dusty-gold);
}

/* ===========================
   FEATURES SECTION (GOLD RUSH)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===========================
   STORY / ABOUT SECTION
   =========================== */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255, 140, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 163, 115, 0.3), rgba(139, 94, 60, 0.1));
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

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

.timeline-dot {
  position: absolute;
  left: 18px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark-wood);
  border: 2px solid var(--saddle-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dusty-gold);
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sunset-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dusty-gold);
  margin-bottom: 10px;
}

.timeline-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================
   LEGENDARY PLAYERS / STATS SECTION
   =========================== */
.stats-section {
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 31, 23, 0.3) 0%, transparent 30%, transparent 70%, rgba(42, 31, 23, 0.3) 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.testimonial-card {
  padding: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--sunset-orange);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saddle-brown), var(--dusty-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight-desert);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dusty-gold);
}

.testimonial-handle {
  font-size: 0.8rem;
  color: rgba(194, 178, 128, 0.5);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(145deg, rgba(42, 31, 23, 0.5), rgba(28, 21, 16, 0.7));
  border: 1px solid rgba(139, 94, 60, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-title {
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid rgba(139, 94, 60, 0.15);
  background: linear-gradient(180deg, var(--midnight-desert), rgba(14, 12, 10, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dusty-gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--dusty-gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(194, 178, 128, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.83rem;
  color: rgba(194, 178, 128, 0.4);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--dusty-gold);
}

.footer-disclaimer {
  margin-top: 20px;
  padding: 24px;
  background: rgba(42, 31, 23, 0.3);
  border: 1px solid rgba(139, 94, 60, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(194, 178, 128, 0.4);
  line-height: 1.7;
  text-align: center;
}

/* ===========================
   PAGE HERO (Internal Pages)
   =========================== */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 140, 66, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  margin-bottom: 16px;
  position: relative;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
}

.page-breadcrumb a {
  color: var(--dusty-gold);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb .sep {
  color: rgba(194, 178, 128, 0.3);
}

/* ===========================
   CONTENT PAGES
   =========================== */
.content-section {
  padding: 80px 0 var(--section-gap);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 1.5rem;
  color: var(--dusty-gold);
  margin-top: 48px;
  margin-bottom: 16px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-wrapper p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.content-wrapper ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.content-wrapper ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.content-wrapper ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sunset-orange);
  font-size: 0.7rem;
  top: 4px;
}

.content-wrapper a {
  color: var(--dusty-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-wrapper a:hover {
  color: var(--sunset-orange);
}

.content-card {
  padding: 32px;
  margin-bottom: 24px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dusty-gold);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(42, 31, 23, 0.4);
  border: 1px solid rgba(139, 94, 60, 0.25);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--dusty-gold);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
  background: rgba(42, 31, 23, 0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(194, 178, 128, 0.4);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsible Gaming */
.rg-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.rg-card {
  padding: 28px;
}

.rg-card .card-icon {
  margin-bottom: 16px;
}

/* Age gate badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 140, 66, 0.15);
  border: 2px solid var(--sunset-orange);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sunset-orange);
}

/* ===========================
   ANIMATIONS / REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===========================
   5. UTILITIES
   =========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ===========================
   MEDIA QUERIES
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
    --container-padding: 28px;
  }

  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .saloon-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

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

  .game-frame-inner iframe {
    height: 600px;
  }

  .rg-principles {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-gap: 60px;
    --container-padding: 20px;
  }

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

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

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

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .game-frame-inner iframe {
    height: 450px;
  }

  .game-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: 48px 28px;
  }

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

  .card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-menu {
    width: 100%;
  }

  .saloon-image-frame {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 380px) {
  .game-frame-inner iframe {
    height: 380px;
  }

  .heading-xl {
    font-size: 2rem;
  }
}