/* TARGET IMAGE LIMIT: 9 */

/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg-base:        #0c0f14;
  --bg-secondary:   #111720;
  --bg-card:        #161c27;
  --bg-elevated:    #1c2333;

  --gold:           #c9a44a;
  --gold-light:     #e2c070;
  --gold-dim:       rgba(201, 164, 74, 0.18);
  --gold-border:    rgba(201, 164, 74, 0.25);

  --cream:          #f0ebe0;
  --text-primary:   #e8e3d8;
  --text-muted:     #7a8396;
  --text-faint:     #4a5268;

  --success:        #10b981;
  --warning:        #f59e0b;
  --error:          #ef4444;

  --teal:           #0d6e6e;
  --teal-light:     #0f9090;

  /* Spacing (8px system) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201, 164, 74, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-deep: 0 8px 48px rgba(0, 0, 0, 0.6);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Typography Scale ──────────────────────────────────────────────────────── */
.display-xl { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 1.875rem); font-weight: 600; line-height: 1.25; }
.eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.body-lg { font-size: 1.125rem; line-height: 1.75; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); }

/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--sp-3); }
.container--narrow { max-width: 860px; margin-inline: auto; padding-inline: var(--sp-3); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: var(--sp-3) 0; }
.divider--center { margin-inline: auto; }
.section { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-16); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-4); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-3); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

/* ─── Gold Line Ornament ─────────────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.ornament::before,
.ornament::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0c0f14;
  box-shadow: 0 4px 20px rgba(201, 164, 74, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 164, 74, 0.45);
}
.btn--outline {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--text-muted);
  padding: 10px 20px;
}
.btn--ghost:hover { color: var(--text-primary); }

/* ─── Header / Nav ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 24px var(--sp-3);
  transition: background var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 14, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--sp-3);
  box-shadow: 0 1px 0 var(--gold-border);
}
.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--text-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: var(--sp-2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  transition: color var(--dur-fast);
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── Age Gate ───────────────────────────────────────────────────────────────── */
.age-ok #age-gate { display: none !important; }
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--sp-4);
  opacity: 1;
  transition: opacity 0.5s ease;
}
#age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  max-width: 480px;
  width: 100%;
}
.age-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-size: 1.75rem;
}
.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--sp-2);
}
.age-gate-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--sp-5);
}
.age-gate-buttons { display: flex; flex-direction: column; gap: var(--sp-2); }
#age-under {
  font-size: 0.8rem;
  color: var(--text-faint);
  background: none;
  border: 1px solid var(--text-faint);
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
#age-under:hover { color: var(--text-muted); border-color: var(--text-muted); }
#age-denied {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  display: none;
}
#age-denied h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--sp-2); }
#age-denied p { color: var(--text-muted); }

/* ─── Cookie Banner ──────────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  z-index: 8000;
  max-width: 540px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
#cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.cookie-title { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.cookie-text { font-size: 0.82rem; color: var(--text-muted); margin-bottom: var(--sp-2); line-height: 1.5; }
.cookie-toggles { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--sp-3); }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.cookie-toggle-label { font-size: 0.82rem; color: var(--text-muted); }
.toggle-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-base);
  border: 1px solid var(--text-faint);
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--dur-base);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--text-faint);
  border-radius: 50%;
  transition: transform var(--dur-base), background var(--dur-base);
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold-dim); border-color: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translate(18px, -50%); background: var(--gold); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-actions { display: flex; gap: var(--sp-2); }
.cookie-actions .btn { flex: 1; padding: 10px 16px; font-size: 0.8rem; justify-content: center; }

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 15, 20, 0.85) 0%,
    rgba(12, 15, 20, 0.6) 50%,
    rgba(12, 15, 20, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--sp-16) var(--sp-3) var(--sp-8);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 { max-width: 720px; margin-bottom: var(--sp-3); }
.hero-sub { max-width: 560px; margin-bottom: var(--sp-6); color: rgba(232, 227, 216, 0.8); }
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
  z-index: 10;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-secondary);
  border-block: 1px solid var(--gold-border);
  padding: var(--sp-4) 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-2);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-3);
  text-align: center;
}
.stat-item { padding: var(--sp-2); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ─── Section Intro ─────────────────────────────────────────────────────────── */
.section-intro { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-8); }
.section-intro .eyebrow { display: block; margin-bottom: var(--sp-2); }
.section-intro h2 { margin-bottom: var(--sp-2); }
.section-intro p { color: var(--text-muted); }

