/* ==========================================================================
   HIEUTHUHAI - THE CYBER RAP ICON | STYLESHEET
   Aesthetics: Cyberpunk Neon Hip-Hop, Dark Glassmorphism, Micro-Animations
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #06070a;
  --bg-secondary: #0d0f17;
  --bg-tertiary: #131722;
  --bg-card: rgba(16, 20, 32, 0.75);
  --bg-card-hover: rgba(24, 30, 48, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Neon Accents */
  --neon-cyan: #00f5ff;
  --neon-cyan-glow: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.25);
  --neon-pink: #ff007a;
  --neon-pink-glow: 0 0 20px rgba(255, 0, 122, 0.5), 0 0 40px rgba(255, 0, 122, 0.25);
  --neon-gold: #ffaa00;
  --neon-gold-glow: 0 0 20px rgba(255, 170, 0, 0.5), 0 0 40px rgba(255, 170, 0, 0.25);
  --neon-purple: #9d4edd;

  /* Text & Borders */
  --text-main: #f0f4fc;
  --text-muted: #8b95a5;
  --text-dim: #5a6475;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-neon-cyan: rgba(0, 245, 255, 0.35);
  --border-neon-pink: rgba(255, 0, 122, 0.35);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', monospace, sans-serif;
  --font-headline: 'Syne', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-display);
  overflow-x: hidden;
}

body {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(0, 245, 255, 0.07) 0%, transparent 60%),
              radial-gradient(circle at 90% 40%, rgba(255, 0, 122, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 60%),
              var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 4px;
}

/* Ambient Canvas */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
  box-shadow: 0 0 10px var(--neon-cyan);
}
.cursor-outline {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(0, 245, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, border-color 0.2s;
}

/* Typography Utility */
a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid var(--border-neon-cyan);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 7, 10, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(6, 7, 10, 0.95);
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-neon {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.logo-accent {
  color: var(--neon-cyan);
  text-shadow: var(--neon-cyan-glow);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  margin-left: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link i {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link:hover i, .nav-link.active i {
  opacity: 1;
  transform: scale(1.15);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Audio Ambient Toggle Button */
.audio-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid var(--border-neon-cyan);
  color: var(--neon-cyan);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.audio-toggle-btn:hover {
  background: rgba(0, 245, 255, 0.16);
  box-shadow: var(--neon-cyan-glow);
}

.equalizer-mini {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.equalizer-mini span {
  width: 2px;
  background: var(--neon-cyan);
  border-radius: 1px;
  animation: miniEqAnim 1.2s infinite ease-in-out alternate;
}
.equalizer-mini span:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.equalizer-mini span:nth-child(2) { height: 10px; animation-delay: 0.3s; }
.equalizer-mini span:nth-child(3) { height: 6px; animation-delay: 0.2s; }
.equalizer-mini span:nth-child(4) { height: 12px; animation-delay: 0.4s; }

.audio-toggle-btn.muted .equalizer-mini span {
  animation: none;
  height: 2px !important;
}

@keyframes miniEqAnim {
  0% { height: 2px; }
  100% { height: 12px; }
}

.btn-neon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-pink), #a00055);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.4);
  transition: var(--transition-smooth);
}

.btn-neon-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 122, 0.7);
}

.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.35);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-gold);
  box-shadow: var(--neon-gold-glow);
  animation: pulseDotAnim 1.8s infinite;
}

@keyframes pulseDotAnim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--neon-gold);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.title-sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.title-glitch {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.title-name {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--neon-pink), #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-desc em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 45px;
}

.btn-primary-neon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
  color: #06070a;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.45);
  transition: var(--transition-smooth);
}

.btn-primary-neon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.7);
}

.btn-secondary-cyber {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary-cyber:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 0, 122, 0.3);
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.cyber-glow-bg {
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(255, 0, 122, 0.4));
  filter: blur(40px);
  border-radius: 30px;
  z-index: 1;
  opacity: 0.75;
}

