/* =================================================================
   TOMORROWLAND THAILAND 2026 — TROPICAL CONSCIENCIA
   Ultra-Premium Static Landing Page Styles
   ================================================================= */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* Primary Colors */
  --deep-midnight: #0A0E1A;
  --consciencia-violet: #6B2FA0;
  --tomorrowland-gold: #D4A843;

  /* Secondary Colors */
  --thai-emerald: #0D9B6A;
  --sunset-magenta: #E03E6B;
  --cyan-pulse: #00E5D0;

  /* Neutral Colors */
  --pearl-white: #F0EDE6;
  --mist: #A8A3B5;
  --glass-surface: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* From task spec */
  --neon-magenta: #FF2E97;
  --electric-cyan: #00F5FF;
  --thai-sunset: #FF6B35;
  --gold-bright: #FFB800;

  /* Gradients */
  --aurora-gradient: linear-gradient(135deg, #6B2FA0, #0D9B6A, #00E5D0);
  --gold-shimmer: linear-gradient(90deg, #D4A843, #F5D77A, #D4A843);
  --night-sky: radial-gradient(ellipse at top, #1A1040, #0A0E1A);
  --sunset-flare: linear-gradient(180deg, #E03E6B, #6B2FA0);

  /* Typography */
  --font-display: 'Playfair Display SC', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing (8px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.3);
  --shadow-glow: 0 0 60px rgba(212, 168, 67, 0.15);

  /* Animation Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Z-index layers */
  --z-nav: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
  --z-progress: 1200;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--pearl-white);
  background: var(--deep-midnight);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--tomorrowland-gold);
  text-decoration: none;
  transition: color var(--duration-normal) ease;
}

a:hover {
  color: #F5D77A;
}

ul, ol {
  list-style: none;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--tomorrowland-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip Nav */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--tomorrowland-gold);
  color: var(--deep-midnight);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: var(--z-modal);
  transition: top var(--duration-normal) ease;
}

.skip-nav:focus {
  top: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ----------------------------------------------------------------
   3. SCROLL PROGRESS BAR
   ---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-shimmer);
  z-index: var(--z-progress);
  transition: width 50ms linear;
  will-change: width;
}

/* ----------------------------------------------------------------
   4. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-md) 0;
  transition: background var(--duration-slow) ease, padding var(--duration-slow) ease, backdrop-filter var(--duration-slow) ease;
}

.nav--scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--pearl-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav__logo:hover {
  color: var(--tomorrowland-gold);
}

.nav__logo-icon {
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-normal) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-shimmer);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover,
.nav__link.active {
  color: var(--tomorrowland-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--gold-shimmer);
  color: var(--deep-midnight) !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) ease;
}

.nav__cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
  color: var(--deep-midnight) !important;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: var(--z-modal);
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--pearl-white);
  transition: all var(--duration-normal) ease;
  border-radius: 2px;
}

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

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

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

/* ----------------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night-sky);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 47, 160, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(13, 155, 106, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(224, 62, 107, 0.2) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(212, 168, 67, 0.3));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.hero__title-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--pearl-white);
  margin-top: var(--space-sm);
}

.hero__theme {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 12px;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  text-shadow: none;
}

.hero__dates {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--mist);
  letter-spacing: 2px;
  margin-bottom: var(--space-2xl);
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.countdown__item {
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  min-width: 80px;
  text-align: center;
  transition: border-color var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
}

.countdown__item:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.countdown__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--tomorrowland-gold);
  line-height: 1.2;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero CTAs */
.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--mist);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-spring);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.4;
}

.btn--gold {
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  color: var(--deep-midnight);
  animation: shimmer 3s ease-in-out infinite;
}

.btn--gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold);
  color: var(--deep-midnight);
}

.btn--pulse {
  animation: shimmer 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--pearl-white);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-2px);
  color: var(--pearl-white);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--tomorrowland-gold);
  color: var(--tomorrowland-gold);
}

.btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--tomorrowland-gold);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
}

