/* ═══════════════════════════════════════════════════════
   PRABHU DEVA LIVE — Raleigh, NC | Event Landing Page
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────── */
:root {
  /* Primary palette: deep gold + magenta + royal purple */
  --gold:       hsl(42, 92%, 56%);
  --gold-light: hsl(42, 100%, 70%);
  --gold-dark:  hsl(38, 80%, 40%);
  --magenta:    hsl(330, 85%, 55%);
  --magenta-light: hsl(330, 90%, 70%);
  --purple:     hsl(270, 60%, 30%);
  --purple-deep: hsl(270, 70%, 15%);

  /* Backgrounds */
  --bg-primary:   hsl(260, 40%, 6%);
  --bg-secondary: hsl(260, 35%, 10%);
  --bg-card:      hsl(260, 30%, 12%);
  --bg-card-hover: hsl(260, 30%, 16%);

  /* Text */
  --text-primary:   hsl(0, 0%, 95%);
  --text-secondary: hsl(0, 0%, 70%);
  --text-muted:     hsl(0, 0%, 50%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--gold), var(--magenta));
  --gradient-hero: linear-gradient(135deg, hsl(270, 70%, 8%) 0%, hsl(330, 50%, 10%) 50%, hsl(260, 50%, 8%) 100%);
  --gradient-card: linear-gradient(145deg, hsla(270, 40%, 20%, 0.4), hsla(330, 40%, 15%, 0.2));

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-width: 1200px;

  /* Typography */
  --font-primary: 'Raleway', sans-serif;
  --font-display: 'Cinzel', serif;

  /* Misc */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Branded italic Z in VIBEZ ────────────────────────── */
