:root {
  --bg: #0a0604;
  --bg-alt: #1a1210;
  --bg-soft: rgba(30, 22, 18, 0.85);
  --primary: #f4d58d;
  --primary-soft: rgba(244, 213, 141, 0.15);
  --primary-strong: #ffeaa7;
  --gold: #d4af37;
  --text: #fefaf5;
  --text-dim: rgba(254, 250, 245, 0.7);
  --accent: #e67e22;
  --accent-dark: #c0392b;
  --border: rgba(244, 213, 141, 0.25);
  --max-width: 1280px;
  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0a0604 0%, #1a1210 50%, #0a0604 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(244, 213, 141, 0.02) 2px, rgba(244, 213, 141, 0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(244, 213, 141, 0.02) 2px, rgba(244, 213, 141, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
 a:focus {
  color: var(--primary-strong);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 6, 4, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1000;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
}

.site-header.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10, 6, 4, 0.95);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 50%, var(--primary-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(244, 213, 141, 0.3);
  position: relative;
}

.logo::after {
  content: '✦';
  position: absolute;
  right: -20px;
  top: -8px;
  font-size: 0.6rem;
  color: var(--gold);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--text);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.6);
}

main {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-strong), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section h3 span {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  max-width: 680px;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244, 213, 141, 0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

/* Three.js Particle Canvas */
#curtain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

/* Modern Reveal Overlay */
.reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(10, 6, 4, 0.95) 0%, rgba(10, 6, 4, 0.98) 100%);
  opacity: 1;
  transition: opacity 1.5s ease-out;
}

.reveal-overlay::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--gold);
  animation: logoReveal 2s ease-in-out;
  opacity: 0;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}


/* Floating Art Deco Elements */
.deco-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.deco-diamond,
.deco-circle {
  position: absolute;
  opacity: 0.3;
}

.deco-diamond {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 30%, rgba(244, 213, 141, 0.2) 50%, transparent 70%);
  border: 2px solid rgba(244, 213, 141, 0.4);
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.deco-diamond:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.deco-diamond:nth-child(2) {
  top: 60%;
  right: 8%;
  animation-delay: 2s;
  animation-duration: 12s;
  width: 60px;
  height: 60px;
}

.deco-diamond:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 14s;
  width: 50px;
  height: 50px;
}

.deco-circle {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(244, 213, 141, 0.3);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.deco-circle:nth-child(4) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.deco-circle:nth-child(5) {
  bottom: 30%;
  right: 25%;
  animation-delay: 3s;
  width: 70px;
  height: 70px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-25px) rotate(3deg);
  }
}


#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(244, 213, 141, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(230, 126, 34, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 6, 4, 0.3) 0%, rgba(10, 6, 4, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  max-width: 800px;
  display: grid;
  gap: 1.25rem;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.hero-content.visible {
  opacity: 1;
}

.hero-content.visible > * {
  opacity: 0;
  transform: translateY(20px);
  animation: revealContent 0.8s ease-out forwards;
}

.hero-content.visible > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content.visible > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content.visible > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content.visible > *:nth-child(4) { animation-delay: 0.7s; }
.hero-content.visible > *:nth-child(5) { animation-delay: 0.9s; }
.hero-content.visible > *:nth-child(6) { animation-delay: 1.1s; }
.hero-content.visible > *:nth-child(7) { animation-delay: 1.3s; }

@keyframes revealContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--gold) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(244, 213, 141, 0.4);
  animation: fadeInUp 1.2s ease-out;
  margin: 0;
}

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

.hero-content h2 {
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.2vw + 0.9rem, 1.45rem);
  color: var(--primary);
  animation: fadeInUp 1.4s ease-out 0.2s both;
  text-shadow: 0 0 20px rgba(244, 213, 141, 0.5);
}

.hero-tagline {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 1rem;
  margin-inline: auto;
  animation: fadeInUp 1.6s ease-out 0.4s both;
}

.countdown > div {
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.08) 0%, rgba(10, 6, 4, 0.8) 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.countdown > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.countdown > div:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(244, 213, 141, 0.3);
}