/* ----------------------------------------------------------------
   7. SECTIONS (Common)
   ---------------------------------------------------------------- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-md);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pearl-white);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--mist);
  line-height: 1.7;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(240, 237, 230, 0.85);
  margin-bottom: var(--space-lg);
}

.section-text--large {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-text strong {
  color: var(--tomorrowland-gold);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   8. GLASS CARD (Glassmorphism)
   ---------------------------------------------------------------- */
.glass-card {
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-spring),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 168, 67, 0.08);
}

/* ----------------------------------------------------------------
   9. ABOUT SECTION
   ---------------------------------------------------------------- */
.about {
  background:
    radial-gradient(ellipse at 10% 80%, rgba(107, 47, 160, 0.08) 0%, transparent 50%),
    var(--deep-midnight);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about__main {
  padding-right: var(--space-xl);
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-card {
  padding: var(--space-xl);
  text-align: center;
}

.stat-card__number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--tomorrowland-gold);
  line-height: 1.2;
}

.stat-card__plus {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--tomorrowland-gold);
}

.stat-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--mist);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------------------------------------
   10. THAILAND (BENTO GRID) SECTION
   ---------------------------------------------------------------- */
.thailand {
  background:
    radial-gradient(ellipse at 90% 20%, rgba(13, 155, 106, 0.08) 0%, transparent 50%),
    var(--deep-midnight);
}

.thailand__bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.bento-card {
  padding: var(--space-2xl);
}

.bento-card--large {
  grid-column: span 2;
}

.bento-card__icon {
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-md);
}

.bento-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pearl-white);
  margin-bottom: var(--space-sm);
}

.bento-card__text {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   11. STAGES SECTION
   ---------------------------------------------------------------- */
.stages {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 47, 160, 0.1) 0%, transparent 50%),
    var(--deep-midnight);
}

.stages__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.stage-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--duration-slow) var(--ease-spring);
}

.stage-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.stage-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity var(--duration-slow) ease;
}

/* Emotion color backgrounds */
.stage-card[data-emotion="wonder"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
}
.stage-card[data-emotion="love"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(224, 62, 107, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
}
.stage-card[data-emotion="anger"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(200, 30, 30, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
}
.stage-card[data-emotion="joy"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(0, 229, 208, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
}
.stage-card[data-emotion="desire"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(107, 47, 160, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
}
.stage-card[data-emotion="sadness"] .stage-card__bg {
  background: linear-gradient(180deg, rgba(168, 163, 181, 0.2) 0%, rgba(10, 14, 26, 0.9) 100%);
}

.stage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  z-index: 3;
  transition: border-color var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
  pointer-events: none;
}

.stage-card:hover::before {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: inset 0 0 30px rgba(212, 168, 67, 0.05);
}

.stage-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl);
}

.stage-card__emotion-icon {
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.stage-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: var(--space-xs);
}

.stage-card__type {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-md);
}

.stage-card__desc {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.stage-card__artists {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.artist-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tomorrowland-gold);
}

/* ----------------------------------------------------------------
   12. TICKETS SECTION
   ---------------------------------------------------------------- */
.tickets {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
    var(--deep-midnight);
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.ticket-card {
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
}

.ticket-card--featured {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.08);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.ticket-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.ticket-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-shimmer);
  color: var(--deep-midnight);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-lg);
  border-radius: 0 0 var(--radius) var(--radius);
}

.ticket-card__header {
  margin-bottom: var(--space-lg);
}

.ticket-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: var(--space-xs);
}

.ticket-card__desc {
  font-size: 0.9rem;
  color: var(--mist);
}

.ticket-card__price {
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.ticket-card__from {
  font-size: 0.85rem;
  color: var(--mist);
  margin-right: var(--space-xs);
}

.ticket-card__currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tomorrowland-gold);
}

.ticket-card__amount {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 400;
  color: var(--tomorrowland-gold);
  line-height: 1;
}

.ticket-card__features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.ticket-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-card__features li:last-child {
  border-bottom: none;
}

.ticket-card__features svg {
  flex-shrink: 0;
}

