/* ═══════════════════════════════════════════════
   CYFO CYBERX 2026 — ELITE STYLESHEET
   Design: Dark-mode premium, neon accents, glassmorphism
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --clr-bg: #050810;
  --clr-bg-2: #080d18;
  --clr-surface: #0d1424;
  --clr-surface-2: #111b2e;
  --clr-glass: rgba(13, 20, 36, 0.7);
  --clr-border: rgba(99, 179, 237, 0.12);
  --clr-border-bright: rgba(99, 179, 237, 0.3);

  /* Neon palette */
  --clr-cyan: #00d4ff;
  --clr-cyan-dim: rgba(0, 212, 255, 0.15);
  --clr-green: #00ff9d;
  --clr-green-dim: rgba(0, 255, 157, 0.12);
  --clr-purple: #a855f7;
  --clr-purple-dim: rgba(168, 85, 247, 0.15);
  --clr-orange: #ff6b35;
  --clr-orange-dim: rgba(255, 107, 53, 0.15);
  --clr-gold: #f59e0b;

  /* Text */
  --clr-text: #e2e8f0;
  --clr-text-mute: #94a3b8;
  --clr-text-dim: #475569;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #050810 0%, #080d18 50%, #0a0f1e 100%);
  --grad-cyan: linear-gradient(135deg, #00d4ff, #0099cc);
  --grad-accent: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  --grad-text: linear-gradient(135deg, #00d4ff, #00ff9d);

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
}

.hidden { display: none !important; }
.mobile-only { display: none !important; }
.v-hidden { visibility: hidden; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-cyan); border-radius: 2px; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ═══════════════════════════════════════════════
   FOMO TICKER
   ═══════════════════════════════════════════════ */
#fomo-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-purple), var(--clr-green), var(--clr-cyan));
  background-size: 300% 100%;
  animation: tickerGrad 5s linear infinite;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@keyframes tickerGrad {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  padding-left: 100%;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-cyber {
  font-size: 1.4rem;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-x {
  font-size: 1.4rem;
  color: var(--clr-text);
}
.logo-year {
  font-size: 0.75rem;
  color: var(--clr-cyan);
  padding: 2px 6px;
  border: 1px solid var(--clr-cyan);
  border-radius: 4px;
  font-family: var(--font-mono);
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-mute);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--clr-cyan); }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--grad-cyan);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--r-full);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
  background: var(--grad-hero);
  gap: 2.5rem;
}

/* Grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Scan line */
.hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-cyan), transparent);
  animation: scanLine 4s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--clr-cyan);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--clr-cyan-dim);
  border: 1px solid var(--clr-cyan);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-cyan);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  animation: fadeSlideDown 0.8s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.5); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.title-line-1 {
  font-size: clamp(2rem, 10vw, 6rem);
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line-2 {
  font-size: clamp(2.8rem, 14vw, 11rem);
  color: white;
  -webkit-text-fill-color: white;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
  line-height: 1;
}
.title-x {
  -webkit-text-fill-color: var(--clr-cyan);
  text-shadow: 0 0 40px var(--clr-cyan);
}
.title-line-3 {
  font-size: clamp(1.6rem, 8vw, 5.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-text-mute);
  line-height: 1.7;
  animation: fadeSlideUp 0.8s ease 0.4s both;
  text-align: center;
}

/* Countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0.75rem 1.25rem;
  min-width: 80px;
  backdrop-filter: blur(10px);
}
.cd-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-cyan);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cd-label {
  font-size: 0.6rem;
  color: var(--clr-text-dim);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cd-sep {
  font-size: 2rem;
  color: var(--clr-cyan);
  font-weight: 700;
  margin-top: -10px;
}

/* Seat meter */
.seat-meter-wrap {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 560px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.seat-meter-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}
.seat-fire { font-size: 1.2rem; }
.seat-bar-track {
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.seat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-orange), #ff2d55);
  border-radius: var(--r-full);
  transition: width 1s ease;
  animation: seatPulse 2s ease-in-out infinite;
}
@keyframes seatPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 12px rgba(255, 107, 53, 0.6); }
}
.seat-sold-pct {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-orange);
  text-align: right;
  letter-spacing: 0.1em;
}

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.7s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--grad-cyan);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-full);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 1px solid var(--clr-border-bright);
  color: var(--clr-text-mute);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-full);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan);
  background: var(--clr-cyan-dim);
}

