/* ==========================================
   PULSEFIELDWINK — GLOBAL STYLES
   Apple-style Glossy + Liquid Glass Theme
   ========================================== */

/* CSS RESET & BASE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --bg-secondary: #111111;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.14);
  --primary: #7B61FF;
  --primary-glow: rgba(123,97,255,0.4);
  --accent: #00E0FF;
  --accent-glow: rgba(0,224,255,0.3);
  --highlight: #FFFFFF;
  --text: #E0E0E0;
  --text-muted: #888888;
  --red: #FF4444;
  --pink: #FF61D8;
  --blue: #4488FF;
  --cyan: #00E0FF;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

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

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* GLASS PANEL */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* ==========================================
   HEADER
   ========================================== */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.glass-header.scrolled {
  background: rgba(10,10,10,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--highlight);
}

.logo-pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--primary-glow);
}

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

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--highlight);
  background: var(--glass);
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #8F7AFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--highlight);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #8F7AFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-glass {
  background: var(--glass);
  color: var(--highlight);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}

.btn-glass:hover {
  background: var(--glass-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -200px;
  left: -100px;
  animation-delay: 2s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-reflection {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.03) 45%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 55%,
    transparent 60%
  );
  animation: reflection-sweep 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes reflection-sweep {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
}

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

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.title-line {
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--highlight);
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--highlight);
}

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

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

/* Floating Cards */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 400px;
  height: 500px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card .card-glow {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  pointer-events: none;
}

.card-1 {
  width: 280px;
  height: 200px;
  top: 0;
  right: 0;
  animation: card-float-1 6s ease-in-out infinite;
}

.card-2 {
  width: 220px;
  height: 160px;
  top: 180px;
  left: 0;
  animation: card-float-2 7s ease-in-out infinite;
}

.card-3 {
  width: 250px;
  height: 180px;
  bottom: 0;
  right: 40px;
  animation: card-float-3 8s ease-in-out infinite;
}

@keyframes card-float-1 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes card-float-2 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(15px) rotate(2deg); }
}

@keyframes card-float-3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fade-in-up 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ==========================================
   WAVE DIVIDER
   ========================================== */
.wave-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.music-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 60px;
}

.wave-bar {
  width: 3px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
  animation: wave-dance 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(odd) {
  background: var(--accent);
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.05s; }
.wave-bar:nth-child(3) { animation-delay: 0.1s; }
.wave-bar:nth-child(4) { animation-delay: 0.15s; }
.wave-bar:nth-child(5) { animation-delay: 0.2s; }
.wave-bar:nth-child(6) { animation-delay: 0.25s; }
.wave-bar:nth-child(7) { animation-delay: 0.3s; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; }
.wave-bar:nth-child(9) { animation-delay: 0.4s; }
.wave-bar:nth-child(10) { animation-delay: 0.45s; }
.wave-bar:nth-child(11) { animation-delay: 0.5s; }
.wave-bar:nth-child(12) { animation-delay: 0.55s; }
.wave-bar:nth-child(13) { animation-delay: 0.6s; }
.wave-bar:nth-child(14) { animation-delay: 0.65s; }
.wave-bar:nth-child(15) { animation-delay: 0.7s; }
.wave-bar:nth-child(16) { animation-delay: 0.65s; }
.wave-bar:nth-child(17) { animation-delay: 0.6s; }
.wave-bar:nth-child(18) { animation-delay: 0.55s; }
.wave-bar:nth-child(19) { animation-delay: 0.5s; }
.wave-bar:nth-child(20) { animation-delay: 0.45s; }
.wave-bar:nth-child(21) { animation-delay: 0.4s; }
.wave-bar:nth-child(22) { animation-delay: 0.35s; }
.wave-bar:nth-child(23) { animation-delay: 0.3s; }
.wave-bar:nth-child(24) { animation-delay: 0.25s; }
.wave-bar:nth-child(25) { animation-delay: 0.2s; }
.wave-bar:nth-child(26) { animation-delay: 0.15s; }
.wave-bar:nth-child(27) { animation-delay: 0.1s; }
.wave-bar:nth-child(28) { animation-delay: 0.05s; }
.wave-bar:nth-child(29) { animation-delay: 0s; }
.wave-bar:nth-child(30) { animation-delay: 0.05s; }

@keyframes wave-dance {
  0%, 100% { height: 12px; opacity: 0.4; }
  50% { height: 50px; opacity: 1; }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--highlight);
  margin-bottom: 16px;
}

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

/* ==========================================
   SCROLL STORY PANELS
   ========================================== */
.scroll-story {
  padding: 80px 0;
}