.ticket-card .btn {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   13. GUIDE SECTION (Tabs)
   ---------------------------------------------------------------- */
.guide {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(0, 229, 208, 0.06) 0%, transparent 50%),
    var(--deep-midnight);
}

.guide__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.guide__tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--mist);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-normal) ease;
}

.guide__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pearl-white);
}

.guide__tab.active {
  background: rgba(212, 168, 67, 0.15);
  border-color: var(--tomorrowland-gold);
  color: var(--tomorrowland-gold);
}

.guide__panel {
  display: none;
}

.guide__panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease-out-expo);
}

.guide__info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: var(--space-lg);
}

.guide__list {
  list-style: none;
}

.guide__list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.7;
}

.guide__list li:last-child {
  border-bottom: none;
}

.guide__list strong {
  color: var(--tomorrowland-gold);
}

.guide__tip {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 168, 67, 0.08);
  border-left: 3px solid var(--tomorrowland-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.9);
}

/* ----------------------------------------------------------------
   14. CONSCIENCIA SECTION
   ---------------------------------------------------------------- */
.consciencia {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(107, 47, 160, 0.1) 0%, transparent 50%),
    var(--deep-midnight);
}

/* Emotion Selector */
.emotion-selector {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.emotion-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--mist);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-spring);
  min-width: 100px;
}

.emotion-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--pearl-white);
  transform: translateY(-3px);
}

.emotion-btn.active {
  background: rgba(212, 168, 67, 0.12);
  border-color: var(--tomorrowland-gold);
  color: var(--tomorrowland-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.15);
}

/* Emotion colors for active state */
.emotion-btn[data-emotion="wonder"].active { border-color: #D4A843; color: #D4A843; }
.emotion-btn[data-emotion="love"].active { border-color: #E03E6B; color: #E03E6B; }
.emotion-btn[data-emotion="anger"].active { border-color: #C81E1E; color: #C81E1E; }
.emotion-btn[data-emotion="joy"].active { border-color: #00E5D0; color: #00E5D0; }
.emotion-btn[data-emotion="desire"].active { border-color: #6B2FA0; color: #9B59E0; }
.emotion-btn[data-emotion="sadness"].active { border-color: #A8A3B5; color: #A8A3B5; }

.emotion-btn__icon {
  transition: transform var(--duration-normal) ease;
}

.emotion-btn:hover .emotion-btn__icon,
.emotion-btn.active .emotion-btn__icon {
  transform: scale(1.15);
}

.emotion-btn__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Emotion Display */
.emotion-display {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-slow) ease;
}

.emotion-display__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-md);
}

.emotion-display__text {
  font-size: 1.05rem;
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.emotion-display__colors {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--glass-border);
  transition: transform var(--duration-normal) ease;
}

.color-swatch:hover {
  transform: scale(1.2);
}

/* ----------------------------------------------------------------
   15. FAQ SECTION
   ---------------------------------------------------------------- */
.faq-section {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(224, 62, 107, 0.05) 0%, transparent 50%),
    var(--deep-midnight);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: start;
}

.faq-item {
  padding: 0;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pearl-white);
  list-style: none;
  transition: color var(--duration-normal) ease;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question:hover {
  color: var(--tomorrowland-gold);
}

.faq-item__chevron {
  flex-shrink: 0;
  transition: transform var(--duration-normal) ease;
  color: var(--tomorrowland-gold);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.7;
}

.faq-item__answer strong {
  color: var(--tomorrowland-gold);
}

/* Checklist */
.checklist {
  position: sticky;
  top: 100px;
}

.checklist__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: var(--space-lg);
}

.checklist__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--duration-normal) ease;
}

.checklist__item:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.checklist__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checklist__custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) ease;
  position: relative;
}

.checklist__custom-check::after {
  content: '';
  width: 6px;
  height: 12px;
  border: solid var(--deep-midnight);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform var(--duration-normal) var(--ease-spring);
  position: absolute;
  top: 2px;
}

.checklist__check:checked ~ .checklist__custom-check {
  background: var(--tomorrowland-gold);
  border-color: var(--tomorrowland-gold);
}