/* Hero stats — in normal flow, centered below CTA */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1rem 2rem;
  backdrop-filter: blur(20px);
  animation: fadeSlideUp 0.8s ease 1s both;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-cyan);
}
.stat-label {
  font-size: 0.65rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-stat-div {
  width: 1px;
  height: 30px;
  background: var(--clr-border);
}

/* Scroll hint — keep absolute at very bottom */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 1.2s both;
  z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--clr-cyan);
  border-bottom: 2px solid var(--clr-cyan);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ═══════════════════════════════════════════════
   LIVE NOTIFICATION STRIP
   ═══════════════════════════════════════════════ */
.live-notif-strip {
  position: fixed;
  bottom: 5rem;
  left: 1.5rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: var(--clr-text);
  max-width: 280px;
  animation: notifSlide 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.live-notif-strip.hidden { display: none; }
@keyframes notifSlide {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

/* ═══════════════════════════════════════════════
   COMMON SECTION STYLES
   ═══════════════════════════════════════════════ */
section { padding: var(--sp-2xl) 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--clr-cyan);
  text-transform: uppercase;
  background: var(--clr-cyan-dim);
  border: 1px solid var(--clr-cyan);
  border-radius: var(--r-full);
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--clr-text-mute);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Animate on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.section-about {
  background: var(--clr-bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.about-card {
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover {
  border-color: var(--clr-border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}
.about-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.about-card p {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TRACKS
   ═══════════════════════════════════════════════ */
.section-tracks { background: var(--clr-bg); }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.track-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.track-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.track-cyber { --track-clr: var(--clr-cyan); }
.track-ai { --track-clr: var(--clr-purple); }
.track-fun { --track-clr: var(--clr-orange); }
.track-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--track-clr), transparent 60%);
  opacity: 0.05;
  pointer-events: none;
}
.track-card:hover::after { opacity: 0.1; }
.track-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--track-clr);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.track-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--track-clr);
}
.track-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
}
.track-list { display: flex; flex-direction: column; gap: 0.6rem; }
.track-list li {
  font-size: 0.875rem;
  color: var(--clr-text-mute);
  padding-left: 1rem;
  position: relative;
}
.track-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--track-clr);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   TICKETS
   ═══════════════════════════════════════════════ */
.section-tickets { background: var(--clr-bg-2); }

.urgency-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--clr-gold);
}
.urgency-pulse {
  width: 10px; height: 10px;
  background: var(--clr-gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1s infinite;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: stretch;
}
.ticket-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ticket-card:hover {
  border-color: var(--clr-border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}
.ticket-featured {
  background: linear-gradient(145deg, #0d1b36, #111e3a);
  border-color: var(--clr-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}
.ticket-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ticket-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--clr-cyan);
  background: var(--clr-cyan-dim);
  border: 1px solid var(--clr-cyan);
  border-radius: var(--r-full);
  padding: 0.25rem 0.75rem;
}
.ticket-seats {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  font-family: var(--font-mono);
}
.ticket-seats.urgent { color: #ff4d6d; animation: urgentBlink 1s ease-in-out infinite; }
@keyframes urgentBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-cyan);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.price-orig {
  font-size: 1rem;
  color: var(--clr-text-dim);
  text-decoration: line-through;
}
.ticket-savings {
  font-size: 0.75rem;
  color: var(--clr-green);
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}
.ticket-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.ticket-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--clr-text-mute);
}
.perk-check { color: var(--clr-green); font-weight: 700; }
.ticket-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border: 1px solid var(--clr-cyan);
  color: var(--clr-cyan);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.ticket-btn:hover {
  background: var(--clr-cyan-dim);
}
.ticket-btn-featured {
  background: var(--grad-cyan);
  border: none;
  color: #000;
}
.ticket-btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}
.ticket-guarantee {
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  margin-top: 0.75rem;
}