.logo-text em,
.partner-name em,
.footer-logo em,
.footer-copy em {
  font-size: 1.15em;
  font-style: italic;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ── Utility Classes ───────────────────────────────────── */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 24px hsla(330, 85%, 55%, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(330, 85%, 55%, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid hsla(0, 0%, 100%, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large { padding: 1.125rem 2.5rem; font-size: 1.1rem; }

.btn-glow {
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 24px hsla(330, 85%, 55%, 0.3); }
  50% { box-shadow: 0 4px 40px hsla(330, 85%, 55%, 0.6), 0 0 80px hsla(42, 92%, 56%, 0.2); }
}

/* ── Ticketmaster Button (hero CTA) ──────────────────── */
.btn-ticketmaster {
  background: linear-gradient(135deg, #d4af37 0%, #f5d76e 25%, #d4af37 50%, #c9980a 100%);
  background-size: 200% 200%;
  color: #0a0a0f;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    0 4px 24px hsla(42, 92%, 40%, 0.4),
    0 0 60px hsla(42, 92%, 56%, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  animation: tm-glow 2.5s ease-in-out infinite, tm-gradient 3s ease infinite;
  text-decoration: none;
}

.btn-ticketmaster:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 40px hsla(42, 92%, 40%, 0.6),
    0 0 80px hsla(42, 92%, 56%, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.4);
  background-size: 200% 200%;
}

/* Shimmer sweep */
.btn-ticketmaster::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: tm-shimmer 3s ease-in-out infinite;
}

@keyframes tm-glow {
  0%, 100% { box-shadow: 0 4px 24px hsla(42, 92%, 40%, 0.4), 0 0 60px hsla(42, 92%, 56%, 0.15); }
  50% { box-shadow: 0 6px 36px hsla(42, 92%, 40%, 0.6), 0 0 100px hsla(42, 92%, 56%, 0.25); }
}

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

@keyframes tm-shimmer {
  0% { left: -60%; }
  50%, 100% { left: 120%; }
}

.tm-icon {
  font-size: 1.3em;
}

.tm-arrow {
  font-size: 1.2em;
  transition: transform 0.3s;
}
.btn-ticketmaster:hover .tm-arrow {
  transform: translateX(4px);
}

/* ── Urgency Badge (Blinker) ──────────────────────────── */

/* ── WhatsApp Promo Strip ────────────────────────────── */
.promo-whatsapp {
  margin-top: 1rem;
  text-align: center;
}

.promo-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.promo-label strong {
  color: rgba(255, 255, 255, 0.85);
}

.promo-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.wa-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.wa-number:hover {
  background: rgba(37, 211, 102, 0.15);
  color: #5bea8c;
  text-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

.wa-icon {
  width: 14px;
  height: 14px;
  fill: #25D366;
  vertical-align: -2px;
  flex-shrink: 0;
}
.wa-number:hover .wa-icon {
  fill: #5bea8c;
}

.wa-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
}
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: hsla(0, 85%, 50%, 0.15);
  border: 1px solid hsla(0, 85%, 50%, 0.5);
  margin-bottom: 1rem;
  animation: urgency-blink 1.5s ease-in-out infinite;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.cta-urgency:hover { filter: brightness(1.3); }
.urgency-icon {
  font-size: 1.1rem;
  animation: flame-flicker 0.6s ease-in-out infinite alternate;
}
.urgency-text {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(0, 85%, 65%);
  animation: text-blink 1.5s ease-in-out infinite;
}
@keyframes urgency-blink {
  0%, 100% {
    background: hsla(0, 85%, 50%, 0.08);
    border-color: hsla(0, 85%, 50%, 0.3);
    box-shadow: 0 0 0 0 hsla(0, 85%, 50%, 0);
  }
  50% {
    background: hsla(0, 85%, 50%, 0.25);
    border-color: hsla(0, 85%, 60%, 0.8);
    box-shadow: 0 0 24px 6px hsla(0, 85%, 50%, 0.25), 0 0 60px 10px hsla(0, 85%, 50%, 0.08);
  }
}
@keyframes text-blink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; color: hsl(0, 90%, 70%); }
}
@keyframes flame-flicker {
  0% { transform: scale(1) rotate(-3deg); }
  100% { transform: scale(1.15) rotate(3deg); }
}

/* ── CTA Buttons Row ──────────────────────────────────── */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* ── Tickets Button ───────────────────────────────────── */
.btn-tickets {
  background: linear-gradient(135deg, hsla(42, 92%, 56%, 0.15), hsla(42, 92%, 56%, 0.05));
  color: var(--gold);
  border: 2px solid hsla(42, 92%, 56%, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-tickets::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, hsla(42, 92%, 56%, 0.1), transparent);
  transform: translateX(-100%);
  animation: ticket-shimmer 3s ease-in-out infinite;
}
.btn-tickets:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, hsla(42, 92%, 56%, 0.25), hsla(42, 92%, 56%, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 24px hsla(42, 92%, 56%, 0.2);
}
.btn-tickets-icon { font-size: 1.1rem; }
@keyframes ticket-shimmer {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* ── Navigation ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: hsla(260, 40%, 6%, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.logo-icon { font-size: 1.5rem; }
.logo-highlight { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition);
}

.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* ── Hero Section ──────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 7rem 0 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, hsla(330, 80%, 30%, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, hsla(42, 80%, 50%, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: hsla(42, 92%, 56%, 0.1);
  border: 1px solid hsla(42, 92%, 56%, 0.3);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 40%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 1.25rem;
}

.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 1.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: hsla(0, 0%, 100%, 0.1);
}

.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  max-width: none;
  transform: none;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 65%;
  border-radius: 0;
  mask-image: linear-gradient(to left, black 40%, transparent 90%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 90%);
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, hsla(330, 80%, 50%, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s infinite;
}

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

@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Section Headers ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.section-desc {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ── About Section ─────────────────────────────────────── */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 650px;
  object-fit: contain;
  border-radius: var(--border-radius);
  background: #000;
}

/* ── Video Sound Toggle ──────────────────────────────── */
.video-sound-toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  background: hsla(0, 0%, 0%, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
  animation: sound-nudge 2s ease-in-out infinite;
}

.video-sound-toggle:hover {
  background: hsla(0, 0%, 0%, 0.8);
  border-color: var(--gold);
  transform: scale(1.1);
}

.video-sound-toggle.unmuted {
  animation: none;
  border-color: var(--gold);
  background: hsla(42, 92%, 56%, 0.2);
}

.sound-icon-off, .sound-icon-on { font-size: 1.1rem; line-height: 1; }
.sound-label { display: none; }

@keyframes sound-nudge {
  0%, 100% { box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.2); }
  50% { box-shadow: 0 0 0 6px hsla(0, 0%, 100%, 0.08); }
}

.about-image-badge {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: hsla(0, 0%, 0%, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  padding: 0.4rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid hsla(42, 92%, 56%, 0.3);
}

.badge-icon { font-size: 1.5rem; }

.about-lead {
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}

.achievement { text-align: center; }

.achievement-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Event Details Cards ───────────────────────────────── */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.detail-card {
  background: var(--gradient-card);
  border: 1px solid hsla(0, 0%, 100%, 0.06);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.detail-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: hsla(42, 92%, 56%, 0.2);
}

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

.detail-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Mini calendar icon */
.mini-cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin: 0 auto;
}
.mini-cal-month {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.15rem 0;
}
.mini-cal-day {
  display: block;
  width: 100%;
  background: hsla(0, 0%, 100%, 0.08);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 0.15rem 0;
}

/* Mini clock icon */
.mini-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto;
  background: hsla(0, 0%, 100%, 0.05);
}
.mini-clock-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.mini-clock-label {
  font-family: var(--font-primary);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.detail-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.detail-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Highlights Grid ───────────────────────────────────── */
.highlights-section {
  background: var(--bg-secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--gradient-card);
  border: 1px solid hsla(0, 0%, 100%, 0.06);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: hsla(330, 85%, 55%, 0.2);
  background: var(--bg-card-hover);
}

.highlight-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.05;
  line-height: 1;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Registration Section ──────────────────────────────── */
.register-section {
  background:
    radial-gradient(circle at 30% 80%, hsla(330, 80%, 30%, 0.1) 0%, transparent 50%),
    var(--bg-primary);
}

.register-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.register-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.register-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--magenta-light);
  font-weight: 500;
}