.count {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--primary-strong), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.button {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: var(--bg);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.button.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button.primary:hover::before {
  width: 300px;
  height: 300px;
}

.button.primary:hover,
.button.primary:focus {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.button.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.button.ghost:hover,
.button.ghost:focus {
  background: rgba(217, 198, 160, 0.1);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.intro {
  background: 
    radial-gradient(ellipse at top left, rgba(244, 213, 141, 0.1), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(230, 126, 34, 0.08), transparent 50%),
    var(--bg);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-copy {
  max-width: 640px;
}

.intro-copy h3 {
  font-size: 2.2rem;
}

.english {
  font-style: italic;
  color: var(--text-dim);
}

.intro-stats {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.intro-stats article {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.08), rgba(10, 6, 4, 0.8));
  border: 2px solid var(--border);
  border-radius: 18px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.intro-stats article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.intro-stats article:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(244, 213, 141, 0.25);
}

.intro-stats article:hover::before {
  transform: scaleX(1);
}

.video-cover {
  background:
    radial-gradient(ellipse at center, rgba(244, 213, 141, 0.08), transparent 70%),
    var(--bg);
  position: relative;
  padding: 4rem 1.5rem;
}

.video-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(244, 213, 141, 0.2);
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.video-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(244, 213, 141, 0.3);
  border-color: var(--gold);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.video-unmute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.95), rgba(212, 175, 55, 0.95));
  color: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(244, 213, 141, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.video-wrapper:hover .video-unmute-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-unmute-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(244, 213, 141, 0.6);
  background: linear-gradient(135deg, rgba(255, 234, 167, 0.98), rgba(244, 213, 141, 0.98));
}

.video-unmute-btn:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-unmute-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.video-unmute-text {
  white-space: nowrap;
}

.highlights {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.highlights::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 213, 141, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.highlight-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-grid article {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.05), rgba(10, 6, 4, 0.8));
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.highlight-grid article h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.15), rgba(230, 126, 34, 0.15));
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(244, 213, 141, 0.25);
}

.highlight-grid article:hover::before {
  transform: scaleX(1);
}

.tickets {
  background:
    radial-gradient(ellipse at top, rgba(244, 213, 141, 0.2), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(230, 126, 34, 0.15), transparent 60%),
    var(--bg);
  text-align: center;
  position: relative;
}

.tickets .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tickets::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ticket-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2.5rem;
}

.ticket-grid article {
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.08), rgba(10, 6, 4, 0.85));
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.ticket-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.ticket-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(244, 213, 141, 0.3);
}

.ticket-grid article:hover::before {
  transform: scaleX(1);
}

.ticket-grid article h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.ticket-grid .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--primary-strong), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.ticket-grid .vip {
  background: linear-gradient(140deg, rgba(244, 213, 141, 0.25), rgba(230, 126, 34, 0.2), rgba(10, 6, 4, 0.9));
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
  position: relative;
}

.ticket-grid .vip:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.experience {
  background: var(--bg);
  position: relative;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.experience-intro {
  max-width: 540px;
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary-soft);
}

.timeline-item {
  padding-left: 3.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--bg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), inset 0 0 10px rgba(244, 213, 141, 0.3);
  transition: all var(--transition);
}

.timeline-item:hover::before {
  transform: scale(1.3);
  background: var(--gold);
}

.time {
  display: inline-block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.performers {
  background: var(--bg-alt);
  position: relative;
}

.performers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.performer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.performer-grid article {
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.08), rgba(10, 6, 4, 0.85));
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.performer-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.performer-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(244, 213, 141, 0.3);
}

.performer-grid article:hover::before {
  transform: scaleX(1);
}

.performer-grid article h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-strong), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.performer-grid .avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: radial-gradient(circle at 30% 30%, rgba(244, 213, 141, 0.8), rgba(230, 126, 34, 0.6), rgba(10, 6, 4, 0.9));
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3), inset 0 2px 10px rgba(244, 213, 141, 0.3);
  transition: all var(--transition);
  position: relative;
}

/* Individual avatar colors */
.performer-grid article:nth-child(1) .avatar {
  background: radial-gradient(circle at 30% 30%, rgba(255, 195, 0, 0.9), rgba(230, 126, 34, 0.7), rgba(139, 69, 19, 0.9));
  border-color: #ffc300;
  box-shadow: 0 8px 30px rgba(255, 195, 0, 0.4), inset 0 2px 10px rgba(255, 195, 0, 0.3);
}