.story-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.story-panel.in-view .panel-bg img {
  transform: scale(1);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.7));
}

.overlay-red {
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(255,68,68,0.15)) !important;
}

.overlay-cyan {
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(0,224,255,0.15)) !important;
}

.overlay-blue {
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(68,136,255,0.15)) !important;
}

.overlay-pink {
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(255,97,216,0.15)) !important;
}

.panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.panel-glass {
  background: var(--glass);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.panel-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.band-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: -20px;
}

.genre-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(123,97,255,0.15);
  border: 1px solid rgba(123,97,255,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.band-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--highlight);
  margin-bottom: 8px;
}

.band-origin {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.band-desc {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Track List */
.top-tracks {
  margin-bottom: 24px;
}

.top-tracks h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  transition: background var(--transition);
  cursor: pointer;
}

.track-item:hover {
  background: rgba(255,255,255,0.06);
}

.track-num {
  width: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  flex-shrink: 0;
}

.track-play {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.7rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.track-item:hover .track-play {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--highlight);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-album {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience-section {
  padding: 100px 0;
  position: relative;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-card {
  background: var(--glass);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: calc(var(--delay, 0) * 0.15s);
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.exp-card:hover {
  transform: translateY(-8px);
  background: var(--glass-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.exp-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
}

.exp-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 12px;
}

.exp-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.exp-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.exp-card a:hover {
  color: var(--accent);
  gap: 10px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  left: 20%;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  right: 20%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--highlight);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-content .hero-buttons {
  justify-content: center;
}

/* ==========================================
   PAGE HERO (SUBPAGES)
   ========================================== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.page-hero-short {
  padding: 140px 0 60px;
}

.page-hero-content {
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--highlight);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   BANDS GRID
   ========================================== */
.bands-grid-section {
  padding: 60px 0 100px;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.band-card {
  background: var(--glass);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.band-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.2);
}

.band-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.band-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.band-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.play-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 8px 30px var(--primary-glow);
  transform: scale(0.8);
  transition: transform var(--transition);
}

.band-card:hover .play-circle {
  transform: scale(1);
}

.band-card-body {
  padding: 24px;
}

.genre-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(123,97,255,0.15);
  border: 1px solid rgba(123,97,255,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.genre-badge.genre-red {
  background: rgba(255,68,68,0.15);
  border-color: rgba(255,68,68,0.3);
  color: var(--red);
}

.genre-badge.genre-cyan {
  background: rgba(0,224,255,0.15);
  border-color: rgba(0,224,255,0.3);
  color: var(--cyan);
}

.genre-badge.genre-blue {
  background: rgba(68,136,255,0.15);
  border-color: rgba(68,136,255,0.3);
  color: var(--blue);
}

.genre-badge.genre-pink {
  background: rgba(255,97,216,0.15);
  border-color: rgba(255,97,216,0.3);
  color: var(--pink);
}

.band-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 6px;
}

.band-card-origin {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.band-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ==========================================
   BAND DETAIL PAGE
   ========================================== */
.band-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.band-hero-bg {
  position: absolute;
  inset: 0;
}

.band-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%);
}

.band-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--highlight);
}

.band-hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--highlight);
  margin-bottom: 8px;
}

.band-origin-lg {
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.band-hero-actions {
  display: flex;
  gap: 16px;
}

.btn-play-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-play-lg:hover {
  background: #8F7AFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.band-detail-section {
  padding: 60px 0 100px;
}

.band-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.band-detail-main .glass-panel {
  margin-bottom: 24px;
}

.band-detail-main h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 16px;
}

.band-detail-main p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.band-detail-sidebar .glass-panel {
  margin-bottom: 24px;
}

.band-detail-sidebar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 16px;
}

/* Album Grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.album-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition);
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-4px);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-info {
  padding: 10px 0 0;
}

.album-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--highlight);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Facts List */
.facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facts-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.facts-list li i {
  width: 20px;
  color: var(--primary);
}

/* Tour Highlights */
.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tour-item {
  display: flex;
  gap: 16px;
}

.tour-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,97,255,0.15);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

.tour-info h4 {
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 4px;
}

.tour-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================
   MUSIC PAGE
   ========================================== */
.music-section {
  padding: 60px 0 100px;
}

.now-playing {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 24px;
}

.now-playing-art {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.now-playing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}

.play-btn-lg {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 30px var(--primary-glow);
}

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

.now-playing-info {
  flex: 1;
}

.now-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.now-playing-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 4px;
}

.now-playing-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 16px;
}

.playback-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.playback-controls button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 8px;
}

.playback-controls button:hover {
  color: var(--highlight);
}