.qr-card {
  background: var(--gradient-card);
  border: 1px solid hsla(0, 0%, 100%, 0.06);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
}

.qr-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  background: #fff;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.qr-placeholder canvas {
  width: 100% !important;
  height: 100% !important;
}

.qr-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Send to Phone Widget ──────────────────────────────── */
.send-to-phone {
  margin-top: 1.25rem;
}

.send-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.send-divider::before,
.send-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.12), transparent);
}

.send-divider span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Primary: Send QR to Phone button — same style as others but gold accent */
.send-btn-qr:hover {
  border-color: var(--accent-primary, hsl(42, 80%, 50%));
  color: hsl(42, 80%, 70%);
  background: hsla(42, 80%, 50%, 0.1);
}

.send-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  background: hsla(0, 0%, 100%, 0.04);
  color: var(--text-secondary);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.send-btn:hover {
  background: hsla(0, 0%, 100%, 0.08);
  border-color: hsla(0, 0%, 100%, 0.2);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.send-btn svg {
  flex-shrink: 0;
}

.send-btn-sms:hover {
  border-color: hsl(142, 60%, 45%);
  color: hsl(142, 60%, 65%);
  background: hsla(142, 60%, 45%, 0.1);
}

.send-btn-email:hover {
  border-color: hsl(210, 80%, 55%);
  color: hsl(210, 80%, 70%);
  background: hsla(210, 80%, 55%, 0.1);
}

.send-btn-share:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: hsla(42, 92%, 56%, 0.1);
}

.send-btn-copy:hover {
  border-color: hsl(280, 60%, 55%);
  color: hsl(280, 60%, 70%);
  background: hsla(280, 60%, 55%, 0.1);
}

.send-btn-copy.copied {
  border-color: hsl(142, 60%, 45%);
  color: hsl(142, 60%, 65%);
  background: hsla(142, 60%, 45%, 0.12);
}

.send-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: hsl(142, 50%, 20%);
  color: hsl(142, 60%, 75%);
  border: 1px solid hsl(142, 50%, 30%);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.send-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Contact Section ───────────────────────────────────── */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--gradient-card);
  border: 1px solid hsla(0, 0%, 100%, 0.06);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: hsla(42, 92%, 56%, 0.2);
}