.performer-grid article:nth-child(2) .avatar {
  background: radial-gradient(circle at 30% 30%, rgba(100, 149, 237, 0.9), rgba(65, 105, 225, 0.7), rgba(25, 25, 112, 0.9));
  border-color: #6495ed;
  box-shadow: 0 8px 30px rgba(100, 149, 237, 0.4), inset 0 2px 10px rgba(100, 149, 237, 0.3);
}

.performer-grid article:nth-child(3) .avatar {
  background: radial-gradient(circle at 30% 30%, rgba(220, 20, 60, 0.9), rgba(178, 34, 34, 0.7), rgba(139, 0, 0, 0.9));
  border-color: #dc143c;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4), inset 0 2px 10px rgba(220, 20, 60, 0.3);
}

.performer-grid article:nth-child(4) .avatar {
  background: radial-gradient(circle at 30% 30%, rgba(50, 205, 50, 0.9), rgba(34, 139, 34, 0.7), rgba(0, 100, 0, 0.9));
  border-color: #32cd32;
  box-shadow: 0 8px 30px rgba(50, 205, 50, 0.4), inset 0 2px 10px rgba(50, 205, 50, 0.3);
}

.performer-grid article:nth-child(5) .avatar {
  background: radial-gradient(circle at 30% 30%, rgba(218, 112, 214, 0.9), rgba(186, 85, 211, 0.7), rgba(128, 0, 128, 0.9));
  border-color: #da70d6;
  box-shadow: 0 8px 30px rgba(218, 112, 214, 0.4), inset 0 2px 10px rgba(218, 112, 214, 0.3);
}

.performer-grid .avatar::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.3;
  transition: all 0.3s ease;
}

/* Breathing effect on hover */
.performer-grid article:hover .avatar {
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.performer-grid article:hover .avatar::after {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Enhanced glow on hover for each color */
.performer-grid article:nth-child(1):hover .avatar {
  box-shadow: 0 12px 50px rgba(255, 195, 0, 0.7), inset 0 2px 20px rgba(255, 195, 0, 0.5);
}

.performer-grid article:nth-child(2):hover .avatar {
  box-shadow: 0 12px 50px rgba(100, 149, 237, 0.7), inset 0 2px 20px rgba(100, 149, 237, 0.5);
}

.performer-grid article:nth-child(3):hover .avatar {
  box-shadow: 0 12px 50px rgba(220, 20, 60, 0.7), inset 0 2px 20px rgba(220, 20, 60, 0.5);
}

.performer-grid article:nth-child(4):hover .avatar {
  box-shadow: 0 12px 50px rgba(50, 205, 50, 0.7), inset 0 2px 20px rgba(50, 205, 50, 0.5);
}

.performer-grid article:nth-child(5):hover .avatar {
  box-shadow: 0 12px 50px rgba(218, 112, 214, 0.7), inset 0 2px 20px rgba(218, 112, 214, 0.5);
}

.gallery {
  background: 
    radial-gradient(ellipse at center, rgba(244, 213, 141, 0.12), transparent 70%),
    var(--bg);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  margin-top: 3rem;
}

/* Create interesting layout patterns */
.gallery-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, rgba(244, 213, 141, 0.4), rgba(230, 126, 34, 0.3), rgba(10, 6, 4, 0.8));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.2), transparent 50%, rgba(230, 126, 34, 0.2));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
  border-color: var(--gold);
}

.gallery-card:hover::before {
  opacity: 1;
}


