/* ===== VARIABLES ===== */
:root {
  --primary: #a855f7;
  --primary-dark: #9333ea;
  --primary-glow: rgba(168, 85, 247, 0.4);
  --accent: #facc15;
  --gradient: linear-gradient(135deg, #a855f7 0%, #facc15 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, rgba(250,204,21,0.05) 100%);
  --dark: #0a0a0f;
  --dark-light: #101018;
  --dark-card: #16161f;
  --dark-card-hover: #1c1c28;
  --dark-border: #222233;
  --text: #f0f0f5;
  --text-muted: #9898ab;
  --text-dim: #5e5e72;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px var(--primary-glow);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--primary) var(--dark); }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); overflow-x: hidden; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* GPU HINTS FOR ANIMATED ELEMENTS */
.about-laser, .about-glow, .about-smoke, .about-strobe,
.ticket-beam, .ticket-strobe, .ticket-smoke,
.hero-particle, .zone-preview, .scroll-progress,
.about-eq-bg span, .about-waveform span, .ticket-eq span,
.about-tag-eq span {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* RESPECT REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* OFFSCREEN PERFORMANCE — skip rendering for non-visible sections */
.ticket-section, .gallery-section, .artists-section, .aftermovie-section,
.partners-section, .social-section, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

::selection { background: rgba(168,85,247,0.3); color: #fff; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gradient); z-index: 9999; transition: width 0.1s linear; width: 0%; }

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); border: none; color: #fff; font-size: 1.1rem;
  cursor: pointer; z-index: 999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); box-shadow: var(--shadow-md), var(--shadow-glow);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 36px; border-radius: 50px; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; cursor: pointer;
  transition: var(--transition); border: none; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 24px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--primary-glow); }
.btn-outline { background: rgba(255,255,255,0.04); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-large { padding: 18px 52px; font-size: 1rem; letter-spacing: 1.5px; }

/* ===== SECTION HELPERS ===== */
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 20px;
  position: relative; padding-left: 36px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 24px; height: 1.5px; background: var(--gradient); border-radius: 1px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1; letter-spacing: 3px; margin-bottom: 24px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }
.about-tag-wrap .section-tag { padding-left: 0; margin-bottom: 0; }
.about-tag-wrap .section-tag::before { display: none; }
.text-accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  width: 100%; height: 1px; border: none; margin: 0;
  background: linear-gradient(90deg, transparent, var(--dark-border), rgba(168,85,247,0.15), var(--dark-border), transparent);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.92); backdrop-filter: blur(12px);
  padding: 10px 0; box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; transition: var(--transition); position: relative; z-index: 1002; }
.nav-logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(255,255,255,0.2)); }
.nav-logo img { height: 48px; width: auto; filter: drop-shadow(0 0 6px rgba(255,255,255,0.1)); }

/* DESKTOP NAV */
.nav-menu-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 16px; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; transition: var(--transition);
  border-radius: 50px; color: var(--text-muted);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gradient); border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 20px; }
.nav-link.active { color: #fff; }
.nav-link.active::after { width: 20px; }
.nav-cta {
  background: var(--gradient); color: #fff !important; margin-left: 12px;
  font-weight: 600; letter-spacing: 1.5px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { box-shadow: 0 4px 24px var(--primary-glow); transform: translateY(-2px); }

/* HAMBURGER */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px; background: none;
  border: none; cursor: pointer; padding: 10px; z-index: 1002;
  position: relative;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff;
  transition: all 0.4s cubic-bezier(0.77,0,0.175,1); border-radius: 2px;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== MOBILE MENU (FULL-SCREEN) ===== */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 420px; height: 100vh;
  z-index: 999; overflow-y: auto; overflow-x: hidden;
  background: linear-gradient(180deg, #08080d 0%, #0d0d15 40%, #0a0a12 100%);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
  display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }

/* MOBILE MENU BG EFFECTS */
.mobile-menu-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px);
}
.mobile-glow-1 {
  width: 300px; height: 300px; top: -50px; right: -80px;
  background: rgba(168,85,247,0.1);
  animation: mobileGlowPulse 6s ease-in-out infinite;
}
.mobile-glow-2 {
  width: 250px; height: 250px; bottom: 10%; left: -60px;
  background: rgba(168,85,247,0.08);
  animation: mobileGlowPulse 8s ease-in-out infinite 3s;
}
@keyframes mobileGlowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.mobile-menu-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent);
}

/* MOBILE MENU CONTENT */
.mobile-menu-content {
  position: relative; z-index: 1; padding: 110px 40px 40px;
  display: flex; flex-direction: column; min-height: 100%; gap: 0;
}

/* MOBILE NAV LINKS */
.mobile-nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0; color: var(--text); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0; transform: translateX(40px);
  transition: all 0.4s ease;
  position: relative;
}
.mobile-menu.active .mobile-nav-link {
  opacity: 1; transform: translateX(0);
  transition-delay: calc(0.15s + var(--i) * 0.06s);
}
.mobile-nav-link::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 0; height: 100%; border-radius: 4px;
  background: var(--gradient); opacity: 0.1;
  transition: width 0.3s ease;
}
.mobile-nav-link:hover::before { width: 100%; }
.mobile-nav-link:hover { padding-left: 16px; }

.mobile-nav-num {
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 2px;
  color: var(--primary); opacity: 0.5; min-width: 28px;
  transition: opacity 0.3s ease;
}
.mobile-nav-link:hover .mobile-nav-num { opacity: 1; }

.mobile-nav-text {
  font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.4rem);
  letter-spacing: 4px; text-transform: uppercase;
  transition: all 0.3s ease;
}
.mobile-nav-link:hover .mobile-nav-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* MOBILE CTA */
.mobile-menu-cta {
  padding: 32px 0 24px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.4s ease;
}
.mobile-menu.active .mobile-menu-cta {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.65s;
}
.mobile-menu-cta .btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; letter-spacing: 2px; }