.cyber-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(0, 245, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  background: var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-frame:hover .hero-img {
  transform: scale(1.04);
}

.hud-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-neon-cyan);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hud-music-badge {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  background: rgba(13, 15, 23, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.music-disc-spin {
  font-size: 1.8rem;
  color: var(--neon-pink);
  animation: discSpin 4s linear infinite;
}

@keyframes discSpin {
  100% { transform: rotate(360deg); }
}

.music-info-pill {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.badge-title {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-song {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neon-cyan);
  border: none;
  color: #06070a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
  transition: var(--transition-fast);
}

.quick-play-btn:hover {
  transform: scale(1.1);
}

.hud-coords {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid var(--border-neon-cyan);
  border-radius: 15px;
  position: relative;
}

.mouse-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouseScroll 1.6s infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* ==========================================================================
   MUSIC & DISCOGRAPHY SECTION
   ========================================================================== */
.music-section {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 15, 23, 0.6) 50%, transparent 100%);
}

.music-grid-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Album Spotlight Card */
.album-spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 100px;
}

.album-cover-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 245, 255, 0.9);
  color: #06070a;
  font-weight: 800;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 4px 12px;
  border-radius: 6px;
}

.album-year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--neon-cyan);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.album-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.25;
}

.album-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.streaming-links {
  display: flex;
  gap: 10px;
}

.stream-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.stream-btn.spotify:hover {
  background: #1db954;
  color: #000;
  border-color: #1db954;
}
.stream-btn.apple:hover {
  background: #fc3c44;
  color: #fff;
  border-color: #fc3c44;
}
.stream-btn.youtube:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

/* Tracklist Container */
.tracklist-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
}

.tracklist-header {
  display: grid;
  grid-template-columns: 50px 1fr 140px 80px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.tracklist-items {
  display: flex;
  flex-direction: column;
}

.track-row {
  display: grid;
  grid-template-columns: 50px 1fr 140px 80px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
  cursor: pointer;
}

.track-row:last-child {
  border-bottom: none;
}

.track-row:hover {
  background: rgba(0, 245, 255, 0.04);
}

.track-row.active {
  background: rgba(0, 245, 255, 0.09);
  border-left: 3px solid var(--neon-cyan);
}

.track-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}

.track-row.active .track-num {
  color: var(--neon-cyan);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.track-texts {
  display: flex;
  flex-direction: column;
}

.track-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hit-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 0, 122, 0.2);
  color: var(--neon-pink);
  border: 1px solid var(--border-neon-pink);
  font-family: var(--font-mono);
}

.track-feat {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.track-genre-col {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.track-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.track-row:hover .track-play-btn {
  background: var(--neon-cyan);
  color: #06070a;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.track-row.active .track-play-btn {
  background: var(--neon-pink);
  color: #fff;
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.5);
}

/* ==========================================================================
   MILESTONES & ABOUT SECTION
   ========================================================================== */
.milestones-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: flex-start;
}

/* Timeline */
.timeline-roadmap {
  position: relative;
  padding-left: 45px;
}

.timeline-line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 17px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink), var(--neon-gold));
}

.timeline-node {
  position: relative;
  margin-bottom: 40px;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.node-dot {
  position: absolute;
  top: 12px;
  left: -36px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
  z-index: 2;
}

.node-dot.gold-glow {
  border-color: var(--neon-gold);
  box-shadow: var(--neon-gold-glow);
}

.node-year {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.node-year.gold-text {
  color: var(--neon-gold);
}

.node-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 22px 26px;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.node-card:hover {
  transform: translateX(6px);
  border-color: var(--border-neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.node-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
  margin-bottom: 10px;
}

.node-badge.gold-badge {
  background: rgba(255, 170, 0, 0.15);
  color: var(--neon-gold);
  border: 1px solid rgba(255, 170, 0, 0.4);
}

.highlight-card {
  border-color: rgba(255, 170, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.06), var(--bg-card));
  box-shadow: 0 15px 40px rgba(255, 170, 0, 0.15);
}

.node-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.node-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Profile HUD Panel */
.profile-hud-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 100px;
}

.hud-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: rgba(0, 245, 255, 0.08);
  border-bottom: 1px solid var(--border-neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.hud-title {
  color: var(--neon-cyan);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-status {
  color: #22c55e;
  font-weight: 700;
}

.hud-body {
  padding: 26px;
}

.hud-avatar {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--border-subtle);
}

.hud-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hud-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
  animation: hudScanAnim 2.8s infinite linear;
}

@keyframes hudScanAnim {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hud-stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.hud-stat-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.hud-stat-item .lbl {
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.hud-stat-item .val {
  font-weight: 600;
  color: #fff;
}

.hud-stat-item .val.cyan {
  color: var(--neon-cyan);
  font-weight: 800;
}

.hud-stat-item .val.pink {
  color: var(--neon-pink);
  font-weight: 700;
}

.hud-quote-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--neon-cyan);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
}

.hud-quote-box i {
  color: var(--neon-cyan);
  margin-bottom: 6px;
  display: block;
}

.hud-quote-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ==========================================================================
   LOOKBOOK & GALLERY SECTION
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--neon-cyan);
  color: #06070a;
  border-color: var(--neon-cyan);
  font-weight: 800;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  transition: var(--transition-smooth);
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 10, 0.95) 0%, rgba(6, 7, 10, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.cat-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--neon-pink);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.btn-zoom-img {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon-cyan);
  border: none;
  color: #06070a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-zoom-img:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   TOUR RADAR SECTION
   ========================================================================== */