.contact-icon { font-size: 2rem; margin-bottom: 1rem; }

.contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color var(--transition);
}

.contact-card a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-secondary);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Nav Logo Image ───────────────────────────────────── */
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

/* ── Hero Presenter ───────────────────────────────────── */
.hero-presenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-presenter-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.hero-presenter-ampersand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-presenter-logo-secondary {
  filter: drop-shadow(0 0 15px hsla(100, 50%, 50%, 0.3));
}

.hero-presenter-logo {
  width: 200px;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 0 20px hsla(42, 92%, 56%, 0.3));
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px hsla(42, 92%, 56%, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 35px hsla(42, 92%, 56%, 0.5))
           drop-shadow(0 0 60px hsla(330, 85%, 55%, 0.15));
  }
}

.hero-presenter-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 20px hsla(42, 92%, 56%, 0.3);
}

/* ── Artist Lineup Section ────────────────────────────── */
.lineup-section {
  background:
    radial-gradient(circle at 20% 60%, hsla(330, 80%, 30%, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, hsla(42, 80%, 50%, 0.06) 0%, transparent 50%),
    var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.lineup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(42, 92%, 56%, 0.3), transparent);
}

/* ── Artist Ticker (scrolling marquee) ─────────────────── */
.artist-ticker-wrapper {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  overflow: hidden;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  height: 40px;
  z-index: 999;
}

.artist-ticker-wrapper::before,
.artist-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.artist-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.6) 0%, transparent 100%);
}
.artist-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10,10,15,0.6) 0%, transparent 100%);
}

.artist-ticker-track {
  display: flex;
  align-items: center;
  height: 40px;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}
.artist-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-artist {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.4rem;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.ticker-artist:hover { opacity: 0.8; }

.ticker-photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}

.ticker-name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