/* MOBILE MENU FOOTER */
.mobile-menu-footer {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.mobile-menu.active .mobile-menu-footer { opacity: 1; transition-delay: 0.75s; }

.mobile-social { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
.mobile-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: var(--transition);
}
.mobile-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.mobile-menu-copy { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.5px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 100px 0 60px;
  background: radial-gradient(ellipse at 30% 50%, #1a0a20 0%, var(--dark) 70%);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.3) 30%, rgba(10,10,15,0.35) 60%, rgba(10,10,15,1) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(10,10,15,0.4) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-particle { position: absolute; border-radius: 50%; pointer-events: none; animation: float-particle linear infinite; }
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 800px; width: 100%;
}

/* HERO LOGO — MAIN ATTRACTION */
.hero-logo-wrap {
  position: relative; display: inline-block; margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}
.hero-logo-img {
  width: clamp(180px, 30vw, 340px); height: auto;
  filter: drop-shadow(0 0 30px rgba(168,85,247,0.4)) drop-shadow(0 0 60px rgba(250,204,21,0.2));
  animation: heroLogoFloat 6s ease-in-out infinite;
}
.hero-logo-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120%; height: 120%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle,
    rgba(168,85,247,0.15) 0%,
    rgba(250,204,21,0.08) 40%,
    transparent 70%
  );
  animation: heroLogoGlow 4s ease-in-out infinite alternate;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes heroLogoGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-date {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 6px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px; animation: fadeInDown 0.8s ease-out;
}
.hero-title { font-family: var(--font-display); line-height: 0.92; margin-bottom: 16px; }
.hero-title-line {
  display: block; font-size: clamp(3rem, 10vw, 7rem); letter-spacing: 6px;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}
.hero-title-accent {
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: fadeInUp 0.8s ease-out 0.15s both;
  filter: drop-shadow(0 4px 30px rgba(168,85,247,0.3));
}
.hero-subtitle {
  max-width: 520px; margin: 0 auto 28px; font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; animation: fadeInUp 0.8s ease-out 0.3s both; font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.45s both; }

/* COUNTDOWN */
.hero-countdown { margin-top: 36px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.countdown-box {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(10,10,20,0.6); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 20px 36px;
}
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.countdown-number {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.countdown-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); margin-top: 5px; }
.countdown-sep { font-family: var(--font-display); font-size: 1.8rem; color: rgba(255,255,255,0.15); padding-bottom: 16px; }

.hero-scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero-scroll-indicator span { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(180deg, var(--primary), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ABOUT — DJ CLUB THEME ===== */
.about-section {
  position: relative; padding: 180px 0 140px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(168,85,247,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(0,200,255,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #05050f 0%, #0a0a18 30%, #0d0520 60%, #05050f 100%);
}

/* BG TEXT */
.about-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(14rem, 35vw, 32rem);
  letter-spacing: 30px; white-space: nowrap; pointer-events: none; user-select: none;
  background: linear-gradient(135deg, rgba(168,85,247,0.06) 0%, rgba(168,85,247,0.04) 25%, rgba(0,200,255,0.05) 50%, rgba(168,85,247,0.06) 75%, rgba(168,85,247,0.04) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 1px rgba(168,85,247,0.05);
  animation: aboutBgShift 12s ease-in-out infinite;
}
@keyframes aboutBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* CLUB GLOW LIGHTS — static, no animation to avoid GPU thrash on large blurred elements */
.about-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.about-glow-1 { width: 700px; height: 700px; background: rgba(168,85,247,0.08); top: -5%; left: -15%; filter: blur(160px); }
.about-glow-2 { width: 500px; height: 500px; background: rgba(168,85,247,0.07); bottom: 5%; right: -10%; filter: blur(140px); }
.about-glow-3 { width: 400px; height: 400px; background: rgba(0,200,255,0.05); top: 40%; left: 60%; filter: blur(120px); }

/* LASER BEAMS — 3 beams only, simple transforms */
.about-laser {
  position: absolute; pointer-events: none; z-index: 1;
  width: 2px; transform-origin: top center;
}
.about-laser-1 {
  height: 120%; top: -10%; left: 15%;
  background: linear-gradient(180deg, rgba(168,85,247,0.7), transparent 80%);
  animation: laserSway1 8s ease-in-out infinite;
  opacity: 0.4;
}
.about-laser-2 {
  height: 110%; top: -5%; right: 20%;
  background: linear-gradient(180deg, rgba(168,85,247,0.6), transparent 80%);
  animation: laserSway2 10s ease-in-out infinite;
  opacity: 0.35;
}
.about-laser-3 {
  height: 130%; top: -15%; left: 50%;
  background: linear-gradient(180deg, rgba(0,200,255,0.5), transparent 80%);
  animation: laserSway1 12s ease-in-out infinite reverse;
  opacity: 0.3;
}
@keyframes laserSway1 { 0%, 100% { transform: rotate(-6deg); } 50% { transform: rotate(10deg); } }
@keyframes laserSway2 { 0%, 100% { transform: rotate(8deg); } 50% { transform: rotate(-5deg); } }

/* STROBE FLASH — single strobe only */
.about-strobe {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04), transparent 60%);
  opacity: 0;
}
.about-strobe-1 { animation: strobeAbout 6s ease-in-out infinite; }
@keyframes strobeAbout {
  0%, 93%, 100% { opacity: 0; }
  95% { opacity: 1; }
  97% { opacity: 0; }
}

/* SMOKE / HAZE — static, no animation */
.about-smoke {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(60px);
}
.about-smoke-1 {
  width: 500px; height: 200px; bottom: 0; left: -5%;
  background: rgba(168,85,247,0.04);
}
.about-smoke-2 {
  width: 400px; height: 180px; bottom: 10%; right: -8%;
  background: rgba(168,85,247,0.03);
}

/* GRID FLOOR */
.about-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 60%, transparent 100%);
}

/* BG EQUALIZER — reduced to 10 visible bars */
.about-eq-bg {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  display: flex; align-items: flex-end; justify-content: center; gap: 8px;
  pointer-events: none; opacity: 0.05;
}
.about-eq-bg span {
  width: 8px; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #a855f7, #a855f7);
  animation: aboutEqBounce var(--eq-speed, 0.8s) ease-in-out infinite alternate;
}
.about-eq-bg span:nth-child(n+11) { display: none; }
.about-eq-bg span:nth-child(1)  { height: 20px; --eq-speed: 0.7s; }
.about-eq-bg span:nth-child(2)  { height: 50px; --eq-speed: 0.5s; animation-delay: 0.1s; }
.about-eq-bg span:nth-child(3)  { height: 35px; --eq-speed: 0.8s; animation-delay: 0.05s; }
.about-eq-bg span:nth-child(4)  { height: 70px; --eq-speed: 0.45s; animation-delay: 0.15s; }
.about-eq-bg span:nth-child(5)  { height: 90px; --eq-speed: 0.6s; animation-delay: 0.08s; }
.about-eq-bg span:nth-child(6)  { height: 80px; --eq-speed: 0.55s; animation-delay: 0.2s; }
.about-eq-bg span:nth-child(7)  { height: 60px; --eq-speed: 0.5s; animation-delay: 0.12s; }
.about-eq-bg span:nth-child(8)  { height: 45px; --eq-speed: 0.65s; animation-delay: 0.03s; }
.about-eq-bg span:nth-child(9)  { height: 30px; --eq-speed: 0.7s; animation-delay: 0.18s; }
.about-eq-bg span:nth-child(10) { height: 15px; --eq-speed: 0.6s; animation-delay: 0.07s; }
@keyframes aboutEqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.about-container { position: relative; z-index: 2; }

/* TAG LINE */
.about-tag-wrap {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px;
}
.about-tag-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #a855f7);
  animation: tagLineExpand 2s ease-out 0.5s both;
}
.about-tag-line:last-child { background: linear-gradient(90deg, #a855f7, transparent); }
@keyframes tagLineExpand { from { width: 0; opacity: 0; } to { width: 40px; opacity: 1; } }

/* MINI EQ NEXT TO TAG */
.about-tag-eq {
  display: flex; align-items: flex-end; gap: 2px; height: 14px;
}
.about-tag-eq span {
  width: 2px; border-radius: 1px;
  background: linear-gradient(180deg, #a855f7, #a855f7);
  animation: tagEqBounce var(--eq-speed, 0.5s) ease-in-out infinite alternate;
}
.about-tag-eq span:nth-child(1) { height: 4px; --eq-speed: 0.4s; }
.about-tag-eq span:nth-child(2) { height: 10px; --eq-speed: 0.55s; animation-delay: 0.08s; }
.about-tag-eq span:nth-child(3) { height: 14px; --eq-speed: 0.35s; animation-delay: 0.15s; }
.about-tag-eq span:nth-child(4) { height: 8px; --eq-speed: 0.6s; animation-delay: 0.05s; }
.about-tag-eq span:nth-child(5) { height: 6px; --eq-speed: 0.45s; animation-delay: 0.12s; }
@keyframes tagEqBounce {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* HEADLINE */
.about-intro { text-align: center; margin-bottom: 80px; position: relative; }
.about-headline {
  font-family: var(--font-display); line-height: 1; letter-spacing: 3px;
}
.about-headline-top {
  display: block; font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: rgba(255,255,255,0.9); margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(168,85,247,0.15);
}
.about-headline-accent {
  display: block; font-size: clamp(3.5rem, 9vw, 7.5rem);
  background: linear-gradient(135deg, #a855f7 0%, #a855f7 30%, #00c8ff 50%, #a855f7 70%, #a855f7 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: headlineGradient 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(168,85,247,0.3));
}
@keyframes headlineGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* NEON FLARE UNDER HEADLINE */
.about-headline-flare {
  width: 300px; height: 3px; margin: 24px auto 0; border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.7), rgba(0,200,255,0.9), rgba(168,85,247,0.7), transparent);
  box-shadow: 0 0 20px rgba(168,85,247,0.5), 0 0 60px rgba(0,200,255,0.2), 0 0 100px rgba(168,85,247,0.1);
  animation: flareGlow 3s ease-in-out infinite;
}
@keyframes flareGlow {
  0%, 100% { opacity: 0.6; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 40px rgba(168,85,247,0.6), 0 0 100px rgba(0,200,255,0.25); }
}

/* WAVEFORM UNDER HEADLINE — 15 visible bars max */
.about-waveform {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  height: 24px; margin-top: 20px; opacity: 0.2;
}
.about-waveform span {
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #a855f7, #00c8ff);
  animation: waveformPulse var(--wv-speed, 0.6s) ease-in-out infinite alternate;
}
.about-waveform span:nth-child(n+16) { display: none; }
.about-waveform span:nth-child(1)  { height: 4px;  --wv-speed: 0.6s; }
.about-waveform span:nth-child(2)  { height: 10px; --wv-speed: 0.5s; animation-delay: 0.05s; }
.about-waveform span:nth-child(3)  { height: 18px; --wv-speed: 0.7s; animation-delay: 0.1s; }
.about-waveform span:nth-child(4)  { height: 24px; --wv-speed: 0.4s; animation-delay: 0.03s; }
.about-waveform span:nth-child(5)  { height: 14px; --wv-speed: 0.6s; animation-delay: 0.08s; }
.about-waveform span:nth-child(6)  { height: 20px; --wv-speed: 0.45s; animation-delay: 0.12s; }
.about-waveform span:nth-child(7)  { height: 22px; --wv-speed: 0.55s; animation-delay: 0.02s; }
.about-waveform span:nth-child(8)  { height: 24px; --wv-speed: 0.4s; animation-delay: 0.07s; }
.about-waveform span:nth-child(9)  { height: 22px; --wv-speed: 0.55s; animation-delay: 0.14s; }
.about-waveform span:nth-child(10) { height: 20px; --wv-speed: 0.45s; animation-delay: 0.04s; }
.about-waveform span:nth-child(11) { height: 14px; --wv-speed: 0.6s; animation-delay: 0.1s; }
.about-waveform span:nth-child(12) { height: 24px; --wv-speed: 0.4s; animation-delay: 0.06s; }
.about-waveform span:nth-child(13) { height: 18px; --wv-speed: 0.7s; animation-delay: 0.09s; }
.about-waveform span:nth-child(14) { height: 10px; --wv-speed: 0.5s; animation-delay: 0.11s; }
.about-waveform span:nth-child(15) { height: 4px;  --wv-speed: 0.6s; animation-delay: 0.13s; }
@keyframes waveformPulse {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* STATEMENT */
.about-statement { max-width: 800px; margin: 0 auto 80px; text-align: center; }
.about-statement-line {
  width: 60px; height: 2px; margin: 0 auto 44px; border-radius: 2px;
  background: linear-gradient(90deg, #a855f7, #a855f7); position: relative;
}
.about-statement-line::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #a855f7; box-shadow: 0 0 12px rgba(168,85,247,0.5);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.5); box-shadow: 0 0 20px rgba(168,85,247,0.6); } }

.about-lead {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* TEXT HIGHLIGHT WITH NEON GLOW */
.text-highlight { color: #fff; font-weight: 700; position: relative; }
.text-highlight::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%;
  height: 2px; background: linear-gradient(90deg, #a855f7, #a855f7); border-radius: 2px;
}
.text-glow { text-shadow: 0 0 20px rgba(168,85,247,0.5), 0 0 40px rgba(168,85,247,0.2); }
.hide-mobile { display: inline; }

/* BODY CARD */
.about-body { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.about-body-card {
  position: relative; padding: 52px 48px; border-radius: var(--radius);
  background: rgba(10,10,25,0.85);
  border: 1px solid rgba(168,85,247,0.1);
}
.about-body-card:hover { border-color: rgba(168,85,247,0.2); }
.about-body-card-border {
  position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(rgba(10,10,25,0.6), rgba(10,10,25,0.6)) padding-box,
              linear-gradient(135deg, rgba(168,85,247,0.3), rgba(0,200,255,0.15), rgba(168,85,247,0.2)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude; -webkit-mask-composite: xor;
}
.about-body-card-speaker {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff;
  box-shadow: 0 0 20px rgba(168,85,247,0.4);
  animation: speakerPulse 3s ease-in-out infinite;
}
@keyframes speakerPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}
.about-body-card p {
  font-size: 1.1rem; line-height: 2.1; color: var(--text-muted);
}

/* QUOTE */
.about-closing { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.about-quote-wrap { position: relative; }
.about-quote-border {
  position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none; z-index: 0;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(0,200,255,0.3), rgba(168,85,247,0.4), rgba(168,85,247,0.5));
  background-size: 400% 400%;
  animation: quoteBorderFlow 8s ease-in-out infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
}
@keyframes quoteBorderFlow {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}
.about-quote {
  position: relative; z-index: 1;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 300; font-style: italic;
  line-height: 2; color: rgba(255,255,255,0.8);
  padding: 56px 52px; border-radius: var(--radius);
  background: rgba(10,10,25,0.7);
}
.about-quote::before {
  content: '\201C'; position: absolute; top: 8px; left: 36px;
  font-family: Georgia, serif; font-size: 6rem; font-style: normal; line-height: 1;
  background: linear-gradient(135deg, #a855f7, #00c8ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.7;
}
.about-quote::after {
  content: '\201D'; position: absolute; bottom: 0; right: 36px;
  font-family: Georgia, serif; font-size: 6rem; font-style: normal; line-height: 1;
  background: linear-gradient(135deg, #00c8ff, #a855f7);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

/* CTA */
.about-cta { text-align: center; margin-top: 72px; }
.btn-glow {
  box-shadow: 0 4px 24px rgba(168,85,247,0.3), 0 0 60px rgba(168,85,247,0.1);
  animation: btnGlowPulse 3s ease-in-out infinite;
}
@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(168,85,247,0.3), 0 0 60px rgba(168,85,247,0.1); }
  50% { box-shadow: 0 8px 40px rgba(168,85,247,0.4), 0 0 100px rgba(168,85,247,0.2); }
}

/* ZONE PREVIEWS */
.zone-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 8px; }

.zone-preview {
  position: relative; text-align: center; padding: 0; border-radius: 20px;
  background: transparent; cursor: pointer; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
  animation: zoneCardEntry 0.8s ease-out var(--zone-delay, 0ms) both;
}
@keyframes zoneCardEntry {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ANIMATED GRADIENT BORDER */
.zone-preview-border {
  position: absolute; inset: 0; border-radius: 20px; z-index: 0; padding: 1.5px;
  background: linear-gradient(135deg, var(--zone-color, var(--primary)), transparent 40%, transparent 60%, var(--zone-color, var(--primary)));
  background-size: 300% 300%;
  animation: zoneBorderFlow 6s ease-in-out infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
  opacity: 0.4; transition: opacity 0.4s ease;
}
.zone-preview:hover .zone-preview-border { opacity: 1; }
@keyframes zoneBorderFlow {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* BG GLOW */
.zone-preview-glow {
  position: absolute; inset: 0; z-index: 0; border-radius: 20px; opacity: 0;
  background: radial-gradient(circle at 50% 30%, var(--zone-color, var(--primary)), transparent 70%);
  filter: blur(40px); transition: opacity 0.5s ease;
}
.zone-preview:hover .zone-preview-glow { opacity: 0.15; }

/* GIANT BG ICON */
.zone-preview-bg-icon {
  position: absolute; bottom: -15px; right: -15px; font-size: 7rem;
  color: var(--zone-color, var(--primary)); opacity: 0.04;
  pointer-events: none; z-index: 0; transition: all 0.5s ease;
  transform: rotate(-15deg);
}
.zone-preview:hover .zone-preview-bg-icon {
  opacity: 0.1; transform: rotate(-10deg) scale(1.1);
}

/* CONTENT */
.zone-preview-content {
  position: relative; z-index: 2; padding: 48px 24px 40px;
  background: rgba(16,16,24,0.95); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.zone-preview:hover .zone-preview-content {
  background: rgba(16,16,24,0.97);
  border-color: rgba(255,255,255,0.08);
}

/* ICON WITH RING */
.zone-preview-icon-wrap {
  position: relative; width: 72px; height: 72px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.zone-preview-icon-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--zone-color, var(--primary));
  opacity: 0.2; transition: opacity 0.5s ease, inset 0.5s ease;
}
.zone-preview:hover .zone-preview-icon-ring {
  opacity: 0.6; inset: -6px;
  box-shadow: 0 0 20px color-mix(in srgb, var(--zone-color, var(--primary)) 30%, transparent),
              inset 0 0 20px color-mix(in srgb, var(--zone-color, var(--primary)) 10%, transparent);
}
.zone-preview-icon-ring::before {
  content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--zone-color, var(--primary));
  box-shadow: 0 0 8px var(--zone-color, var(--primary));
}

.zone-preview-icon {
  font-size: 2rem; position: relative; z-index: 1;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--zone-color, var(--primary)) 30%, transparent));
}
.zone-preview:hover .zone-preview-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px var(--zone-color, var(--primary)));
}

.zone-preview h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: 3px; margin-bottom: 8px; position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.zone-preview:hover h3 {
  color: var(--zone-color, var(--primary));
  text-shadow: 0 0 30px color-mix(in srgb, var(--zone-color, var(--primary)) 25%, transparent);
}
.zone-preview p {
  font-size: 0.78rem; color: var(--text-dim); position: relative; z-index: 1;
  margin-bottom: 16px; transition: color 0.3s ease;
}
.zone-preview:hover p { color: var(--text-muted); }

/* EXPLORE CTA */
.zone-preview-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--zone-color, var(--primary)); opacity: 0;
  transform: translateY(8px); transition: all 0.4s ease;
}
.zone-preview-cta i { font-size: 0.6rem; transition: transform 0.3s ease; }
.zone-preview:hover .zone-preview-cta { opacity: 1; transform: translateY(0); }
.zone-preview:hover .zone-preview-cta i { transform: translateX(4px); }

/* HOVER LIFT */
.zone-preview:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* ABOUT FLOATING PARTICLES */
@keyframes aboutParticleRise {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10% { transform: translateY(-10vh) translateX(10px) scale(1); opacity: 0.8; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-110vh) translateX(-20px) scale(0.3); opacity: 0; }
}

/* ===== TICKETS — PROJECT X THEME ===== */
.ticket-section {
  position: relative; padding: 160px 0 140px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 0%, rgba(168,85,247,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 30%, rgba(250,204,21,0.05) 0%, transparent 40%),
    #060609;
}

/* ANIMATED BG GRADIENT */
.ticket-bg-pattern {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.05) 0%, transparent 30%, rgba(168,85,247,0.04) 50%, transparent 70%, rgba(250,204,21,0.05) 100%);
  background-size: 400% 400%;
  animation: ticketBgShift 10s ease-in-out infinite;
}
@keyframes ticketBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* STROBE FLASHES */
.ticket-strobe {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.ticket-strobe-1 {
  width: 100%; height: 300px; top: 0; left: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.12), transparent 60%);
  animation: strobeFlash 4s ease-in-out infinite;
}
.ticket-strobe-2 {
  width: 100%; height: 300px; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,85,247,0.08), transparent 60%);
  animation: strobeFlash 5s ease-in-out infinite 2s;
}
@keyframes strobeFlash {
  0%, 100% { opacity: 0.3; }
  15% { opacity: 1; }
  30% { opacity: 0.2; }
  45% { opacity: 0.8; }
  60% { opacity: 0.1; }
}