.gallery-card:nth-child(1) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F1.jpg?alt=media&token=0edf0a70-1e7b-4b69-a10c-f732fc728ca9'); }
.gallery-card:nth-child(2) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F2.jpg?alt=media&token=c059d088-e33e-467a-b308-1444e82ca7a8'); }
.gallery-card:nth-child(3) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F3.jpg?alt=media&token=643c8699-9998-47b6-9580-7c67285d2b35'); }
.gallery-card:nth-child(4) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F4.jpg?alt=media&token=0376d393-87b7-42b2-889f-06ea3edd73be'); }
.gallery-card:nth-child(5) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F5.jpg?alt=media&token=c4b3b37e-d156-4007-a9d5-6de3be54910e'); }
.gallery-card:nth-child(6) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F6.jpg?alt=media&token=bfe72653-6536-4694-8476-0f9b1e3d5811'); }
.gallery-card:nth-child(7) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F7.jpg?alt=media&token=6e29dac6-682a-47fe-af03-4b9a9acbdbcf'); }
.gallery-card:nth-child(8) { background-image: url('https://firebasestorage.googleapis.com/v0/b/sc-bemo.appspot.com/o/public%2Ftmp%2F8.jpg?alt=media&token=ff00f587-cd2e-485a-a23d-94ad00058c57'); }

.location {
  background: var(--bg-alt);
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.location .section-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.location-info ul {
  padding-left: 1rem;
  color: var(--text-dim);
}

.location-info li {
  margin-bottom: 0.6rem;
}

.map-wrap {
  position: relative;
  padding-top: 60%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(110%);
}

.shuttle {
  margin-top: 3rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(17, 11, 7, 0.6);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(217, 198, 160, 0.08);
  letter-spacing: 0.03em;
}

table thead {
  background: rgba(217, 147, 91, 0.15);
}

.faq {
  background: var(--bg);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.faq-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

details {
  background: rgba(17, 11, 7, 0.6);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  transition: background var(--transition);
}

details[open] {
  background: linear-gradient(135deg, rgba(244, 213, 141, 0.15), rgba(230, 126, 34, 0.1));
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(244, 213, 141, 0.2);
}

details summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.policies {
  background: 
    radial-gradient(ellipse at top right, rgba(244, 213, 141, 0.15), transparent 60%),
    var(--bg);
  position: relative;
}

.policies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 1.5rem;
}

.policy-list li {
  margin-bottom: 1rem;
  border-left: 3px solid rgba(217, 147, 91, 0.45);
  padding-left: 1rem;
}

.safety {
  color: var(--primary);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.closing-cta {
  text-align: center;
  background: 
    radial-gradient(circle at center, rgba(244, 213, 141, 0.25), transparent 60%),
    radial-gradient(ellipse at 30% 50%, rgba(230, 126, 34, 0.15), transparent 50%),
    var(--bg);
  position: relative;
}

.closing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.closing-cta p {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
}

.site-footer {
  position: relative;
  padding: 2rem 1.5rem 3.5rem;
  border-top: 1px solid var(--border);
  background: rgba(17, 11, 7, 0.95);
  text-align: center;
}

.share {
  margin-bottom: 2rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 213, 141, 0.15);
}

.social-links p {
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 213, 141, 0.08);
  border: 1px solid rgba(244, 213, 141, 0.25);
  color: var(--primary);
  transition: all var(--transition);
}

.social-icons a:hover,
.social-icons a:focus {
  background: rgba(244, 213, 141, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 213, 141, 0.3);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.share-btn {
  background: rgba(217, 198, 160, 0.12);
  color: var(--primary-strong);
  border: 1px solid rgba(217, 198, 160, 0.35);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.share-btn:hover,
.share-btn:focus {
  background: rgba(217, 147, 91, 0.35);
  transform: translateY(-2px);
}

.footer-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(217, 198, 160, 0.12);
  border: 1px solid rgba(217, 198, 160, 0.35);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-strong);
  text-decoration: none;
  transition: background var(--transition);
}