.tour-countdown-card {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), rgba(255, 0, 122, 0.08)), var(--bg-card);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
  gap: 24px;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-pink);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.countdown-event {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.countdown-location {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.countdown-location i {
  color: var(--neon-cyan);
}

.countdown-timer {
  display: flex;
  gap: 14px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(6, 7, 10, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 68px;
}

.t-val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  line-height: 1;
}

.t-lbl {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  margin-top: 4px;
}

.tours-table-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-row {
  display: grid;
  grid-template-columns: 140px 1fr 180px 180px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px 30px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.tour-row:hover {
  border-color: var(--border-neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.tour-date-col {
  display: flex;
  flex-direction: column;
}

.tour-date-col .day {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #fff;
  line-height: 1;
}

.tour-date-col .month {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.tour-date-col .year {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.tour-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tour-place {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tour-place i {
  color: var(--neon-pink);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.status-badge.hot {
  background: rgba(255, 170, 0, 0.12);
  color: var(--neon-gold);
  border: 1px solid rgba(255, 170, 0, 0.4);
}

.status-badge.soldout {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-badge.selling {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.btn-ticket-neon {
  background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
  border: none;
  color: #06070a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.35);
  transition: var(--transition-fast);
  width: 100%;
}

.btn-ticket-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
}

.btn-ticket-cyber {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.btn-ticket-cyber:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-pink);
}

/* ==========================================================================
   PUNCHLINE VAULT SECTION
   ========================================================================== */
.punchlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.punchline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.punchline-card:hover {
  border-color: var(--border-neon-pink);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 122, 0.15);
}

.punchline-icon {
  font-size: 1.5rem;
  color: var(--neon-pink);
  margin-bottom: 16px;
}

.punchline-lyrics {
  font-size: 1.05rem;
  color: #f1f5f9;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.punchline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.song-ref {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.song-ref strong {
  color: var(--neon-cyan);
}

.btn-copy-quote {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-copy-quote:hover {
  background: var(--neon-cyan);
  color: #06070a;
  border-color: var(--neon-cyan);
}

/* ==========================================================================
   FAN ZONE & REGISTRATION SECTION
   ========================================================================== */
.fanzone-card-wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.fanzone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.25) 0%, rgba(0, 245, 255, 0.2) 60%, transparent 100%);
  filter: blur(50px);
  z-index: 1;
}

.fanzone-inner {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-neon-pink);
  border-radius: 28px;
  padding: 50px;
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.fanzone-header {
  text-align: center;
  margin-bottom: 36px;
}

.fanzone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-pink);
  background: rgba(255, 0, 122, 0.1);
  border: 1px solid var(--border-neon-pink);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.fanzone-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

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

.fanzone-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group label i {
  color: var(--neon-cyan);
}

.input-group input, .input-group select {
  background: rgba(6, 7, 10, 0.7);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.input-group input:focus, .input-group select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.input-group select option {
  background: var(--bg-primary);
  color: #fff;
}

.btn-submit-fc {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-pink), #a00055);
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 0, 122, 0.5);
  transition: var(--transition-smooth);
}

.btn-submit-fc:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 0, 122, 0.8);
}

/* ==========================================================================
   STICKY MUSIC PLAYER DOCK
   ========================================================================== */
.sticky-player-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 12px 0;
}

.dock-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dock-track-info {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 280px;
}

.dock-art {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-neon-cyan);
  flex-shrink: 0;
}