/* LIGHT BEAMS */
.ticket-beam {
  position: absolute; pointer-events: none; width: 2px;
  background: linear-gradient(180deg, rgba(168,85,247,0.6), rgba(168,85,247,0) 80%);
  transform-origin: top center; opacity: 0.15;
}
.ticket-beam-1 {
  height: 120%; top: -10%; left: 25%;
  transform: rotate(-15deg);
  animation: beamSweep 8s ease-in-out infinite;
  background: linear-gradient(180deg, rgba(168,85,247,0.5), transparent 70%);
  box-shadow: 0 0 40px 8px rgba(168,85,247,0.08);
}
.ticket-beam-2 {
  height: 120%; top: -10%; left: 50%;
  transform: rotate(5deg);
  animation: beamSweep 10s ease-in-out infinite 3s;
  background: linear-gradient(180deg, rgba(168,85,247,0.4), transparent 70%);
  box-shadow: 0 0 40px 8px rgba(168,85,247,0.06);
}
.ticket-beam-3 {
  height: 120%; top: -10%; left: 75%;
  transform: rotate(20deg);
  animation: beamSweep 12s ease-in-out infinite 6s;
  background: linear-gradient(180deg, rgba(250,204,21,0.4), transparent 70%);
  box-shadow: 0 0 40px 8px rgba(250,204,21,0.06);
}
@keyframes beamSweep {
  0% { transform: rotate(-25deg); opacity: 0.08; }
  25% { opacity: 0.2; }
  50% { transform: rotate(25deg); opacity: 0.08; }
  75% { opacity: 0.15; }
  100% { transform: rotate(-25deg); opacity: 0.08; }
}

