/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-surface: #12121a;
  --color-surface-2: #1a1a25;
  --color-surface-3: #222233;
  --color-accent: #ff2d7b;
  --color-accent-hover: #ff4d91;
  --color-accent-glow: rgba(255, 45, 123, 0.4);
  --color-purple: #9b59ff;
  --color-purple-glow: rgba(155, 89, 255, 0.3);
  --color-gold: #ffd700;
  --color-gold-glow: rgba(255, 215, 0, 0.3);
  --color-text: #ffffff;
  --color-text-muted: #8a8a9a;
  --color-text-faint: #55556a;
  --color-border: #2a2a3a;
  --color-divider: #1e1e2e;
  --color-success: #00d68f;
  --color-error: #ff4757;

  /* Fonts */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-glow-accent: 0 0 30px rgba(255, 45, 123, 0.3), 0 0 60px rgba(255, 45, 123, 0.1);
  --shadow-glow-purple: 0 0 30px rgba(155, 89, 255, 0.3), 0 0 60px rgba(155, 89, 255, 0.1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ===== GLOBAL STYLES ===== */
body {
  background: var(--color-bg);
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) var(--space-6);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.nav-logo svg {
  width: 36px;
  height: 36px;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-interactive);
  position: relative;
}
.nav-links a:hover {
  color: var(--color-text);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: var(--space-2) var(--space-5) !important;
  background: var(--color-accent) !important;
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: var(--text-xs) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--color-accent-hover) !important;
  box-shadow: var(--shadow-glow-accent);
}
.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}
.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s var(--ease-out);
  display: block;
}
.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-8);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: var(--text-lg);
  }
}

/* ===== FEATURED CLUBS BAR ===== */
.clubs-bar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.clubs-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.clubs-bar-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-2) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.clubs-bar-inner::-webkit-scrollbar { display: none; }
.clubs-bar-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.clubs-bar-pills {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.club-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  transition: all 0.2s var(--ease-out);
}
.club-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  background: rgba(255, 45, 123, 0.08);
}
.club-pill.active {
  border-color: var(--color-accent);
  color: var(--color-text);
  background: rgba(255, 45, 123, 0.12);
}
.club-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  flex-shrink: 0;
}
.club-pill-dot.soon {
  background: var(--color-gold);
}
.club-pill.coming-soon {
  opacity: 0.6;
}
.club-pill.add-club {
  border-style: dashed;
  color: var(--color-accent);
}
.club-pill.add-club:hover {
  background: rgba(255, 45, 123, 0.08);
  border-color: var(--color-accent);
}
.club-pill.add-club svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .clubs-bar { top: 60px; }
  .clubs-bar-label { display: none; }
  .clubs-bar-inner { padding: var(--space-2) var(--space-4); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.5) 50%,
    rgba(10, 10, 15, 1) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  animation: particle-float 6s infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8);
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(155, 89, 255, 0.15);
  border: 1px solid rgba(155, 89, 255, 0.3);
  color: var(--color-purple);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 123, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 45, 123, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple), var(--color-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title .glow {
  text-shadow: 0 0 40px rgba(255, 45, 123, 0.5), 0 0 80px rgba(155, 89, 255, 0.3);
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.hero-tagline {
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HERO FEATURED CLUBS ===== */
.hero-clubs {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-clubs-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.hero-clubs-pills {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-club-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  backdrop-filter: blur(8px);
}
.hero-club-pill.active {
  border-color: var(--color-accent);
  background: rgba(255, 45, 123, 0.1);
  color: var(--color-text);
}
.hero-club-pill:hover {
  border-color: var(--color-accent);
  background: rgba(255, 45, 123, 0.12);
  color: var(--color-text);
  transform: translateY(-1px);
}
.hero-club-pill.add {
  border-style: dashed;
  color: var(--color-text-faint);
}
.hero-club-pill.add:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}
.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  flex-shrink: 0;
}
.hc-dot.coming {
  background: var(--color-purple);
  opacity: 0.6;
}
.hc-soon-tag {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-purple);
  opacity: 0.7;
}
@media (max-width: 640px) {
  .hero-clubs {
    margin-top: var(--space-6);
  }
  .hero-club-pill {
    padding: 5px 10px;
    font-size: 0.65rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #e0196a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 123, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-accent);
  color: #fff;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
  box-shadow: 0 0 20px rgba(155, 89, 255, 0.2);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #e6b800);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  color: #0a0a0f;
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* Pulsing CTA */
.btn-pulse {
  animation: btn-glow 2s ease-in-out infinite;
}
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 45, 123, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(255, 45, 123, 0.5), 0 0 60px rgba(255, 45, 123, 0.2); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
  position: relative;
}
.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
}
.section-header {
  margin-bottom: var(--space-12);
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
  border: none;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-2xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}
.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: rgba(155, 89, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-purple);
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ===== VENUE SHOWCASE ===== */
.venue-showcase {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.venue-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.venue-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.7) 70%, var(--color-surface) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
}
.venue-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: var(--space-3);
}
.venue-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}
.venue-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.venue-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.venue-body {
  padding: var(--space-8);
}