.playback-controls .play-control {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
}

.playback-controls .play-control:hover {
  background: #8F7AFF;
  transform: scale(1.05);
}

/* Playlist Grid */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.playlist-card {
  transition: transform var(--transition);
  cursor: pointer;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.playlist-card:hover {
  transform: translateY(-8px);
}

.playlist-cover {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}

.playlist-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.playlist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.play-circle-lg {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--primary-glow);
  transform: scale(0.8) translateY(10px);
  transition: all var(--transition);
}

.playlist-card:hover .play-circle-lg {
  transform: scale(1) translateY(0);
}

.playlist-card h4 {
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 4px;
}

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

/* Track List Full */
.track-list-full .track-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.track-list-full .track-item:last-child {
  border-bottom: none;
}

/* Sticky Player */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sticky-progress {
  height: 3px;
  background: rgba(255,255,255,0.05);
}

.sticky-progress-fill {
  height: 100%;
  width: 35%;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}

.sticky-player-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.sticky-track-info img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.sticky-track-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--highlight);
}

.sticky-track-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sticky-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-controls button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 8px;
}

.sticky-controls button:hover {
  color: var(--highlight);
}

.sticky-play {
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--primary) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 0.9rem;
}

.sticky-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.volume-bar {
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.volume-fill {
  width: 70%;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

/* ==========================================
   EVENTS PAGE
   ========================================== */
.events-section {
  padding: 60px 0 100px;
}

.featured-event {
  display: flex;
  overflow: hidden;
  padding: 0;
}

.featured-event-img {
  width: 50%;
  position: relative;
  min-height: 350px;
}

.featured-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge-lg {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--primary);
  color: white;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-event-info {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date-lg {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.featured-event-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 8px;
}

.event-venue {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.featured-event-info > p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  transition: all var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.08s);
}

.event-card:hover {
  background: var(--glass-hover);
  transform: translateX(8px);
}

.event-date-block {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  background: rgba(123,97,255,0.1);
  border: 1px solid rgba(123,97,255,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}

.event-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.event-day {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--highlight);
  line-height: 1.1;
}

.event-year {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 4px;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.event-genre-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(123,97,255,0.12);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
}

.event-genre-tag.genre-red {
  background: rgba(255,68,68,0.12);
  color: var(--red);
}

.event-genre-tag.genre-blue {
  background: rgba(68,136,255,0.12);
  color: var(--blue);
}

.event-genre-tag.genre-pink {
  background: rgba(255,97,216,0.12);
  color: var(--pink);
}

/* Festival Grid */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.festival-card {
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.festival-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.festival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.festival-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.festival-overlay h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 6px;
}

.festival-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section {
  padding: 60px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
}

.about-img-1 {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-img-2 {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 60%;
  border-radius: var(--radius-sm);
  border: 3px solid var(--bg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.about-stat-cards {
  display: flex;
  gap: 16px;
  margin-top: 60px;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-number-lg {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--highlight);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form h2,
.contact-info-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--highlight);
  font-family: var(--font);
  font-size: 1rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,97,255,0.15);
  background: rgba(255,255,255,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success i {
  font-size: 3rem;
  color: #00E676;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--highlight);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,97,255,0.15);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-method h4 {
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-links-lg {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links-lg a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links-lg a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-section {
  padding: 40px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--highlight);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  color: var(--accent);
}

/* ==========================================
   FOOTER
   ========================================== */
.glass-footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
}

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

.footer-bottom a {
  color: var(--primary);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .band-detail-grid {
    grid-template-columns: 1fr;
  }

  .band-detail-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-event {
    flex-direction: column;
  }

  .featured-event-img,
  .featured-event-info {
    width: 100%;
  }

  .featured-event-img {
    height: 250px;
  }

  .festival-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 12px 24px;
  }

  .cta-btn {
    display: none;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .bands-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .band-detail-sidebar {
    grid-template-columns: 1fr;
  }

  .panel-glass {
    padding: 32px 24px;
    max-width: 100%;
  }

  .now-playing {
    flex-direction: column;
    text-align: center;
  }

  .now-playing-art {
    width: 160px;
    height: 160px;
  }

  .playback-controls {
    justify-content: center;
  }

  .playlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-volume {
    display: none;
  }

  .sticky-track-info {
    min-width: auto;
  }

  .festival-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .event-card .btn {
    align-self: flex-start;
  }

  .band-hero {
    min-height: 60vh;
  }

  .band-hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .featured-event-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .glass-panel {
    padding: 24px 20px;
  }

  .playlist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stat-cards {
    flex-direction: column;
  }

  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}