/* SMOKE/HAZE */
.ticket-smoke {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(60px);
}
.ticket-smoke-1 {
  width: 500px; height: 180px; bottom: 0; left: -10%;
  background: rgba(168,85,247,0.05);
}
.ticket-smoke-2 {
  width: 500px; height: 180px; bottom: 5%; right: -10%;
  background: rgba(168,85,247,0.04);
}
/* GRID FLOOR */
.ticket-grid-floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.03) 1px, transparent 1px);
  background-size: 60px 40px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(transparent, rgba(0,0,0,0.5));
  -webkit-mask-image: linear-gradient(transparent, rgba(0,0,0,0.5));
}

/* CONTENT */
.ticket-content { position: relative; z-index: 2; text-align: center; }

/* EQUALIZER */
.ticket-eq {
  display: flex; align-items: flex-end; justify-content: center; gap: 4px;
  height: 40px; margin-bottom: 32px;
}
.ticket-eq span {
  width: 4px; border-radius: 2px;
  background: var(--gradient);
  animation: eqBounce var(--eq-speed, 0.8s) ease-in-out infinite alternate;
}
.ticket-eq span:nth-child(1)  { height: 12px; --eq-speed: 0.6s; }
.ticket-eq span:nth-child(2)  { height: 24px; --eq-speed: 0.5s; animation-delay: 0.1s; }
.ticket-eq span:nth-child(3)  { height: 36px; --eq-speed: 0.7s; animation-delay: 0.05s; }
.ticket-eq span:nth-child(4)  { height: 20px; --eq-speed: 0.4s; animation-delay: 0.15s; }
.ticket-eq span:nth-child(5)  { height: 32px; --eq-speed: 0.55s; animation-delay: 0.08s; }
.ticket-eq span:nth-child(6)  { height: 16px; --eq-speed: 0.65s; animation-delay: 0.2s; }
.ticket-eq span:nth-child(7)  { height: 28px; --eq-speed: 0.45s; animation-delay: 0.12s; }
.ticket-eq span:nth-child(8)  { height: 40px; --eq-speed: 0.5s; animation-delay: 0.03s; }
.ticket-eq span:nth-child(9)  { height: 18px; --eq-speed: 0.6s; animation-delay: 0.18s; }
.ticket-eq span:nth-child(10) { height: 30px; --eq-speed: 0.55s; animation-delay: 0.07s; }
.ticket-eq span:nth-child(11) { height: 14px; --eq-speed: 0.7s; animation-delay: 0.22s; }
.ticket-eq span:nth-child(12) { height: 26px; --eq-speed: 0.48s; animation-delay: 0.1s; }
.ticket-eq span:nth-child(13) { height: 34px; --eq-speed: 0.58s; animation-delay: 0.04s; }
.ticket-eq span:nth-child(14) { height: 22px; --eq-speed: 0.42s; animation-delay: 0.16s; }
.ticket-eq span:nth-child(15) { height: 10px; --eq-speed: 0.62s; animation-delay: 0.25s; }
@keyframes eqBounce {
  0% { height: 4px; opacity: 0.4; }
  100% { opacity: 1; }
}