.dock-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dock-play-anim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}

.dock-play-anim.playing {
  opacity: 1;
}

.dock-play-anim span {
  width: 3px;
  background: var(--neon-cyan);
  border-radius: 1px;
  animation: dockBarAnim 1s infinite alternate ease-in-out;
}
.dock-play-anim span:nth-child(1) { height: 8px; }
.dock-play-anim span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.dock-play-anim span:nth-child(3) { height: 10px; animation-delay: 0.4s; }

@keyframes dockBarAnim {
  0% { height: 4px; }
  100% { height: 18px; }
}

.dock-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dock-song-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dock-artist {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Controls */
.dock-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 580px;
}

.ctrl-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dock-ctrl-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dock-ctrl-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.dock-play-main {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon-cyan);
  border: none;
  color: #06070a;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.45);
  transition: var(--transition-fast);
}

.dock-play-main:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.8);
}

.dock-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.time-txt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  min-width: 34px;
}

.progress-bar-bg {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Extra Dock Controls */
.dock-extra {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 220px;
  justify-content: flex-end;
}

#dockVisualizerCanvas {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
}

.dock-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vol-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
}

.vol-slider {
  width: 70px;
  accent-color: var(--neon-cyan);
  cursor: pointer;
}

/* ==========================================================================
   MODALS & LIGHTBOX
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 14px;
  border: 1px solid var(--border-neon-cyan);
  box-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  color: var(--neon-pink);
  transform: scale(1.2);
}

/* Membership VIP Modal */
.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.membership-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.membership-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.membership-card-box {
  position: relative;
  z-index: 2;
  width: 440px;
  background: linear-gradient(135deg, #181b28 0%, #0d0e17 100%);
  border: 2px solid var(--neon-gold);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 0 50px rgba(255, 170, 0, 0.35);
  animation: cardPopup 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardPopup {
  0% { transform: scale(0.8) rotate(-4deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.membership-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
}

.membership-close:hover {
  color: #fff;
}

.card-chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 24px;
}

.card-logo span {
  color: var(--neon-pink);
}

.card-user-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.card-meta .lbl, .card-favorite .lbl {
  color: var(--text-dim);
  font-family: var(--font-mono);
  display: block;
}

.card-meta strong, .card-favorite strong {
  color: #fff;
}

.card-favorite {
  margin-bottom: 22px;
  font-size: 0.85rem;
}

.card-barcode {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin-bottom: 16px;
}

.card-status-note {
  font-size: 0.8rem;
  color: #22c55e;
  text-align: center;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(13, 15, 23, 0.95);
  border: 1px solid var(--border-neon-cyan);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #030407;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px 100px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

.footer-logo span {
  color: var(--neon-cyan);
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--neon-cyan);
  color: #06070a;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-stats-bar {
    justify-content: center;
  }

  .music-grid-layout {
    grid-template-columns: 1fr;
  }

  .album-spotlight-card {
    position: static;
  }

  .milestones-content {
    grid-template-columns: 1fr;
  }

  .profile-hud-panel {
    position: static;
  }

  .tour-row {
    grid-template-columns: 100px 1fr 140px auto;
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-neon-cyan);
    padding: 24px;
    display: none;
    flex-direction: column;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .hamburger-btn {
    display: block;
  }

  .btn-neon-pill {
    display: none;
  }

  .cursor-dot, .cursor-outline {
    display: none;
  }

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

  .fanzone-inner {
    padding: 30px 20px;
  }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .tour-date-col {
    align-items: center;
  }

  .tracklist-header {
    display: none;
  }

  .track-row {
    grid-template-columns: 36px 1fr 50px;
  }

  .track-genre-col {
    display: none;
  }

  .sticky-player-dock {
    padding: 8px 0;
  }

  .dock-container {
    flex-wrap: wrap;
  }

  .dock-track-info {
    width: 60%;
  }

  .dock-extra {
    display: none;
  }

  .dock-controls {
    order: 3;
    max-width: 100%;
  }
}