/* App Download */
.app-download-section {
  background: linear-gradient(135deg, var(--clr-surface), #0e1628);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.app-download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--clr-purple-dim), transparent 70%);
  pointer-events: none;
}
.app-download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.app-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--clr-purple);
  margin-bottom: 0.75rem;
}
.app-download-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.app-download-text p {
  font-size: 0.95rem;
  color: var(--clr-text-mute);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.app-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.app-feat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-mute);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 0.3rem 0.8rem;
}
.app-store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  min-width: 170px;
}
.store-android {
  background: #1a1a2e;
  border: 1px solid rgba(100, 255, 100, 0.3);
  color: white;
}
.store-android:hover {
  background: rgba(100, 255, 100, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.store-ios {
  background: #1a1a2e;
  border: 1px solid rgba(200, 200, 255, 0.3);
  color: white;
}
.store-ios:hover {
  background: rgba(200, 200, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.store-icon { flex-shrink: 0; color: white; }
.store-text { display: flex; flex-direction: column; }
.store-sub { font-size: 0.65rem; color: var(--clr-text-dim); letter-spacing: 0.05em; }
.store-name { font-size: 1rem; font-weight: 700; color: white; }

/* ═══════════════════════════════════════════════
   REGISTER
   ═══════════════════════════════════════════════ */
/* ═══════════════════ NAV AUTH ═══════════════════ */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1.5rem;
}

.btn-login {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-name {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.btn-logout {
  background: none;
  border: none;
  color: #ff4d6d;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.7;
}

.btn-logout:hover {
  opacity: 1;
}

/* ═══════════════════ EVENTS SECTION ═══════════════════ */
.section-events {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-img-wrap {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
  background: #111;
}

.event-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-status-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: var(--primary);
}

.event-details {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-category {
  font-family: var(--font-mono);
  color: var(--secondary);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.meta-item svg {
  color: var(--primary);
  opacity: 0.8;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.event-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.event-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.event-btn:disabled {
  background: #333;
  color: #777;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ──────────────── DASHBOARD ──────────────── */
.ticket-card-mini {
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ticket-card-mini:hover {
  border-color: var(--clr-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ticket-card-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-cyan);
}

.ticket-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ticket-id {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clr-cyan);
  background: var(--clr-cyan-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.ticket-title {
  font-size: 1.1rem;
  margin-top: 0.8rem;
  color: #fff;
}

.ticket-meta {
  font-size: 0.8rem;
  color: var(--clr-text-mute);
  margin-top: 0.4rem;
}

.ticket-qr-wrap {
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  width: min-content;
}

.qr-code-small img {
  display: block;
}

.no-events {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--clr-glass);
  border: 1px dashed var(--clr-border);
  border-radius: var(--r-md);
}

.no-events-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}


/* ═══════════════════ AUTH MODAL ═══════════════════ */
.auth-box {
  max-width: 440px;
  padding: 3rem !important;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--clr-text-mute);
  padding: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-tab.active {
  background: var(--clr-cyan);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.auth-desc {
  font-size: 0.85rem;
  color: var(--clr-text-mute);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.input-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--clr-text-mute);
  letter-spacing: 0.1em;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-input-wrap:focus-within {
  border-color: var(--clr-cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.country-code {
  padding: 0 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-cyan);
  font-weight: 700;
  font-family: var(--font-mono);
}

.phone-input-wrap input,
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"],
.input-group input[type="tel"] {
  background: transparent;
  border: none;
  flex-grow: 1;
  padding: 1rem;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  font-family: var(--font-mono);
}

.input-group input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  width: 100% !important;
}

.input-group input:focus {
  border-color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.auth-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.btn-text {
  background: none;
  border: none;
  color: var(--primary);
  margin-top: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.8;
}

.btn-text:hover {
  opacity: 1;
}

/* ═══════════════════ TICKET MODAL ═══════════════════ */
.ticket-box {
  padding: 0;
  background: #111;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-status-badge {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.ticket-status-badge.success {
  background: var(--secondary);
  color: #000;
}

.ticket-content {
  padding: 2.5rem;
  background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.ticket-logo {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-syne);
}

.ticket-logo span {
  color: var(--primary);
}

.ticket-id {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 0.8rem;
}

.ticket-body h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-syne);
  color: #fff;
}

.ticket-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.info-value {
  display: block;
  font-weight: 600;
  color: #fff;
}

.ticket-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

#qrcode img {
  border: 8px solid #fff;
  border-radius: 10px;
}

.qr-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.ticket-actions {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ═══════════════════ SKELETONS ═══════════════════ */
.event-skeleton {
  height: 450px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.event-skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  animation: skeletonScan 1.5s infinite;
}

@keyframes skeletonScan {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.modal-close-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

/* ── Registration Info Strip ──────────────────────── */
.reg-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1rem 2rem;
  margin-bottom: 3rem;
}
.reg-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-mute);
}
.reg-strip-item svg { color: var(--clr-cyan); flex-shrink: 0; }
.reg-strip-item strong { color: var(--clr-text); }
.reg-strip-divider {
  width: 1px;
  height: 24px;
  background: var(--clr-border);
}

/* ── Registration Option Cards Grid ──────────────── */
.reg-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.reg-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--clr-text);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.reg-option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.reg-option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.reg-option-sponsor { border-color: rgba(149, 102, 255, 0.3); }
.reg-option-sponsor::before { background: radial-gradient(ellipse at top left, rgba(149,102,255,0.06) 0%, transparent 70%); }
.reg-option-sponsor:hover { border-color: var(--clr-purple); box-shadow: 0 20px 60px rgba(149,102,255,0.2); }
.reg-option-sponsor:hover::before { opacity: 1; }

.reg-option-featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, var(--clr-surface) 60%);
}
.reg-option-featured::before { background: radial-gradient(ellipse at top right, rgba(0,212,255,0.08) 0%, transparent 70%); }
.reg-option-featured:hover { border-color: var(--clr-cyan); box-shadow: 0 20px 60px rgba(0,212,255,0.2); }
.reg-option-featured:hover::before { opacity: 1; }

.reg-option-popular {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--clr-cyan);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reg-option-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  font-family: var(--font-mono);
}
.reg-option-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
}
.reg-option-sponsor .reg-option-icon { color: var(--clr-purple); border-color: rgba(149,102,255,0.3); background: rgba(149,102,255,0.08); }
.reg-option-featured .reg-option-icon { color: var(--clr-cyan); border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.08); }
.reg-option-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.reg-option-desc {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  line-height: 1.7;
}
.reg-option-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.reg-option-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--clr-text-mute);
}
.reg-option-perks svg { color: var(--clr-cyan); flex-shrink: 0; }
.reg-option-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: all 0.3s;
  margin-top: auto;
}
.reg-option-card:hover .reg-option-cta {
  border-color: var(--clr-purple);
  color: var(--clr-purple);
}
.reg-option-cta-primary {
  background: var(--clr-cyan);
  color: #000 !important;
  border-color: var(--clr-cyan) !important;
  font-weight: 700;
}
.reg-option-card:hover .reg-option-cta-primary {
  background: #00f0ff;
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  color: #000 !important;
}
@media (max-width: 700px) {
  .reg-options-grid { grid-template-columns: 1fr; }
  .reg-info-strip { gap: 1rem; }
  .reg-strip-divider { display: none; }
}
.register-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.register-left { display: flex; flex-direction: column; gap: 1rem; }
.reg-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.reg-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.reg-info-label {
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.reg-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}
.reg-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.trust-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-mute);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form */
.register-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-mute);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--clr-text);
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--clr-text-dim); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: var(--clr-surface);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #0d1424; }
.form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--clr-cyan);
  cursor: pointer;
  margin-top: 2px;
}
.form-check-group label {
  font-size: 0.83rem;
  color: var(--clr-text-mute);
  cursor: pointer;
  line-height: 1.5;
}
.form-link { color: var(--clr-cyan); }
.form-submit {
  padding: 1rem;
  background: var(--grad-cyan);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}