/* TITLE */
.ticket-title {
  font-family: var(--font-display); line-height: 0.95; margin-bottom: 20px;
}
.ticket-title-top {
  display: block; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: 6px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.ticket-title-accent {
  display: block; font-size: clamp(3.5rem, 10vw, 8rem); letter-spacing: 8px;
  background: linear-gradient(135deg, #a855f7 0%, #facc15 30%, #a855f7 60%, #a855f7 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: ticketTitleShift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(168,85,247,0.35));
}
@keyframes ticketTitleShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ticket-desc {
  color: var(--text-muted); max-width: 480px; margin: 0 auto 48px;
  line-height: 1.9; font-size: 0.95rem;
}

/* TICKET TIERS GRID */
.ticket-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto; align-items: stretch;
}

/* TICKET CARD */
.ticket-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(16,16,24,0.95));
  border: 1px solid rgba(168,85,247,0.15);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4), 0 0 40px rgba(168,85,247,0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.4s ease;
}
.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
}

/* VIP HIGHLIGHT — slightly larger */
.ticket-tier-vip {
  border-color: rgba(168,85,247,0.35);
  background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(16,16,24,0.95));
  transform: scale(1.04);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(168,85,247,0.15);
}
.ticket-tier-vip:hover { transform: scale(1.04) translateY(-10px); }

/* VVIP GOLD ACCENT */
.ticket-tier-vvip {
  border-color: rgba(250,204,21,0.25);
  background: linear-gradient(135deg, rgba(250,204,21,0.06), rgba(16,16,24,0.95));
}
.ticket-tier-vvip:hover { border-color: rgba(250,204,21,0.4); }
.ticket-tier-vvip .ticket-card-label { color: var(--accent); }

.ticket-card-glow {
  position: absolute; inset: -40px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,85,247,0.1), transparent 60%);
}
.ticket-tier-vvip .ticket-card-glow {
  background: radial-gradient(ellipse at 30% 50%, rgba(250,204,21,0.08), transparent 60%);
}

/* TIER BADGE */
.ticket-tier-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gradient); color: #fff;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
}
.ticket-tier-badge-vvip {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #0a0a0f;
  display: inline-flex; align-items: center; gap: 5px;
}
.ticket-tier-badge-vvip i { font-size: 0.55rem; }

/* CARD BODY */
.ticket-card-body {
  flex: 1; padding: 40px 28px 24px; position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.ticket-card-label {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 4px;
  color: var(--primary); text-transform: uppercase;
}
.ticket-card-event {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px;
  color: #fff;
}
.ticket-card-date {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 3px;
  color: var(--text-muted); text-transform: uppercase;
}

/* PERKS LIST */
.ticket-perks {
  list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px;
}
.ticket-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.3px;
}
.ticket-perks li i { color: var(--primary); font-size: 0.7rem; flex-shrink: 0; }
.ticket-tier-vvip .ticket-perks li i { color: var(--accent); }

/* TEAR LINE */
.ticket-card-tear {
  position: relative; height: 2px; z-index: 1;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 6px,
    transparent 6px, transparent 12px
  );
}
.ticket-card-tear::before, .ticket-card-tear::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: #060609;
}
.ticket-card-tear::before { left: -10px; }
.ticket-card-tear::after { right: -10px; }

/* ACTION AREA */
.ticket-card-action {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 28px; position: relative; z-index: 1;
}

.btn-ticket {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 32px; width: 100%;
  font-size: 0.9rem; font-family: var(--font-display); letter-spacing: 3px;
  background: var(--gradient); color: #fff; border: none; border-radius: 60px;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-ticket::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: ticketBtnShine 3s ease-in-out infinite;
}
@keyframes ticketBtnShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.btn-ticket:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--primary-glow), 0 0 30px rgba(168,85,247,0.15);
}
.btn-ticket i { font-size: 1rem; }

/* VIP BUTTON */
.btn-ticket-vip { box-shadow: 0 6px 30px rgba(168,85,247,0.35); }

/* VVIP BUTTON — gold */
.btn-ticket-vvip {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #0a0a0f;
  box-shadow: 0 6px 30px rgba(250,204,21,0.25);
}
.btn-ticket-vvip:hover {
  box-shadow: 0 10px 50px rgba(250,204,21,0.35), 0 0 40px rgba(250,204,21,0.15);
}

.ticket-note {
  margin-top: 32px; font-size: 0.78rem; color: var(--text-dim);
  letter-spacing: 1px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.ticket-note i { color: var(--primary); animation: firePulse 1s ease-in-out infinite alternate; }
@keyframes firePulse { 0% { opacity: 0.5; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1.1); } }

/* ===== GALLERY ===== */
.gallery-section { padding: 120px 0; background: var(--dark-light); }
.gallery-slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-slider {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 8px 0;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 340px; aspect-ratio: 4/3; border-radius: var(--radius-sm);
  overflow: hidden; scroll-snap-align: start; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04); transition: var(--transition);
  position: relative;
}
.gallery-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0; transition: var(--transition);
}
.gallery-slide:hover { border-color: rgba(168,85,247,0.3); transform: scale(1.03); }
.gallery-slide:hover::after { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,15,0.85); backdrop-filter: blur(12px);
  color: #fff; cursor: pointer; z-index: 5; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.gallery-arrow:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-empty { text-align: center; color: var(--text-dim); padding: 80px 0; font-size: 1rem; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center; flex-direction: column;
  backdrop-filter: blur(20px);
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: #fff; font-size: 1.1rem;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04); color: #fff; cursor: pointer; font-size: 1.1rem;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.lightbox-arrow:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption { color: var(--text-muted); margin-top: 20px; font-size: 0.85rem; letter-spacing: 0.5px; }

/* ===== ARTISTS ===== */
.artists-section { padding: 120px 0; background: var(--dark); position: relative; overflow: hidden; }
.artists-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.artist-card {
  position: relative; text-align: center; padding: 48px 16px 36px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); transition: var(--transition); overflow: hidden;
}
.artist-card:hover {
  transform: translateY(-10px); border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(168,85,247,0.15), 0 0 0 1px rgba(168,85,247,0.1);
}
.artist-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.artist-video[src] { opacity: 1; }
.artist-video-overlay {
  position: absolute; inset: 0; z-index: 1; transition: background 0.5s ease;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.8) 100%);
}
.artist-card:hover .artist-video-overlay {
  background: linear-gradient(180deg, rgba(10,10,15,0.25) 0%, rgba(10,10,15,0.55) 100%);
}
.artist-avatar {
  position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 18px; overflow: hidden; border: 3px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,15,0.6); transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.artist-card:hover .artist-avatar {
  border-color: var(--primary); transform: scale(1.1);
  box-shadow: 0 0 32px rgba(168,85,247,0.3), 0 8px 24px rgba(0,0,0,0.3);
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-avatar i { font-size: 2.5rem; color: var(--primary); }
.artist-card h3 {
  position: relative; z-index: 2; font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 4px; transition: var(--transition);
}
.artist-card:hover h3 { text-shadow: 0 0 30px rgba(255,255,255,0.25); }
.artist-card p { position: relative; z-index: 2; font-size: 0.75rem; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }

/* ===== AFTERMOVIE ===== */
.aftermovie-section {
  position: relative; padding: 140px 0;
  background: radial-gradient(ellipse at center, #1a0a20 0%, var(--dark) 70%);
  overflow: hidden;
}
.aftermovie-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.5); }
.aftermovie-content { position: relative; z-index: 1; text-align: center; }
.video-player {
  max-width: 840px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(168,85,247,0.08);
}
.video-player iframe { width: 100%; height: 100%; }