.ticker-ig {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}
.ticker-ig svg {
  width: 100%;
  height: 100%;
  fill: url(#ig-grad);
}

.ticker-sep {
  color: rgba(212, 175, 55, 0.4);
  font-size: 0.5rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.lineup-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.lineup-grid .artist-card {
  flex: 0 1 calc(25% - 1.5rem);
  min-width: 200px;
}

.artist-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background: linear-gradient(160deg, hsla(42, 92%, 56%, 0.4), transparent 40%, transparent 60%, hsla(330, 85%, 55%, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(260, 40%, 4%, 0.95) 0%, hsla(260, 40%, 4%, 0.6) 25%, transparent 55%);
  z-index: 1;
  transition: background 0.4s ease;
}

.artist-card:hover .artist-overlay {
  background: linear-gradient(to top, hsla(260, 40%, 4%, 0.98) 0%, hsla(260, 40%, 4%, 0.75) 35%, hsla(260, 40%, 4%, 0.3) 70%);
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.artist-name {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.artist-card:hover .artist-name { color: var(--gold-light); }

.artist-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.artist-card:hover .artist-role {
  opacity: 1;
  transform: translateY(0);
  color: var(--magenta-light);
}

.artist-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover .artist-accent { transform: scaleX(1); }

/* ── Artist Card Link ── */
.artist-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Instagram Icon — top-right, transparent ── */
.artist-ig {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 4;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.artist-card:hover .artist-ig {
  opacity: 1;
  transform: scale(1.1);
}

.ig-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(220, 39, 67, 0.35);
}

.ig-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Touch devices: always show info */
@media (hover: none) {
  .artist-role { opacity: 1; transform: translateY(0); color: var(--magenta-light); }
  .artist-card::before { opacity: 1; }
  .artist-accent { transform: scaleX(1); }
  .artist-img { filter: brightness(0.7); }
  .artist-name { color: var(--gold-light); }
  .artist-ig { opacity: 0.8; }
}

/* ── NC Partners Section ──────────────────────────────── */
.partners-section {
  background:
    radial-gradient(circle at 70% 30%, hsla(42, 80%, 50%, 0.06) 0%, transparent 50%),
    var(--bg-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.partner-card {
  background: var(--gradient-card);
  border: 1px solid hsla(0, 0%, 100%, 0.06);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: hsla(42, 92%, 56%, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px hsla(42, 92%, 56%, 0.1);
}

.partner-logo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.05);
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.partner-card:hover .partner-logo-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 20px hsla(42, 92%, 56%, 0.2);
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.partner-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.05);
}

.footer-content { text-align: center; }

.footer-logo {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Animations ────────────────────────────────────────── */
.animate-fade-in { opacity: 0; animation: fadeIn 1s ease forwards; }
.animate-slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; }
.animate-scale-in { opacity: 0; transform: scale(0.9); animation: scaleIn 1s ease forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { to { opacity: 1; transform: scale(1); } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-image-container {
    width: 35%;
    right: -8%;
  }

  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .lineup-grid .artist-card { flex: 0 1 calc(33.333% - 1.5rem); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(260, 40%, 8%, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 5.5rem 0 1rem;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    order: 2;
    position: relative;
    z-index: 2;
    padding-top: 0.5rem;
  }
  .hero-cta { align-items: center; }
  .cta-buttons { width: 100%; padding: 0 1rem; }
  .btn-ticketmaster {
    white-space: normal;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .promo-numbers {
    gap: 0.2rem;
  }
  .wa-number {
    font-size: 0.72rem;
    padding: 0.15rem 0.35rem;
  }
  .promo-label {
    font-size: 0.9rem;
  }
  .hero-stats { justify-content: center; }

  .hero-subtitle { margin: 0 auto 0.75rem; font-size: 0.8rem; }

  .hero-title-line { font-size: 2.2rem; }
  .hero-title-accent { font-size: 1.1rem; }
  .hero-title { margin-bottom: 0.5rem; }
  .hero-badge { margin-bottom: 0.5rem; font-size: 0.7rem; padding: 0.35rem 0.9rem; }

  .hero-image-container {
    position: relative;
    order: 1;
    width: 100%;
    max-width: none;
    height: 18vh;
    margin: 0;
    opacity: 1;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 0;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }

  .hero-image-glow {
    display: none;
  }

  /* Ticker: smaller on mobile */
  .artist-ticker-wrapper {
    top: 50px;
    height: 44px;
  }
  .artist-ticker-track {
    height: 44px;
  }
  .ticker-photo {
    width: 28px;
    height: 28px;
  }
  .ticker-name {
    font-size: 0.75rem;
  }
  .ticker-ig {
    width: 14px;
    height: 14px;
  }
  .ticker-artist {
    padding: 0 1.2rem;
    gap: 0.4rem;
  }
  .ticker-sep {
    font-size: 0.4rem;
    padding: 0 0.3rem;
  }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { height: 300px; }

  .details-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid .artist-card { flex: 0 1 calc(50% - 1.5rem); min-width: 150px; }
  .artist-info { padding: 1rem; }
  .ig-icon { width: 24px; height: 24px; border-radius: 6px; }
  .ig-icon svg { width: 14px; height: 14px; }
  .artist-ig { top: 0.5rem; right: 0.5rem; }

  .hero-presenter { justify-content: center; }
  .hero-presenter-logo { width: 170px; }

  .nav-logo-img { width: 28px; height: 28px; }
  .logo-text { font-size: 0.95rem; }

  .scroll-indicator { display: none; }
  .hero-presenter-logos { gap: 1rem; }
  .hero-presenter-ampersand { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title-line { font-size: 2.5rem; }
  .hero-title-accent { font-size: 1.25rem; }
  .stat-number { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .about-achievements { grid-template-columns: 1fr; gap: 1rem; }
  .partners-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .lineup-grid { gap: 0.75rem; }
  .lineup-grid .artist-card { flex: 0 1 calc(50% - 0.75rem); min-width: 120px; }
  .artist-name { font-size: 0.9rem; }
  .artist-role { font-size: 0.7rem; }
  .artist-info { padding: 0.75rem; }
  .hero-presenter-logo { width: 130px; }
  .hero-presenter-text { font-size: 0.85rem; letter-spacing: 0.15em; }
  .hero-presenter-logos { gap: 0.75rem; }
  .hero-presenter-ampersand { font-size: 1.2rem; }
}

/* ── Particle styles ───────────────────────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