.back-to-top:hover,
.back-to-top:focus {
  background: rgba(217, 147, 91, 0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 1024px) {
  .site-header {
    gap: 1rem;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-card:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav ul {
    position: absolute;
    right: 1.5rem;
    top: 80px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 6, 4, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    min-width: 240px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height var(--transition), opacity var(--transition), visibility var(--transition), padding var(--transition), border-color var(--transition);
    box-shadow: none;
  }

  .main-nav ul.open {
    max-height: 500px;
    padding: 1.5rem;
    border-color: var(--gold);
    opacity: 1;
    visibility: visible;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  }

  .main-nav a {
    padding: 0.5rem 0;
    display: block;
    width: 100%;
  }

  .cta-button {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 1.25rem;
  }

  .video-cover {
    padding: 3rem 1rem;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-unmute-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .video-unmute-btn svg {
    width: 18px;
    height: 18px;
  }

  .video-unmute-text {
    display: none;
  }

  .section h3 {
    font-size: 2rem;
  }

  .section-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero {
    padding-top: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-content h1 {
    font-size: 2.8rem !important;
  }

  .hero-content h2 {
    font-size: 1.1rem !important;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 1rem;
  }

  /* Card adjustments for mobile */
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlight-grid article {
    padding: 1.5rem 1.25rem;
  }

  .highlight-grid article h4 {
    font-size: 1.05rem;
  }

  .highlight-grid article p {
    font-size: 0.9rem;
  }

  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ticket-grid article {
    padding: 1.75rem 1.5rem;
  }

  .ticket-grid article h4 {
    font-size: 1.15rem;
  }

  .ticket-grid .price {
    font-size: 1.75rem;
  }

  .ticket-grid article p {
    font-size: 0.9rem;
  }

  .performer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .performer-grid article {
    padding: 1.75rem 1.5rem;
  }

  .performer-grid article h4 {
    font-size: 1.1rem;
  }

  .performer-grid article p {
    font-size: 0.9rem;
  }

  .intro-stats {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }

  .intro-stats article {
    padding: 1.5rem 1.25rem;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    padding-left: 3rem;
  }

  .timeline-item p {
    font-size: 0.9rem;
  }

  .time {
    font-size: 0.85rem;
  }

  .location .section-inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 0.5rem;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  details {
    padding: 1rem 1.2rem;
  }

  details summary {
    font-size: 0.95rem;
  }

  details p {
    font-size: 0.9rem;
  }

  .deco-diamond,
  .deco-circle {
    display: none; /* Hide floating elements on mobile for performance */
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .video-cover {
    padding: 2.5rem 0.75rem;
  }

  .video-wrapper {
    border-radius: 12px;
  }

  .video-unmute-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .video-unmute-btn svg {
    width: 16px;
    height: 16px;
  }

  .video-unmute-text {
    display: none;
  }

  .hero-content h1 {
    letter-spacing: 0.04em;
    font-size: 2.2rem !important;
  }

  .hero-content h2 {
    font-size: 0.95rem !important;
  }

  .eyebrow {
    font-size: 0.7rem;
    display: none;
  }

  .section h3 {
    font-size: 1.6rem;
  }

  .section h3 span {
    font-size: 1rem;
  }

  .section-lead {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 0.75rem;
  }

  .countdown > div {
    padding: 1rem 0.75rem;
  }

  .count {
    font-size: 1.6rem;
  }

  .label {
    font-size: 0.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    gap: 0.5rem;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Card adjustments for small mobile */
  .highlight-grid article,
  .ticket-grid article,
  .performer-grid article,
  .intro-stats article {
    padding: 1.25rem 1rem;
  }

  .highlight-grid article h4,
  .ticket-grid article h4,
  .performer-grid article h4 {
    font-size: 1rem;
  }

  .highlight-grid article p,
  .ticket-grid article p:not(.price),
  .performer-grid article p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .ticket-grid .price {
    font-size: 1.6rem;
  }

  .performer-grid .avatar {
    width: 90px;
    height: 90px;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline-item p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .time {
    font-size: 0.8rem;
  }

  .intro-copy h3 {
    font-size: 1.5rem;
  }

  .intro-copy p {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  details {
    padding: 0.9rem 1rem;
  }

  details summary {
    font-size: 0.9rem;
  }

  details p {
    font-size: 0.85rem;
  }

  .policy-list li {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .closing-cta h3 {
    font-size: 1.6rem;
  }

  .closing-cta p {
    font-size: 1rem;
  }

  /* Better touch targets on mobile */
  .button, .cta-button {
    min-height: 44px;
    padding: 0.9rem 1.4rem;
    font-size: 0.8rem;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }

  /* Reduce curtain canvas on mobile for performance */
  #curtain-canvas {
    display: none;
  }

  /* Simplify hero overlay on mobile */
  .reveal-overlay {
    animation: simpleFadeOut 1.5s ease-out forwards;
  }

  @keyframes simpleFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
  }
}