/* ─── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}
.card-body { padding: var(--sp-4); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  font-size: 1.5rem;
}
.card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--sp-1); }
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
  transition: gap var(--dur-fast);
}
.card-link:hover { gap: 12px; }

/* Game Card with CSS pattern background */
.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.game-card-visual {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-card-visual svg { position: relative; z-index: 1; }
.game-card-visual .glyph {
  font-size: 4rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px currentColor);
}
.game-card--poker .game-card-visual { background: linear-gradient(135deg, #0a1f0a 0%, #0f2d10 100%); color: var(--gold); }
.game-card--roulette .game-card-visual { background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 100%); color: #e05252; }
.game-card--blackjack .game-card-visual { background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2d 100%); color: #5295e0; }
.game-card--craps .game-card-visual { background: linear-gradient(135deg, #1a150a 0%, #2d200f 100%); color: #d4a84a; }
.game-card-body { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.game-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.game-card-body p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ─── Event Style Tiles ──────────────────────────────────────────────────────── */
.event-tile {
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--dur-base) var(--ease);
}
.event-tile:hover { transform: translateY(-4px); }
.event-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  transition: opacity var(--dur-base);
}
.event-tile:hover::before { opacity: 0.14; }
.event-tile--corporate { background: linear-gradient(145deg, #0a1422 0%, #101c30 100%); }
.event-tile--corporate::before { background: radial-gradient(circle at 70% 30%, #c9a44a 0%, transparent 70%); }
.event-tile--wedding { background: linear-gradient(145deg, #1a0f10 0%, #2a1518 100%); }
.event-tile--wedding::before { background: radial-gradient(circle at 30% 70%, #e87a8a 0%, transparent 70%); }
.event-tile--gala { background: linear-gradient(145deg, #0f1a10 0%, #152512 100%); }
.event-tile--gala::before { background: radial-gradient(circle at 60% 40%, #4ac98a 0%, transparent 70%); }
.event-tile--private { background: linear-gradient(145deg, #16100a 0%, #221a0f 100%); }
.event-tile--private::before { background: radial-gradient(circle at 40% 60%, #c98a4a 0%, transparent 70%); }
.event-tile-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 1;
}
.event-tile h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; position: relative; z-index: 1; }
.event-tile p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; position: relative; z-index: 1; }
.event-tile-icon {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 3rem;
  opacity: 0.12;
  z-index: 0;
  transition: opacity var(--dur-base), transform var(--dur-base);
}
.event-tile:hover .event-tile-icon { opacity: 0.2; transform: scale(1.1) rotate(-5deg); }

/* ─── Why Us ─────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.why-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.why-item:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-text h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.why-text p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── How It Works ───────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold-border), transparent);
}
.step-item { text-align: center; padding: var(--sp-4) var(--sp-3); position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.step-item:hover .step-num { background: var(--gold-dim); border-color: var(--gold); }
.step-item h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.step-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-4);
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  position: relative;
  transition: border-color var(--dur-base);
}
.testimonial:hover { border-color: var(--gold-border); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-4);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: var(--sp-2); }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: var(--sp-3); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-2); }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-base);
  flex-shrink: 0;
}
.av-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.av-teal { background: linear-gradient(135deg, #0d6e6e, #0f9090); }
.av-amber { background: linear-gradient(135deg, #b45309, #d97706); }
.author-info { font-size: 0.85rem; }
.author-info strong { display: block; color: var(--text-primary); }
.author-info span { color: var(--text-faint); font-size: 0.78rem; }

/* ─── Cities ─────────────────────────────────────────────────────────────────── */
.cities-section { background: var(--bg-secondary); }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-6);
}
.city-chip {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--dur-base);
  cursor: default;
}
.city-chip:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }
.city-chip.featured { color: var(--gold); border-color: var(--gold-border); }

/* ─── Gallery / Image Block ──────────────────────────────────────────────────── */
.gallery-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
}
.gallery-block img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.gallery-block:hover img { transform: scale(1.03); }
.gallery-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,15,20,0.7) 0%, rgba(12,15,20,0.2) 50%, rgba(12,15,20,0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}
.gallery-block-text h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.gallery-block-text p { color: rgba(232, 227, 216, 0.75); max-width: 480px; }

/* ─── Page Hero (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--sp-16) + var(--sp-4)) var(--sp-3) var(--sp-10);
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-base) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 164, 74, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { display: block; margin-bottom: var(--sp-2); }
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero p { color: var(--text-muted); max-width: 600px; margin-inline: auto; }

/* ─── Games Page ─────────────────────────────────────────────────────────────── */
.game-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  padding-block: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.game-feature:nth-child(even) { direction: rtl; }
.game-feature:nth-child(even) > * { direction: ltr; }
.game-feature:last-child { border-bottom: none; }
.game-feature-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.game-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.game-feature-img:hover img { transform: scale(1.05); }
.game-feature-content .eyebrow { display: block; margin-bottom: var(--sp-2); }
.game-feature-content h2 { margin-bottom: var(--sp-2); }
.game-feature-content p { color: var(--text-muted); margin-bottom: var(--sp-3); }
.game-feature-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.game-feature-content li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.game-feature-content li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0; }
.disclaimer-banner {
  background: rgba(201, 164, 74, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: var(--sp-6);
}

/* ─── Events Page ────────────────────────────────────────────────────────────── */
.event-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: stretch;
  margin-bottom: var(--sp-10);
}
.event-feature:nth-child(even) .event-feature-img { order: 2; }
.event-feature:nth-child(even) .event-feature-content { order: 1; }
.event-feature-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
}
.event-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.event-feature-img:hover img { transform: scale(1.04); }
.event-feature-content {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-feature-content .eyebrow { display: block; margin-bottom: var(--sp-1); }
.event-feature-content h2 { margin-bottom: var(--sp-2); }
.event-feature-content p { color: var(--text-muted); margin-bottom: var(--sp-3); line-height: 1.75; }
.event-feature-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--sp-4); }
.event-feature-content li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.event-feature-content li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 5px; flex-shrink: 0; }

/* Event type 4 (no image - gradient card) */
.event-gradient-card {
  background: linear-gradient(145deg, #0f1422 0%, #1a2035 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sp-10);
}
.event-gradient-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,74,0.1) 0%, transparent 70%);
}
.event-gradient-card .eyebrow { display: block; margin-bottom: var(--sp-1); }
.event-gradient-card h2 { margin-bottom: var(--sp-2); }
.event-gradient-card p { color: var(--text-muted); margin-bottom: var(--sp-3); max-width: 600px; line-height: 1.75; }
.event-gradient-card ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-bottom: var(--sp-4); }
.event-gradient-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.event-gradient-card li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 5px; flex-shrink: 0; }
.gala-icon { font-size: 6rem; opacity: 0.08; position: absolute; bottom: var(--sp-4); right: var(--sp-6); }

/* ─── Packages Page ──────────────────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-4);
  align-items: start;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.package-card.featured {
  border-color: var(--gold-border);
  position: relative;
}
.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-base);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.package-header {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.package-card.featured .package-header {
  background: linear-gradient(180deg, rgba(201,164,74,0.06) 0%, transparent 100%);
}
.package-tier { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
.package-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--sp-2); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.package-price .currency { font-size: 1.25rem; color: var(--gold); }
.package-price .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.package-price .period { font-size: 0.85rem; color: var(--text-faint); }
.package-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.package-body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--sp-5); }
.package-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.package-features .check { width: 18px; height: 18px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.package-features .check::before { content: '✓'; color: var(--gold); font-size: 0.65rem; }
.package-features .cross { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; opacity: 0.4; }
.package-features .cross::before { content: '✕'; color: var(--text-faint); font-size: 0.6rem; }
.package-features span { color: var(--text-muted); line-height: 1.5; }
.package-note { font-size: 0.78rem; color: var(--text-faint); text-align: center; margin-top: var(--sp-3); }

/* ─── About Page ─────────────────────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.about-story-content .eyebrow { display: block; margin-bottom: var(--sp-2); }
.about-story-content h2 { margin-bottom: var(--sp-3); }
.about-story-content p { color: var(--text-muted); margin-bottom: var(--sp-3); line-height: 1.75; }
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--gold-border);
  padding-left: var(--sp-4);
  margin-top: var(--sp-2);
}
.timeline-item { padding-bottom: var(--sp-4); position: relative; }
.timeline-item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: calc(-1 * var(--sp-4) - 4px);
  top: 6px;
  box-shadow: 0 0 8px rgba(201,164,74,0.5);
}
.timeline-item .year { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.08em; font-weight: 500; margin-bottom: 4px; }
.timeline-item h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.timeline-item p { font-size: 0.85rem; color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.team-card { text-align: center; }
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-base);
  border: 3px solid var(--gold-border);
}
.ta-gold { background: linear-gradient(135deg, #8B6914, var(--gold)); }
.ta-teal { background: linear-gradient(135deg, #085252, var(--teal-light)); }
.ta-slate { background: linear-gradient(135deg, #2d3748, #4a5568); }
.ta-rose { background: linear-gradient(135deg, #831843, #be185d); }
.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.06em; }
.team-card .bio { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.value-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.value-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold-border); line-height: 1; margin-bottom: 6px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--dur-fast);
  cursor: pointer;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-base), background var(--dur-base);
  color: var(--gold);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--gold-dim); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: var(--sp-3); }
.faq-answer p, .faq-answer ul { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer ul { padding-left: var(--sp-3); list-style: disc; margin-top: 8px; }
.faq-answer li { margin-bottom: 4px; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  padding-top: var(--sp-10);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .site-logo { font-size: 1.1rem; margin-bottom: var(--sp-2); display: block; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-3); max-width: 280px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.contact-detail .icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail a { color: var(--text-muted); transition: color var(--dur-fast); }
.contact-detail a:hover { color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--gold-border);
  display: inline-block;
}
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--dur-fast); }
.footer-col nav a:hover { color: var(--gold); }

/* Contact Form in Footer */
.footer-form-section {
  padding-block: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-8);
  align-items: start;
}
.footer-form-intro .eyebrow { display: block; margin-bottom: var(--sp-2); }
.footer-form-intro h3 { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: var(--sp-2); }
.footer-form-intro p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.7; }
.trust-badges { display: flex; flex-direction: column; gap: 12px; margin-top: var(--sp-4); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.trust-badge .tb-icon { color: var(--gold); font-size: 1rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--error); }
.form-error { font-size: 0.75rem; color: var(--error); display: none; }
.form-error.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-1); }
.btn--submit { position: relative; min-width: 180px; justify-content: center; }
.btn--loading .btn-text { opacity: 0; }
.btn--loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(12,15,20,0.3);
  border-top-color: var(--bg-base);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-disclaimer { font-size: 0.75rem; color: var(--text-faint); }

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: center;
}
.form-success.visible { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--success);
}
.form-success h4 { font-family: var(--font-display); font-size: 1.25rem; }
.form-success p { font-size: 0.875rem; color: var(--text-muted); }

