@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Cinzel:wght@400;600&display=swap');

:root {
  --bg: #010308;
  --bg-alt: #1a0f2a;
  --gold: #c59b22;
  --cyan: #45c4d7;
  --violet: #8b5cf6;
  --text: #e7e9f0;
  --muted: #9aa1b7;
  --card: rgba(16, 20, 36, 0.65);
  --stroke: rgba(197, 155, 34, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(197, 155, 34, 0.12), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(69, 196, 215, 0.1), transparent 35%),
              radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08), transparent 45%),
              linear-gradient(135deg, var(--bg), var(--bg-alt), var(--bg));
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: -1;
  animation: noiseShift 8s infinite alternate;
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(2px, 2px); }
}

/* Starfield effect */
.stars {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(197, 155, 34, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(69, 196, 215, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(197, 155, 34, 0.2), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(69, 196, 215, 0.2), transparent);
  background-size: 200% 200%, 180% 180%, 220% 220%, 190% 190%, 210% 210%, 195% 195%, 205% 205%;
  background-position: 0% 0%;
  animation: twinkle 120s linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Particle system */
.particles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
  background: var(--cyan);
}

.particle:nth-child(3n) {
  background: rgba(255, 255, 255, 0.6);
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(var(--drift-x, 50px)) scale(1);
    opacity: 0;
  }
}

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

a:hover {
  color: var(--gold);
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(4, 12, 28, 0.7);
  border-bottom: 1px solid var(--stroke);
  isolation: isolate;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  font-size: 0.9rem;
}

.brand-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(197, 155, 34, 0.3));
}

.brand .glyph {
  width: 28px;
  height: 28px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--gold);
  box-shadow: 0 0 12px rgba(197, 155, 34, 0.4);
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.menu a {
  color: var(--text);
  padding: 6px 10px;
  border-radius: 18px;
  transition: color 0.25s ease, background 0.25s ease;
}

.menu a:hover,
.menu a.is-active {
  color: var(--gold);
  background: rgba(197, 155, 34, 0.12);
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.lang-switch a {
  color: var(--muted);
  position: relative;
  padding: 2px 0;
}

.lang-switch a.active {
  color: var(--gold);
}

.lang-switch a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.hero {
  position: relative;
  padding: 50px 22px 140px;
  overflow: visible;
  background:
    linear-gradient(120deg, rgba(1, 3, 8, 0.85), rgba(1, 3, 8, 0.6)),
    url('/images/mandala-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #010308;
}

.hero::after {
  animation: heroGlow 10s ease-in-out infinite alternate, mandalaRotate 180s linear infinite;
}

@keyframes mandalaRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(197, 155, 34, 0.18), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(69, 196, 215, 0.12), transparent 30%);
  filter: blur(30px);
  opacity: 0.8;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 38%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 155, 34, 0.45) 0%, rgba(197, 155, 34, 0) 70%);
  filter: blur(24px);
  opacity: 0.75;
  transform: translate(-50%, -50%);
  animation: heroGlow 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes heroGlow {
  from { opacity: 0.45; transform: translate(-50%, -48%) scale(0.96); }
  to { opacity: 0.9; transform: translate(-50%, -52%) scale(1.06); }
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: var(--gold);
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
}