.form-submit:active { transform: translateY(0); }
.form-note {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  text-align: center;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   SUCCESS MODAL
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--r-xl);
  padding: 3rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes modalPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.modal-box p {
  font-size: 0.95rem;
  color: var(--clr-text-mute);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.modal-app-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.modal-store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: all 0.2s ease;
}
.modal-store-btn:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan);
}
.modal-close {
  padding: 0.6rem 2rem;
  background: transparent;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-mute);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--clr-text-mute); color: var(--clr-text); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
#footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-logo span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col a {
  font-size: 0.875rem;
  color: var(--clr-text-dim);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--clr-cyan); }
.footer-links-col p {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-bottom: 0.75rem;
}
.footer-app-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-store {
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-mute);
  text-align: center;
  transition: all 0.2s;
}
.footer-store:hover { border-color: var(--clr-cyan); color: var(--clr-cyan); }
/* DevXAI powered-by strip */
.footer-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  border-top: 1px solid var(--clr-border);
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  letter-spacing: 0.03em;
}
.devxai-link {
  color: var(--clr-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.devxai-link:hover { color: #00f0ff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}
.footer-bottom a { color: var(--clr-cyan); }
.footer-seat-left {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--clr-orange);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  background: var(--grad-cyan);
  color: #000;
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: var(--r-full);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .register-wrap { grid-template-columns: 1fr; }
  .register-left { flex-direction: row; flex-wrap: wrap; }
  .reg-info-card { flex: 1; min-width: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.98);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    backdrop-filter: blur(25px);
    gap: 1.25rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease-out;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-only { display: block !important; }
  .nav-cta, .nav-auth { display: none !important; }
  
  .nav-container {
    padding: 0.6rem 1rem;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .nav-logo {
    transform: scale(0.9);
    transform-origin: left;
  }

  /* Mobile CTA styling */
  .nav-cta-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: var(--grad-cyan);
    color: #000;
    font-weight: 800;
    border-radius: var(--r-md);
    margin-top: 0.5rem;
  }
  
  .nav-auth-mobile {
    border-top: 1px solid var(--clr-border);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .nav-auth-mobile .user-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .nav-auth-mobile .btn-login {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--clr-cyan);
    color: var(--clr-cyan);
    background: transparent;
    border-radius: var(--r-md);
    font-weight: 600;
  }

  .hero-stats {
    display: none;
  }
  .hero-scroll-hint { display: none; }

  .title-line-1 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .title-line-2 { font-size: clamp(3rem, 13vw, 7.5rem); text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
  .title-line-3 { font-size: clamp(1.6rem, 7vw, 3.8rem); }
  
  .section-title { font-size: clamp(1.8rem, 8vw, 2.8rem); line-height: 1.1; }
  .section-desc { font-size: 0.95rem; margin-bottom: 2rem; }

  .cd-block { min-width: 55px; padding: 0.5rem; border-radius: var(--r-sm); }
  .cd-num { font-size: 1.5rem; }
  .cd-label { font-size: 0.5rem; }
  .cd-sep { font-size: 1.5rem; margin-top: -6px; }

  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 0.875rem; font-size: 0.95rem; }

  .tracks-grid, .about-grid, .tickets-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-card, .track-card { padding: 1.5rem; }
  .track-name { font-size: 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

  .app-download-content { flex-direction: column; }
  .app-store-buttons { flex-direction: row; width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .live-notif-strip { display: none !important; }

  #fomo-ticker { height: 26px; }
  #navbar { top: 26px; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .hero-content { padding: 0 0.5rem; gap: 1.25rem; }
  .title-line-1 { font-size: 1.8rem; }
  .title-line-2 { font-size: 3.2rem; letter-spacing: -0.05em; }
  .title-line-3 { font-size: 1.6rem; }
  .register-form { padding: 1.5rem; }
  .modal-box { padding: 2rem 1.5rem; }
  
  .floating-btn { 
    width: 50px;
    height: 50px;
    padding: 0; 
    border-radius: 50%; 
    justify-content: center;
    bottom: 1.25rem;
    right: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
  }
  .floating-btn span { display: none !important; }
  .floating-btn svg { width: 22px; height: 22px; }
  
  .live-notif-strip { 
    /* Inherited from 768px block */
  }
}