/* Footer Bottom */
.footer-bottom {
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--text-faint); transition: color var(--dur-fast); }
.footer-legal a:hover { color: var(--gold); }

/* ─── Legal Pages ────────────────────────────────────────────────────────────── */
.legal-content { max-width: 800px; margin-inline: auto; padding: var(--sp-8) var(--sp-3); padding-top: calc(var(--sp-16) + var(--sp-4)); }
.legal-content h1 { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: var(--sp-2); }
.legal-content .last-updated { font-size: 0.82rem; color: var(--text-faint); margin-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: var(--sp-4); }
.legal-content h2 { font-family: var(--font-display); font-size: 1.35rem; margin: var(--sp-5) 0 var(--sp-2); color: var(--gold); }
.legal-content h3 { font-family: var(--font-display); font-size: 1.1rem; margin: var(--sp-4) 0 var(--sp-1); }
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--sp-2); font-size: 0.925rem; }
.legal-content ul, .legal-content ol { padding-left: var(--sp-4); margin-bottom: var(--sp-3); }
.legal-content li { color: var(--text-muted); font-size: 0.925rem; line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-top: var(--sp-4);
}
.legal-contact-box p { margin: 0 0 6px; }

/* ─── CTA Section ────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #0f1a2d 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding-block: var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,164,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .ornament { margin-bottom: var(--sp-2); }
.cta-section h2 { margin-bottom: var(--sp-2); position: relative; }
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 0 auto var(--sp-5); position: relative; }
.cta-actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Animated gold line decorations ────────────────────────────────────────── */
.gold-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.4; }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.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; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-form-wrap { grid-template-columns: 1fr; }
  .game-feature { grid-template-columns: 1fr; }
  .game-feature:nth-child(even) { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
  .event-feature { grid-template-columns: 1fr; }
  .event-feature:nth-child(even) .event-feature-img { order: unset; }
  .event-feature:nth-child(even) .event-feature-content { order: unset; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-block { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .display-xl { font-size: 2.5rem; }
  .display-lg { font-size: 2rem; }
  .container { padding-inline: var(--sp-2); }
  .game-feature-img { aspect-ratio: 16/9; min-height: auto; }
  .event-feature-img { min-height: 240px; }
}
