:root {
  --bg: #060608;
  --bg-alt: #0c0c10;
  --neon-green: #c6ff3a;
  --neon-purple: #9b3aff;
  --neon-cyan: #3affe0;
  --text: #f2f2f0;
  --text-dim: #9a9aa0;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Demo badge */
.demo-badge {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 999;
  background: var(--neon-green);
  color: #060608;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(198,255,58,0.5);
}

/* Texture overlays */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 3px 3px;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(6,6,8,0.85), transparent);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}
.logo .dot { color: var(--neon-green); }
.logo-img { height: 28px; width: auto; display: block; }
.footer-top .logo-img { height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a { color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--neon-green) !important;
  color: #060608 !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--text);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 6vw 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(155,58,255,0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(198,255,58,0.25), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(58,255,224,0.2), transparent 50%);
  filter: blur(40px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 4%) scale(1.08); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9) 40%, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--neon-cyan);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-title {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 40px rgba(198,255,58,0.35));
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.hero-logo {
  display: block;
  width: clamp(260px, 55vw, 720px);
  height: auto;
}
.hero-logo-ghost {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.hero-title.glitch-active .hero-logo-ghost-a {
  opacity: 0.8;
  filter: hue-rotate(200deg) saturate(1.6);
  transform: translate(-4px, 2px);
  clip-path: inset(10% 0 60% 0);
}
.hero-title.glitch-active .hero-logo-ghost-b {
  opacity: 0.8;
  filter: hue-rotate(110deg) saturate(1.6);
  transform: translate(4px, -2px);
  clip-path: inset(60% 0 10% 0);
}
.hero-lineup {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  color: var(--neon-cyan);
  letter-spacing: 0.03em;
}
.hero-date {
  margin-top: 20px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}
.count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 68px;
  padding: 12px 8px;
}
.count-box span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--neon-green);
}
.count-box small {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: inline-block;
}
.btn.small { padding: 10px 22px; font-size: 0.85rem; }
.btn-primary {
  background: var(--neon-green);
  color: #060608;
  box-shadow: 0 0 30px rgba(198,255,58,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(198,255,58,0.55); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.btn-ghost.disabled { opacity: 0.4; pointer-events: none; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  z-index: 2;
}
.scroll-hint span { display: inline-block; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Marquee */
.marquee {
  background: var(--neon-green);
  color: #060608;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  transform: rotate(-1deg);
  margin: -1px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding-right: 20px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections generic */
section { padding: 110px 6vw; position: relative; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 50px;
}
.section-sub.center { margin-inline: auto; text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* About */
.about { background: var(--bg-alt); }
.about-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.about-text { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; margin-top: 6px; }
.about-text + .about-text { margin-top: 18px; }
.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat span { font-family: var(--font-display); font-size: 2.2rem; color: var(--neon-purple); }
.stat small { color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.05em; margin-top: 4px; }

/* Lineup */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.artist-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 16px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.artist-card:hover { transform: translateY(-6px); border-color: var(--neon-green); }
.artist-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.artist-card span { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.05em; }
.artist-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #060608;
}
.av-1, .av-6 { background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan)); }
.av-2, .av-7 { background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan)); }
.av-3, .av-8 { background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green)); }
.av-4, .av-9 { background: linear-gradient(135deg, var(--neon-purple), var(--neon-green)); }
.av-5, .av-10 { background: linear-gradient(135deg, var(--neon-green), var(--neon-purple)); }
.artist-card.mc { border-style: dashed; }

/* Location */
.location { background: var(--bg-alt); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.location-venue { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.location-address { color: var(--text-dim); margin-bottom: 22px; }
.location-details { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.location-details li { color: var(--text-dim); font-size: 0.95rem; }
.location-details strong { color: var(--text); }
.location-map {
  height: 320px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #0c0c10;
  overflow: hidden;
}
.location-map iframe { width: 100%; height: 100%; display: block; }

/* Tickets */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ticket-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket-card.featured { border-color: var(--neon-green); background: rgba(198,255,58,0.05); }
.ticket-badge {
  position: absolute;
  top: -12px;
  background: var(--neon-green);
  color: #060608;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
}
.ticket-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.ticket-price { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 18px; color: var(--neon-green); }
.ticket-card ul { margin-bottom: 26px; display: flex; flex-direction: column; gap: 8px; }
.ticket-card li { color: var(--text-dim); font-size: 0.9rem; }

/* Footer */
.footer {
  padding: 60px 6vw 100px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 16px; font-weight: 700; font-size: 0.85rem; color: var(--text-dim); }
.footer-socials a:hover { color: var(--neon-green); }
.footer-note { color: var(--text-dim); font-size: 0.85rem; max-width: 640px; line-height: 1.6; margin-bottom: 16px; }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }
.footer-copy a { color: var(--neon-cyan); }

/* Responsive */
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 70vw;
    background: #0a0a0d;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .burger { display: flex; }
  .countdown { gap: 8px; }
  .count-box { min-width: 56px; padding: 10px 6px; }
  section { padding: 80px 6vw; }
}