.checklist__check:checked ~ .checklist__custom-check::after {
  transform: rotate(45deg) scale(1);
}

.checklist__check:checked ~ .checklist__text {
  color: var(--tomorrowland-gold);
  text-decoration: line-through;
  text-decoration-color: rgba(212, 168, 67, 0.3);
}

.checklist__text {
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.8);
  transition: all var(--duration-normal) ease;
}

/* ----------------------------------------------------------------
   16. TESTIMONIALS SECTION
   ---------------------------------------------------------------- */
.testimonials {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
    var(--deep-midnight);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-2xl);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--aurora-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pearl-white);
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pearl-white);
  font-style: normal;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--mist);
}

/* ----------------------------------------------------------------
   17. CTA FINAL SECTION
   ---------------------------------------------------------------- */
.cta-final {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107, 47, 160, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(224, 62, 107, 0.1) 0%, transparent 50%),
    var(--deep-midnight);
}

.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: var(--space-lg);
}

.cta-final__text {
  font-size: 1.15rem;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.cta-final__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: rgba(5, 7, 15, 0.8);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--pearl-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer__logo:hover {
  color: var(--tomorrowland-gold);
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tomorrowland-gold);
  margin-bottom: var(--space-lg);
}

.footer__links ul li {
  margin-bottom: var(--space-sm);
}

.footer__links ul li a {
  font-size: 0.9rem;
  color: var(--mist);
  transition: color var(--duration-normal) ease;
}

.footer__links ul li a:hover {
  color: var(--tomorrowland-gold);
}

.footer__social-links {
  display: flex;
  gap: var(--space-md);
}

.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--mist);
  transition: all var(--duration-normal) ease;
}

.footer__social-links a:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: var(--tomorrowland-gold);
  color: var(--tomorrowland-gold);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--mist);
  margin-bottom: var(--space-sm);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(168, 163, 181, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   19. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 67, 0.4), 0 0 60px rgba(212, 168, 67, 0.1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

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

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

/* Scroll-driven animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  will-change: opacity, transform;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   20. RESPONSIVE DESIGN (Mobile-First Overrides)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tickets__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticket-card--featured {
    transform: scale(1);
  }

  .ticket-card--featured:hover {
    transform: translateY(-4px);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    transition: right var(--duration-slow) var(--ease-out-expo);
    border-left: 1px solid var(--glass-border);
  }

  .nav__links.active {
    right: 0;
  }

  .nav__burger {
    display: flex;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__main {
    padding-right: 0;
  }

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

  .bento-card--large {
    grid-column: span 1;
  }

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

  .stage-card {
    min-height: 300px;
  }

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

  .guide__tabs {
    gap: var(--space-xs);
  }

  .guide__tab {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }

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

  .checklist {
    position: static;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .countdown {
    gap: var(--space-sm);
  }

  .countdown__item {
    padding: var(--space-sm) var(--space-md);
    min-width: 60px;
  }

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

  .emotion-selector {
    gap: var(--space-sm);
  }

  .emotion-btn {
    padding: var(--space-sm) var(--space-md);
    min-width: 70px;
  }

  .emotion-btn__icon svg {
    width: 24px;
    height: 24px;
  }

  .emotion-btn__label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__title-main {
    font-size: 2.2rem;
  }

  .hero__title-sub {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .hero__theme {
    font-size: 1rem;
    letter-spacing: 6px;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
  }

  .stat-card__number {
    font-size: 2rem;
  }

  .ticket-card__amount {
    font-size: 2.5rem;
  }
}

/* ----------------------------------------------------------------
   21. REDUCED MOTION (Accessibility)
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll,
  .animate-fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__scroll {
    animation: none;
  }
}

/* ----------------------------------------------------------------
   22. PRINT STYLES
   ---------------------------------------------------------------- */
@media print {
  .nav, .hero__particles, .hero__scroll, .scroll-progress,
  .hero__overlay, .cta-final__bg {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .glass-card {
    border: 1px solid #ccc;
    background: #f9f9f9;
  }
}