/* Venue Info Grid */
.venue-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.venue-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
}
.venue-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(155, 89, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.venue-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-purple);
}
.venue-info-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}
.venue-info-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

/* Genre Tags */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.genre-tag {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(155, 89, 255, 0.12);
  border: 1px solid rgba(155, 89, 255, 0.25);
  color: var(--color-purple);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* Vibe Section */
.venue-vibe {
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(155, 89, 255, 0.05), rgba(255, 45, 123, 0.05));
  border: 1px solid rgba(155, 89, 255, 0.15);
}
.venue-vibe h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.venue-vibe p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* Artist marquee */
.artist-marquee {
  overflow: hidden;
  padding: var(--space-4) 0;
  margin-bottom: var(--space-8);
  position: relative;
}
.artist-marquee::before,
.artist-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.artist-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface), transparent);
}
.artist-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-surface), transparent);
}
.marquee-track {
  display: flex;
  gap: var(--space-4);
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.artist-chip {
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== TICKET CARDS ===== */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.ticket-grid.ticket-grid-4 {
  grid-template-columns: repeat(3, 1fr);
}
.ticket-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.ticket-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 45, 123, 0.15);
}
.ticket-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, rgba(255, 45, 123, 0.08), var(--color-surface-2));
}
.ticket-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-purple));
}
.ticket-card.gold {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), var(--color-surface-2));
}
.ticket-card.gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #e6b800);
}
.ticket-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
.ticket-badge.save {
  background: var(--color-accent);
  color: #fff;
}
.ticket-badge.vip {
  background: var(--color-gold);
  color: #0a0a0f;
}
.ticket-badge.party {
  background: var(--color-purple);
  color: #fff;
}
.ticket-badge.online {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.ticket-badge.free {
  background: var(--color-success);
  color: #0a0a0f;
}
.ticket-type {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.ticket-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.ticket-price .old-price {
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  text-decoration: line-through;
  margin-left: var(--space-2);
  font-weight: 400;
}
.ticket-price-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.ticket-features {
  list-style: none;
  margin-bottom: var(--space-6);
}
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.ticket-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .ticket-grid,
  .ticket-grid.ticket-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ticket-grid,
  .ticket-grid.ticket-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Limited Time Offer Banner */
.limited-offer-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.12), rgba(155, 89, 255, 0.12));
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  overflow: hidden;
}
.limited-offer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 123, 0.05), transparent);
  animation: offerShimmer 3s ease-in-out infinite;
}
@keyframes offerShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.offer-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--color-accent-glow);
}
.offer-content {
  position: relative;
  z-index: 1;
}
.offer-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.offer-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  max-width: none;
}
.offer-content strong {
  color: var(--color-accent);
  font-weight: 700;
}
.offer-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}
.limited-offer-banner {
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.limited-offer-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 123, 0.25);
  border-color: #ff5a9a;
}
@media (max-width: 640px) {
  .limited-offer-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5);
  }
  .offer-pulse { display: none; }
}

/* Hot Deal Card Enhancement */
.ticket-card.hot-deal {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.2), inset 0 0 20px rgba(255, 45, 123, 0.03);
  animation: hotDealGlow 3s ease-in-out infinite;
}
@keyframes hotDealGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 45, 123, 0.2), inset 0 0 20px rgba(255, 45, 123, 0.03); }
  50% { box-shadow: 0 0 30px rgba(255, 45, 123, 0.35), inset 0 0 30px rgba(255, 45, 123, 0.06); }
}

/* Online Price Badge */
.ticket-badge.online {
  background: var(--color-purple);
  color: #fff;
}

/* Dress Code Notice */
.dress-code-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.dress-code-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Social proof bar */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding: var(--space-6) 0;
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.social-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.social-stat svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}
.social-stat strong {
  color: var(--color-text);
}

/* ===== EMBEDDED CHECKOUT ===== */
.checkout-section {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  margin-top: var(--space-8);
}
.checkout-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
  text-align: center;
}
.checkout-section p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
  margin-bottom: var(--space-6);
}
.checkout-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 45, 123, 0.1);
  border: 1px solid rgba(255, 45, 123, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
}

/* Direct Eventbrite Link */
.eventbrite-direct-link {
  text-align: center;
  margin-bottom: var(--space-6);
}
.eventbrite-direct-link .btn-lg {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 700;
}
.direct-link-note {
  font-size: var(--text-xs) !important;
  color: var(--color-text-faint) !important;
  margin-top: var(--space-2) !important;
  margin-bottom: 0 !important;
}
.direct-link-note strong {
  color: var(--color-accent);
}
.embed-label {
  font-size: var(--text-sm) !important;
  color: var(--color-text-faint) !important;
  margin-bottom: var(--space-4) !important;
}

/* On mobile, hide the inline embed and emphasise the direct link */
@media (max-width: 768px) {
  .checkout-embed-desktop {
    display: none;
  }
  .checkout-section {
    padding: var(--space-5);
  }
}
/* On desktop, show both */
@media (min-width: 769px) {
  .eventbrite-direct-link {
    margin-bottom: var(--space-8);
  }
}