.hero h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin: 12px 0 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(197, 155, 34, 0.3),
               0 0 40px rgba(197, 155, 34, 0.2),
               0 0 60px rgba(197, 155, 34, 0.1);
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(197, 155, 34, 0.3),
                 0 0 40px rgba(197, 155, 34, 0.2),
                 0 0 60px rgba(197, 155, 34, 0.1);
  }
  50% {
    text-shadow: 0 0 30px rgba(197, 155, 34, 0.5),
                 0 0 50px rgba(197, 155, 34, 0.3),
                 0 0 70px rgba(197, 155, 34, 0.15);
  }
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-events {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.hero-events__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-link {
  color: var(--text);
  opacity: 0.8;
  font-size: 0.95rem;
}

.all-link:hover {
  color: var(--gold);
  opacity: 1;
}

.hero-events__list {
  display: grid;
  gap: 10px;
}

.hero-event-card {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(197, 155, 34, 0.2);
  background: linear-gradient(120deg, rgba(16, 20, 36, 0.8), rgba(16, 20, 36, 0.55));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1.05fr 1.2fr auto;
  align-items: center;
  gap: 18px;
}

.hero-event-card h3 {
  margin: 6px 0 4px;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.hero-event-left {
  display: grid;
  gap: 6px;
  align-content: start;
}

.hero-event-left .pill {
  justify-self: start;
}

.hero-event-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-event-middle {
  display: grid;
  gap: 10px;
  align-content: start;
}

.oracle-tracklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.oracle-tracklist .dj-name {
  font-weight: 600;
  color: #dcbf72;
  font-size: 1.1rem;
  text-align: center;
}

.big-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  padding: 16px 32px;
  min-width: 200px;
  border: none;
  cursor: pointer;
}

.big-play-btn .play-icon {
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.big-play-btn:hover .play-icon {
  transform: scale(1.2);
}

.song-play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(220, 191, 114, 0.7);
  background: rgba(220, 191, 114, 0.2);
  color: var(--text);
  cursor: pointer;
}

.song-play:hover {
  box-shadow: 0 0 10px rgba(220, 191, 114, 0.4);
  border-color: var(--gold);
}

.hero-event-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #c59b22, #a87e14);
  border-color: #e2c36b;
  color: #0a0f1f;
  box-shadow: 0 8px 30px rgba(197, 155, 34, 0.4);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn.primary:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(197, 155, 34, 0.3);
}