/* ===== PARTNERS ===== */
.partners-section { position: relative; padding: 140px 0; background: var(--dark-light); overflow: hidden; }
.partners-bg-glow { position: absolute; border-radius: 50%; filter: blur(140px); pointer-events: none; }
.partners-glow-1 { width: 600px; height: 600px; background: rgba(168,85,247,0.05); top: -10%; right: -10%; }
.partners-glow-2 { width: 500px; height: 500px; background: rgba(168,85,247,0.04); bottom: -10%; left: -10%; }
.partners-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(8rem, 22vw, 20rem);
  letter-spacing: 20px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.015);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.partners-subtitle { color: var(--text-muted); max-width: 480px; margin: -8px auto 0; font-size: 0.9rem; line-height: 1.8; }

/* FEATURED SPONSOR */
.partners-featured-wrap { margin-bottom: 48px; }
.partner-featured-card {
  position: relative; display: flex; align-items: center; gap: 36px; padding: 48px 56px;
  background: linear-gradient(135deg, rgba(168,85,247,0.04) 0%, rgba(250,204,21,0.02) 50%, rgba(168,85,247,0.02) 100%);
  border: 1px solid rgba(168,85,247,0.2); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); text-decoration: none;
}
.partner-featured-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(168,85,247,0.12); }
.partner-featured-glow { position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(168,85,247,0.06), transparent 70%); pointer-events: none; }
.partner-featured-badge {
  position: absolute; top: 16px; right: 20px; background: var(--gradient);
  color: #fff; padding: 5px 16px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.partner-featured-logo { flex-shrink: 0; }
.partner-featured-logo img { height: 90px; width: auto; filter: drop-shadow(0 0 20px rgba(255,255,255,0.08)); }
.partner-featured-name { display: block; font-family: var(--font-display); font-size: 3rem; letter-spacing: 5px; color: #fff; }
.partner-featured-url { display: block; font-size: 0.78rem; color: var(--text-dim); letter-spacing: 1px; margin-top: 6px; }

/* DIVIDER */
.partners-divider { display: flex; align-items: center; gap: 20px; margin: 0 0 48px; }
.partners-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--dark-border), transparent); }
.partners-divider-text { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }

/* PARTNER CARDS */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.partner-card {
  position: relative; background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  min-height: 150px; overflow: hidden; text-decoration: none;
}
.partner-card-shine {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
  transition: transform 0.6s; pointer-events: none;
}
.partner-card:hover .partner-card-shine { transform: translateX(50%) translateY(50%); }
.partner-card:hover {
  border-color: rgba(168,85,247,0.4); transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 20px rgba(168,85,247,0.06);
}
.partner-card img { max-height: 52px; object-fit: contain; filter: brightness(1.2); transition: var(--transition); }
.partner-card:hover img { filter: brightness(1) drop-shadow(0 0 12px rgba(255,255,255,0.15)); transform: scale(1.1); }
.partner-card span { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 3px; color: var(--text-dim); transition: var(--transition); }
.partner-card:hover span { color: #fff; }

/* ===== SOCIAL ===== */
.social-section { padding: 120px 0; background: var(--dark); position: relative; overflow: hidden; }
.social-section::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(168,85,247,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.social-content { text-align: center; position: relative; z-index: 1; }
.social-desc { color: var(--text-muted); max-width: 480px; margin: -8px auto 44px; line-height: 1.8; font-size: 0.95rem; }
.social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 12px; padding: 16px 36px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
  transition: var(--transition); border: 1px solid var(--dark-border);
  background: var(--dark-card); position: relative; overflow: hidden;
}
.social-link::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px; opacity: 0;
  transition: opacity 0.3s ease;
}
.social-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-instagram::before { background: linear-gradient(135deg, rgba(131,58,180,0.15), rgba(253,29,29,0.15), rgba(252,176,69,0.15)); }
.social-instagram:hover { border-color: #e4405f; }
.social-instagram:hover::before { opacity: 1; }
.social-tiktok::before { background: rgba(0,242,234,0.08); }
.social-tiktok:hover { border-color: #00f2ea; }
.social-tiktok:hover::before { opacity: 1; }
.social-facebook::before { background: rgba(24,119,242,0.1); }
.social-facebook:hover { border-color: #1877f2; }
.social-facebook:hover::before { opacity: 1; }
.social-link i { font-size: 1.3rem; position: relative; z-index: 1; }
.social-link span { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-light); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-mini { padding: 32px 0; }
.footer-mini .footer-bottom { border-top: none; padding-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 56px; padding-bottom: 64px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 64px; width: auto; filter: drop-shadow(0 0 8px rgba(255,255,255,0.08)); transition: var(--transition); }
.footer-logo:hover img { filter: drop-shadow(0 0 20px rgba(255,255,255,0.2)); }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 28px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact a { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-contact a i { color: var(--text-dim); width: 16px; text-align: center; }
.footer-contact a:hover { color: var(--primary); }
.footer-contact a:hover i { color: var(--primary); }
.footer-col h4 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 28px; color: var(--text); }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
  color: var(--text-muted); font-size: 0.88rem; transition: var(--transition);
  position: relative; padding-left: 0;
}
.footer-col ul a:hover { color: var(--primary); padding-left: 8px; }
.footer-col > p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  padding: 13px 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--dark-border);
  border-radius: var(--radius-xs); color: #fff; font-family: var(--font-body);
  font-size: 0.88rem; transition: var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); background: rgba(168,85,247,0.03); }
.newsletter-msg { font-size: 0.85rem; margin-top: 8px; }
.newsletter-msg.success { color: #22c55e; }
.newsletter-msg.error { color: #ef4444; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding: 28px 0;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text-dim); font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-copy { color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.5px; }
.footer-admin-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); opacity: 0.4; transition: var(--transition);
}
.footer-admin-link:hover { opacity: 1; color: var(--primary); }
.footer-admin-link i { font-size: 0.6rem; }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].animated { opacity: 1; transform: none; }