/* ===== UPCOMING EVENTS ===== */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.upcoming-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 2px dashed var(--color-border);
  background: var(--color-surface);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.upcoming-card:hover {
  border-color: var(--color-purple);
  background: rgba(155, 89, 255, 0.05);
}
.upcoming-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: rgba(155, 89, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.upcoming-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-purple);
}
.upcoming-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.upcoming-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== PARTNERSHIP FORM ===== */
.form-section {
  background: linear-gradient(135deg, rgba(155, 89, 255, 0.05), rgba(255, 45, 123, 0.05));
}
.form-container {
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group label .required {
  color: var(--color-accent);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a9a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-submit-row {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}
.form-success.show {
  display: block;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-success);
  margin-bottom: var(--space-3);
}
.form-success p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ADMIN PANEL ===== */
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-bg);
  overflow-y: auto;
}
.admin-overlay.active {
  display: block;
}
.admin-header {
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
}
.admin-content {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.stat-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.stat-card .stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-change {
  font-size: var(--text-xs);
  color: var(--color-success);
  margin-top: var(--space-1);
}
.stat-card.accent .stat-value { color: var(--color-accent); }
.stat-card.purple .stat-value { color: var(--color-purple); }
.stat-card.gold .stat-value { color: var(--color-gold); }
.stat-card.success .stat-value { color: var(--color-success); }

.admin-section {
  margin-bottom: var(--space-8);
}
.admin-section h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.admin-table {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.admin-table th,
.admin-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--text-sm);
}
.admin-table th {
  background: var(--color-surface-2);
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.admin-table td {
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.status-badge.active {
  background: rgba(0, 214, 143, 0.1);
  color: var(--color-success);
}
.status-badge.pending {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-gold);
}
.admin-empty {
  text-align: center;
  padding: var(--space-12);
  color: var(--color-text-muted);
}
.admin-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-text-faint);
}

/* Admin password prompt */
.admin-password {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--space-4);
  padding: var(--space-8);
}
.admin-password h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}
.admin-password p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.admin-password input {
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-base);
  width: 300px;
  max-width: 100%;
  text-align: center;
}
.admin-password .error-msg {
  color: var(--color-error);
  font-size: var(--text-sm);
  display: none;
}

@media (max-width: 768px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-table {
    font-size: var(--text-xs);
  }
}

/* ===== ORDER SUCCESS MODAL ===== */
#order-success {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
}
#order-success.show {
  display: flex;
}
.success-modal {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  text-align: center;
  max-width: 480px;
  width: 90%;
  border: 1px solid var(--color-border);
  position: relative;
  animation: modal-in 0.4s var(--ease-out);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.success-modal .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-modal .success-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}
.success-modal h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.success-modal p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  line-height: 1.7;
}
.success-modal .discount-code {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 45, 123, 0.1);
  border: 1px solid rgba(255, 45, 123, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-family: monospace;
  font-weight: 700;
  font-size: var(--text-sm);
  margin: var(--space-3) 0;
}
.success-modal .close-btn {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
}
.success-modal .close-btn:hover {
  background: var(--color-surface-3);
  color: var(--color-text);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-12) var(--space-6) var(--space-8);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  line-height: 1.7;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}
.footer-bottom a {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== GRADIENT & GLOW UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  color: var(--color-gold);
}
.glow-accent {
  box-shadow: var(--shadow-glow-accent);
}
.glow-purple {
  box-shadow: var(--shadow-glow-purple);
}

/* ===== MUSIC PLAYER BAR ===== */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
}
.music-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
}
.music-mute {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.music-mute:hover {
  background: rgba(255, 45, 123, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.music-mute svg {
  width: 16px;
  height: 16px;
}
.music-mute .mute-icon-off { display: none; }
.music-player.muted .music-mute .mute-icon-on { display: none; }
.music-player.muted .music-mute .mute-icon-off { display: block; }
.music-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  min-width: 0;
}
.music-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.music-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* EQ animation bars */
.music-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  flex-shrink: 0;
}
.music-eq span {
  width: 3px;
  background: var(--color-accent);
  border-radius: 1px;
  animation: eqBar 0.8s ease-in-out infinite;
}
.music-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.music-eq span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.music-eq span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.music-eq span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
@keyframes eqBar {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}
.music-player.muted .music-eq span {
  animation-play-state: paused;
  transform: scaleY(0.2);
  opacity: 0.3;
}
.music-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: var(--space-1);
  transition: color 0.2s;
}
.music-expand:hover {
  color: var(--color-text);
}
.music-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.music-player.open .music-chevron {
  transform: rotate(180deg);
}
.music-embed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
  padding: 0 var(--space-4);
}
.music-player.open .music-embed {
  max-height: 200px;
  padding: 0 var(--space-4) var(--space-3);
}
.music-embed iframe {
  border-radius: var(--radius-lg);
}
.footer {
  padding-bottom: calc(var(--space-16) + 48px);
}
@media (max-width: 640px) {
  .music-bar {
    padding: var(--space-2) var(--space-4);
  }
  .music-mute {
    width: 32px;
    height: 32px;
  }
}

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