.btn.small {
  padding: 9px 12px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.btn.xs {
  padding: 7px 10px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn:not(.primary) {
  border: 1px solid rgba(197, 155, 34, 0.5);
  background: rgba(197, 155, 34, 0.05);
}

.btn:not(.primary):hover {
  background: rgba(197, 155, 34, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn.ghost {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* Hipsy-style ticket button */
.hipsy-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 48px;
  background: #28776d;
  border: none;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(40, 119, 109, 0.4),
              0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hipsy-ticket-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

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

.hipsy-ticket-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(40, 119, 109, 0.6),
              0 6px 24px rgba(0, 0, 0, 0.3);
  background: #319f92;
  color: white;
}

.hipsy-logo {
  /* width: 56px; */
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  animation: logoFloat 3s ease-in-out infinite;
}

.hipsy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.hipsy-text strong {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hipsy-text small {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
}

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

@media (max-width: 720px) {
  .hipsy-ticket-btn {
    padding: 16px 32px;
    font-size: 1rem;
    gap: 12px;
  }

  .hipsy-logo {
    /* width: 48px; */
    height: 48px;
  }

  .hipsy-text strong {
    font-size: 1rem;
  }

  .hipsy-text small {
    font-size: 0.75rem;
  }
}

.badge {
  padding: 8px 14px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  color: var(--gold);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 22px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.section {
  padding: 40px 22px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(197, 155, 34, 0.5) 20%,
    rgba(69, 196, 215, 0.5) 50%,
    rgba(197, 155, 34, 0.5) 80%,
    transparent);
}

.section::after {
  content: '✦';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(197, 155, 34, 0.6);
  animation: sectionGlyphPulse 3s ease-in-out infinite;
}

@keyframes sectionGlyphPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: 0.04em;
}

.lead {
  color: var(--muted);
  max-width: 700px;
  text-align: center;
  margin: 0 auto 30px;
}

.card {
  position: relative;
  padding: 20px;
  background: linear-gradient(145deg, rgba(16, 20, 36, 0.75), rgba(16, 20, 36, 0.55));
  border: 1px solid rgba(197, 155, 34, 0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, background 0.3s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(197, 155, 34, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
    rgba(197, 155, 34, 0) 0%,
    rgba(69, 196, 215, 0.3) 25%,
    rgba(139, 92, 246, 0.3) 50%,
    rgba(197, 155, 34, 0.3) 75%,
    rgba(197, 155, 34, 0) 100%);
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(8px);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 34, 0.6);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(197, 155, 34, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 28, 48, 0.9), rgba(16, 20, 36, 0.7));
}

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

.card:hover::after {
  opacity: 1;
  animation: iridescence 3s linear infinite;
}

@keyframes iridescence {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(69, 196, 215, 0.15);
  color: var(--text);
  font-size: 0.9rem;
  border: 1px solid rgba(69, 196, 215, 0.3);
}

.footer {
  border-top: 1px solid var(--stroke);
  background: rgba(4, 12, 28, 0.8);
  padding: 28px 22px 36px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer strong {
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}

.newsletter {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(197, 155, 34, 0.12), rgba(4, 12, 28, 0.85));
}

.newsletter input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small {
  font-size: 0.9rem;
}

.event-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.illus {
  display: none;
}

@keyframes drift {
  from { transform: translate3d(-6px, -6px, 0); }
  to { transform: translate3d(6px, 6px, 0); }
}

.glyph-grid {
  display: none;
}

/* Loading animation */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-mandala {
  width: 80px;
  height: 80px;
  position: relative;
  animation: mandalaLoad 3s ease-in-out infinite;
}

.loader-mandala::before,
.loader-mandala::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 50%;
}

.loader-mandala::before {
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.5s linear infinite;
}

.loader-mandala::after {
  border-bottom-color: var(--cyan);
  border-left-color: var(--cyan);
  animation: spin 2s linear infinite reverse;
  inset: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes mandalaLoad {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(197, 155, 34, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(197, 155, 34, 0.6))
            drop-shadow(0 0 40px rgba(69, 196, 215, 0.4));
  }
}

.loader-text {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (max-width: 720px) {
  header { position: static; }
  .hero {
    padding: 110px 18px 90px;
    background-position: center center;
    background-size: 180%;
  }
  .nav { justify-content: space-between; gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .menu {
    position: fixed;
    top: 62px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    z-index: 99999;
  }
  body.nav-open .menu { display: flex; }
  .lang-switch {
    order: 3;
    gap: 10px;
  }
  .hero-event-card {
    grid-template-columns: 1fr;
  }
  .big-play-btn {
    padding: 14px 20px;
    min-width: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .big-play-btn span:not(.play-icon) {
    display: none;
  }
  .big-play-btn .play-icon {
    font-size: 1.5rem;
  }
  .oracle-play-button {
    width: 100%;
    justify-content: center;
  }
  .section::before,
  .section::after {
    display: block;
  }
}

/* Virtual Tour Section */
.venue-tour {
  margin: 32px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--stroke);
}

.venue-tour h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
  color: var(--text);
}

/* Virtual Tour on Homepage */
.venue-tour-home {
  max-width: 1200px;
  margin: 0 auto;
}

.venue-tour-home h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.tour-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--stroke);
}

.tour-container iframe {
  display: block;
  border: none;
  width: 100%;
  height: calc(100% + 80px);
  margin-bottom: -80px;
}

@media (max-width: 720px) {
  .venue-tour {
    margin: 48px 0 24px;
  }

  .venue-tour h2 {
    font-size: 1.5rem;
  }

  .tour-container {
    height: 400px;
  }

  .tour-container iframe {
    height: calc(100% + 60px);
    margin-bottom: -60px;
  }
}

/* Event Image */
.event-image {
  margin: 0 0 32px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--stroke);
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .event-image {
    margin: 0 -16px 24px -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* Event Header - Side by Side Layout */
.event-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.event-image-side {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--stroke);
  position: sticky;
  top: 100px;
}

.event-image-side img {
  width: 100%;
  height: auto;
  display: block;
}

.event-info-side {
  min-width: 0;
}

.event-info-side h1 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .event-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .event-image-side {
    position: static;
    margin: 0 -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* Event Music Preview on Detail Page */
.event-music-preview {
  margin: 24px 0;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.event-music-preview .dj-name {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.event-music-preview .big-play-btn {
  margin: 0;
}

@media (max-width: 900px) {
  .event-music-preview {
    align-items: center;
    text-align: center;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.gallery-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.gallery-date {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 12px 0;
}

.gallery-caption p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.gallery-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text);
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
  line-height: 1;
}

.gallery-modal-close:hover {
  color: var(--gold);
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-modal-caption {
  text-align: center;
  padding: 20px;
  max-width: 600px;
  margin-top: 20px;
}

.gallery-modal-caption h3 {
  color: var(--gold);
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.gallery-modal-caption p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.gallery-link {
  cursor: pointer;
  display: block;
}

@media (max-width: 768px) {
  .gallery-modal-close {
    top: 15px;
    right: 20px;
    font-size: 36px;
  }
  
  .gallery-modal-content {
    max-height: 70vh;
  }
}

/* Research Page with Floating TOC */
.research-container {
  display: flex;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.research-toc {
  position: sticky;
  top: 100px;
  width: 280px;
  height: fit-content;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 24px;
  flex-shrink: 0;
}

.research-toc h3 {
  margin: 0 0 16px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 600;
}

.research-toc nav {
  font-size: 0.9rem;
}

.research-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-toc li {
  margin: 0;
  padding: 0;
}

.research-toc a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.research-toc a:hover {
  color: var(--text);
  border-left-color: var(--gold);
  background: rgba(197, 155, 34, 0.1);
}

.research-toc a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(197, 155, 34, 0.15);
  font-weight: 500;
}

.research-toc ul ul {
  margin-left: 16px;
}

.research-toc ul ul a {
  font-size: 0.85rem;
  padding: 6px 12px;
}

.research-content {
  flex: 1;
  min-width: 0;
  max-width: 800px;
}

.research-content h1 {
  margin-bottom: 16px;
}

.research-content h2 {
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stroke);
}

.research-content h3 {
  margin-top: 48px;
  margin-bottom: 16px;
}

/* Smooth scrolling offset for anchors */
.research-content h2[id],
.research-content h3[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
  .research-container {
    flex-direction: column;
  }
  
  .research-toc {
    position: relative;
    top: 0;
    width: 100%;
    max-height: 400px;
    order: -1;
  }
  
  .research-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .research-toc {
    max-height: 300px;
  }
}

/* Music Playlist Styles */
.music-playlist {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  overflow: hidden;
}

.playlist-header {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  user-select: none;
  transition: all 0.2s ease;
}

.playlist-header:hover {
  color: var(--gold);
  background: rgba(197, 155, 34, 0.1);
}

.playlist-toggle {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

.music-playlist.open .playlist-toggle {
  transform: rotate(180deg);
}

.playlist-tracks {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid var(--stroke);
}

.music-playlist.open .playlist-tracks {
  max-height: 400px;
  overflow-y: auto;
}

.playlist-track {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(197, 155, 34, 0.15);
}

.playlist-track:last-child {
  border-bottom: none;
}

.playlist-track:hover {
  background: rgba(197, 155, 34, 0.1);
}

.playlist-track.active {
  background: rgba(197, 155, 34, 0.2);
  border-left: 3px solid var(--gold);
}

.playlist-track .track-number {
  color: var(--muted);
  font-size: 0.85rem;
  min-width: 24px;
}

.playlist-track .track-title {
  flex: 1;
  font-size: 0.9rem;
}

.playlist-track .track-play-icon {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.playlist-track:hover .track-play-icon,
.playlist-track.active .track-play-icon {
  opacity: 1;
}

/* Track label in main button */
.track-label {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .music-playlist {
    margin-top: 12px;
  }

  .playlist-header {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .playlist-track {
    padding: 10px 12px;
    gap: 8px;
  }

  .playlist-track .track-title {
    font-size: 0.85rem;
  }
}