/* ===== EXPERIENCE PAGE ===== */
.exp-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  justify-content: center; background: radial-gradient(ellipse at 40% 40%, #2a0a20 0%, var(--dark) 70%);
  padding-top: 80px;
}
.exp-hero-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.4); }
.exp-hero-content { position: relative; z-index: 1; text-align: center; padding: 60px 24px; }
.exp-hero-title { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 7rem); letter-spacing: 6px; line-height: 1; margin-bottom: 16px; }
.exp-hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.8; }
.zones-section { padding: 80px 0; }
.zone-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--dark-border);
}
.zone-block-reversed { direction: rtl; }
.zone-block-reversed > * { direction: ltr; }
.zone-visual { text-align: center; position: relative; }
.zone-icon-large { font-size: 6rem; color: var(--zone-color, var(--primary)); opacity: 0.8; }
.zone-number {
  font-family: var(--font-display); font-size: 10rem; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05); position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1;
}
.zone-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.zone-name { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); letter-spacing: 3px; margin-bottom: 16px; }
.zone-desc { color: var(--text-muted); line-height: 1.9; font-size: 1rem; }
.exp-gallery-section { padding: 100px 0; background: var(--dark-light); }
.exp-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.exp-gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.exp-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.exp-gallery-item p {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8)); font-size: 0.85rem; color: var(--text-muted);
}
.empty-state { text-align: center; color: var(--text-dim); padding: 60px 0; grid-column: 1 / -1; }
.exp-cta-section { padding: 120px 0; text-align: center; background: radial-gradient(ellipse at center, #1a0a20, var(--dark)); }
.exp-cta-content { text-align: center; }
.exp-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */

/* LARGE TABLETS / SMALL DESKTOPS */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .zone-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .zone-block { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .zone-block-reversed { direction: ltr; }
  .artists-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .partners-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .video-player { max-width: 100%; }
  .section-title { font-size: clamp(2.2rem, 5vw, 4rem); }
  .ticket-tiers { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 100%; }
  .ticket-card-body { padding: 32px 20px 20px; }
  .ticket-card-event { font-size: 1.6rem; }
  .ticket-section { padding: 120px 0; }
}

/* TABLETS / MOBILE LANDSCAPE */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu-desktop { display: none; }

  .container { padding: 0 16px; }
  .section-title { font-size: clamp(2rem, 6vw, 3.5rem); }

  /* HERO — compact everything to fit */
  .hero { padding: 80px 0 40px; }
  .hero-content { padding: 0 16px; }
  .hero-logo-img { width: clamp(140px, 35vw, 220px); }
  .hero-logo-wrap { margin-bottom: 12px; }
  .hero-date { font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 14px; }
  .hero-title { margin-bottom: 12px; }
  .hero-title-line { font-size: clamp(2.5rem, 9vw, 4.5rem); letter-spacing: 4px; }
  .hero-subtitle { font-size: 0.85rem; margin-bottom: 20px; line-height: 1.6; }
  .hero-buttons .btn { padding: 12px 28px; font-size: 0.82rem; }
  .hero-countdown { margin-top: 24px; }
  .countdown-sep { display: none; }
  .countdown-box { gap: 8px; padding: 14px 20px; }
  .countdown-number { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .countdown-item { min-width: 48px; }
  .countdown-label { font-size: 0.55rem; letter-spacing: 2px; }
  .hero-scroll-indicator { display: none; }

  /* ABOUT */
  .about-section { padding: 100px 0 80px; }
  .about-headline-top { font-size: clamp(2rem, 5vw, 3.5rem); }
  .about-headline-accent { font-size: clamp(2.5rem, 8vw, 5rem); }
  .about-headline-flare { width: 180px; }
  .about-body-card { padding: 32px 24px; }
  .about-body-card p { font-size: 0.95rem; }
  .about-quote { padding: 36px 24px; font-size: clamp(1rem, 2.5vw, 1.3rem); }
  .about-quote::before { font-size: 4rem; left: 20px; }
  .about-quote::after { font-size: 4rem; right: 20px; }
  .about-lead { font-size: clamp(1.1rem, 3vw, 1.6rem); }
  .about-statement { margin-bottom: 60px; }
  .about-body, .about-closing { margin-bottom: 60px; }
  .about-bg-text { font-size: clamp(8rem, 25vw, 18rem); }
  .zone-preview-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .zone-preview-content { padding: 36px 16px 32px; }
  .zone-preview h3 { font-size: 1.3rem; }

  /* TICKETS */
  .ticket-section { padding: 100px 0; }
  .ticket-tiers { grid-template-columns: 1fr; max-width: 400px; gap: 20px; }
  .ticket-tier-vip { transform: none; }
  .ticket-tier-vip:hover { transform: translateY(-10px); }
  .ticket-card-body { padding: 32px 24px 20px; }
  .ticket-card-action { padding: 20px 24px; }
  .ticket-title-accent { font-size: clamp(2.5rem, 11vw, 4.5rem); letter-spacing: 4px; }
  .ticket-title-top { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 3px; }
  .ticket-beam { display: none; }
  .ticket-eq { gap: 3px; height: 32px; }
  .ticket-eq span { width: 3px; }

  /* GALLERY */
  .gallery-section { padding: 80px 0; }
  .gallery-slide { flex: 0 0 260px; }

  /* ARTISTS */
  .artists-section { padding: 80px 0; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .artist-card { padding: 36px 12px 28px; }
  .artist-avatar { width: 100px; height: 100px; }
  .artist-card h3 { font-size: 1.3rem; letter-spacing: 1px; }

  /* AFTERMOVIE */
  .aftermovie-section { padding: 80px 0; }

  /* PARTNERS */
  .partners-section { padding: 100px 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner-featured-card { flex-direction: column; text-align: center; padding: 36px 24px; gap: 16px; }
  .partner-featured-badge { top: 12px; right: auto; left: 50%; transform: translateX(-50%); }
  .partner-featured-name { font-size: 2rem; letter-spacing: 3px; }
  .partner-featured-logo img { height: 70px; }
  .partners-bg-text { font-size: clamp(5rem, 18vw, 14rem); }
  .partners-subtitle { font-size: 0.85rem; }

  /* SOCIAL */
  .social-section { padding: 80px 0; }
  .social-desc { font-size: 0.88rem; }

  /* FOOTER */
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo img { height: 52px; }

  /* EXPERIENCE PAGE */
  .exp-hero { min-height: 40vh; }
  .exp-hero-title { font-size: clamp(2.5rem, 9vw, 5rem); }

  /* GENERAL */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .hide-mobile { display: none; }
  .section-header { margin-bottom: 48px; }

  /* MOBILE MENU */
  .mobile-menu { max-width: 100%; }
  .mobile-menu-content { padding: 100px 32px 32px; }
  .mobile-nav-text { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* HERO — ultra compact */
  .hero { padding: 72px 0 32px; }
  .hero-logo-img { width: clamp(120px, 40vw, 180px); }
  .hero-logo-wrap { margin-bottom: 8px; }
  .hero-date { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 10px; }
  .hero-title { margin-bottom: 10px; }
  .hero-title-line { font-size: clamp(2rem, 10vw, 3.2rem); letter-spacing: 3px; }
  .hero-subtitle { font-size: 0.8rem; margin-bottom: 16px; line-height: 1.5; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { padding: 10px 24px; font-size: 0.78rem; }
  .hero-countdown { margin-top: 20px; }
  .countdown-box { padding: 12px 14px; gap: 4px; }
  .countdown-number { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .countdown-item { min-width: 44px; }
  .countdown-label { font-size: 0.5rem; letter-spacing: 1.5px; margin-top: 3px; }

  /* ABOUT */
  .about-section { padding: 80px 0 60px; }
  .about-headline-top { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .about-headline-accent { font-size: clamp(2.2rem, 9vw, 4rem); }
  .about-headline-flare { width: 140px; }
  .about-tag-line { width: 24px; }
  .about-lead { font-size: clamp(1rem, 3.5vw, 1.3rem); }
  .about-body-card { padding: 24px 18px; }
  .about-body-card p { font-size: 0.88rem; line-height: 1.9; }
  .about-quote { padding: 28px 20px; }
  .about-quote::before { font-size: 3rem; top: -4px; left: 14px; }
  .about-quote::after { font-size: 3rem; right: 14px; }
  .about-bg-text { font-size: clamp(5rem, 20vw, 12rem); }
  .about-statement, .about-body, .about-closing { margin-bottom: 48px; }
  .zone-preview-grid { grid-template-columns: 1fr; gap: 14px; }
  .zone-preview-content { padding: 32px 16px 28px; }
  .zone-preview-icon-wrap { width: 60px; height: 60px; }
  .zone-preview-icon { font-size: 1.6rem; }
  .zone-preview-bg-icon { font-size: 5rem; }
  .about-cta .btn { width: 100%; max-width: 280px; }

  /* TICKETS */
  .ticket-section { padding: 80px 0; }
  .ticket-tiers { max-width: 100%; }
  .ticket-card-event { font-size: 1.5rem; }
  .btn-ticket { padding: 12px 24px; font-size: 0.85rem; letter-spacing: 2px; }
  .ticket-card-body { padding: 28px 20px 16px; }
  .ticket-card-action { padding: 16px 20px; }
  .ticket-perks li { font-size: 0.78rem; }
  .ticket-title-accent { font-size: clamp(2rem, 11vw, 3.5rem); letter-spacing: 3px; }
  .ticket-title-top { font-size: clamp(1.6rem, 5vw, 2.5rem); letter-spacing: 2px; }
  .ticket-eq { gap: 2px; height: 28px; margin-bottom: 24px; }
  .ticket-eq span { width: 2.5px; }
  .ticket-desc { font-size: 0.85rem; margin-bottom: 36px; }

  /* GALLERY */
  .gallery-section { padding: 60px 0; }
  .gallery-slide { flex: 0 0 85vw; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 0.75rem; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }

  /* ARTISTS */
  .artists-section { padding: 60px 0; }
  .artists-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .artist-card { padding: 32px 10px 24px; }
  .artist-avatar { width: 80px; height: 80px; margin-bottom: 12px; }
  .artist-card h3 { font-size: 1.1rem; letter-spacing: 1px; }
  .artist-card p { font-size: 0.65rem; }

  /* AFTERMOVIE */
  .aftermovie-section { padding: 60px 0; }
  .video-player { border-radius: var(--radius-sm); }

  /* PARTNERS */
  .partners-section { padding: 80px 0; }
  .partners-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .partner-card { padding: 36px 16px; min-height: 120px; }
  .partner-card img { max-height: 40px; }
  .partner-card span { font-size: 1rem; letter-spacing: 2px; }
  .partner-featured-card { padding: 28px 20px; }
  .partner-featured-name { font-size: 1.6rem; letter-spacing: 2px; }
  .partner-featured-logo img { height: 56px; }
  .partner-featured-badge { font-size: 0.55rem; padding: 4px 12px; }
  .partners-bg-text { font-size: clamp(4rem, 16vw, 10rem); }
  .partners-divider-text { font-size: 0.7rem; letter-spacing: 3px; }

  /* SOCIAL */
  .social-section { padding: 60px 0; }
  .social-links { flex-direction: column; align-items: center; }
  .social-link { width: 100%; max-width: 280px; justify-content: center; }

  /* FOOTER */
  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 28px; }
  .footer-logo img { height: 44px; }
  .footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; }
  .newsletter-form input { padding: 11px 14px; }
  .footer-bottom { padding: 24px 0; }

  /* EXPERIENCE PAGE */
  .exp-hero-title { font-size: clamp(2rem, 9vw, 4rem); letter-spacing: 3px; }
  .exp-hero-sub { font-size: 0.9rem; }
  .exp-hero-content { padding: 40px 16px; }
  .exp-cta-buttons { flex-direction: column; align-items: center; }
  .exp-cta-buttons .btn { width: 100%; max-width: 280px; }
  .exp-gallery-grid { grid-template-columns: 1fr; }

  /* LIGHTBOX */
  .lightbox-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; }

  /* GENERAL */
  .section-tag { font-size: 0.65rem; letter-spacing: 3px; padding-left: 28px; }
  .section-tag::before { width: 18px; }
  .section-header .section-tag { padding-left: 0; }
  .about-tag-wrap .section-tag { padding-left: 0; }
  .btn { padding: 12px 28px; font-size: 0.82rem; }
  .btn-large { padding: 14px 36px; font-size: 0.9rem; }
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 0.9rem; }

  /* MOBILE MENU */
  .mobile-menu-content { padding: 90px 24px 24px; }
  .mobile-nav-link { padding: 14px 0; }
  .mobile-nav-text { font-size: clamp(1.4rem, 5vw, 1.8rem); letter-spacing: 3px; }
  .mobile-nav-num { font-size: 0.7rem; }
  .mobile-menu-cta .btn { padding: 14px; font-size: 0.85rem; }
}

/* EXTRA SMALL PHONES (iPhone SE, etc.) */
@media (max-width: 360px) {
  .hero { padding: 68px 0 24px; }
  .hero-logo-img { width: clamp(100px, 35vw, 140px); }
  .hero-logo-wrap { margin-bottom: 6px; }
  .hero-date { font-size: 0.62rem; letter-spacing: 2px; margin-bottom: 8px; }
  .hero-title-line { font-size: 1.8rem; letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.72rem; margin-bottom: 14px; }
  .hero-buttons .btn { padding: 9px 20px; font-size: 0.72rem; }
  .hero-countdown { margin-top: 16px; }
  .countdown-box { padding: 10px 10px; gap: 2px; }
  .countdown-number { font-size: 1.2rem; }
  .countdown-item { min-width: 40px; }
  .countdown-label { font-size: 0.45rem; letter-spacing: 1px; }

  .about-headline-accent { font-size: clamp(1.8rem, 10vw, 3rem); }
  .about-headline-top { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .ticket-title-accent { font-size: 1.8rem; letter-spacing: 2px; }
  .ticket-title-top { font-size: 1.4rem; }
  .artists-grid { grid-template-columns: 1fr; }
  .artist-avatar { width: 100px; height: 100px; }
  .partners-grid { grid-template-columns: 1fr; }
  .mobile-nav-text { font-size: 1.3rem; }
  .mobile-menu-content { padding: 80px 20px 20px; }
}

/* SHORT SCREENS — tighten hero spacing */
@media (max-height: 700px) and (max-width: 768px) {
  .hero { padding: 70px 0 28px; }
  .hero-logo-img { width: clamp(100px, 28vw, 160px); }
  .hero-logo-wrap { margin-bottom: 6px; }
  .hero-date { margin-bottom: 8px; font-size: 0.65rem; }
  .hero-title { margin-bottom: 8px; }
  .hero-title-line { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-subtitle { font-size: 0.75rem; margin-bottom: 14px; }
  .hero-countdown { margin-top: 16px; }
  .countdown-box { padding: 10px 14px; }
  .countdown-number { font-size: 1.3rem; }
}

/* VERY SHORT SCREENS (landscape phones, small heights) */
@media (max-height: 550px) {
  .hero { padding: 64px 0 20px; }
  .hero-logo-img { width: clamp(80px, 20vw, 120px); }
  .hero-logo-wrap { margin-bottom: 4px; }
  .hero-date { font-size: 0.6rem; margin-bottom: 6px; letter-spacing: 2px; }
  .hero-title { margin-bottom: 6px; }
  .hero-title-line { font-size: clamp(1.5rem, 6vw, 2.5rem); letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.7rem; margin-bottom: 10px; }
  .hero-buttons .btn { padding: 8px 20px; font-size: 0.72rem; }
  .hero-countdown { margin-top: 12px; }
  .countdown-box { padding: 8px 10px; gap: 2px; }
  .countdown-number { font-size: 1.1rem; }
  .countdown-item { min-width: 36px; }
  .countdown-label { font-size: 0.4rem; }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 60px 0 20px; }
  .hero-logo-img { width: 100px; }
  .hero-title-line { font-size: 2rem; }
  .hero-buttons { gap: 8px; }
  .hero-buttons .btn { padding: 8px 24px; font-size: 0.75rem; }
  .hero-countdown { margin-top: 10px; }
  .mobile-menu-content { padding: 70px 32px 20px; }
  .mobile-nav-link { padding: 10px 0; }
  .mobile-nav-text { font-size: 1.4rem; }
}
