/* =====================================================
   SUNRYEZ - Modern Glassmorphism Design System
   Hip-Hop Reggae Fusion × Dubtronica
   ===================================================== */

/* ============== CSS VARIABLES ============== */
:root {
  /* Primary Colors */
  --color-bg: #050510;
  --color-bg-secondary: #0a0a1a;
  --color-surface: rgba(255, 255, 255, 0.03);
  
  /* Accent Colors - Reggae Inspired Palette */
  --color-primary: #ff6b35;
  --color-primary-dark: #e55a2b;
  --color-secondary: #00d4aa;
  --color-accent: #7c3aed;
  --color-accent-2: #f472b6;
  --color-gold: #fbbf24;
  
  /* Reggae Colors for Icons */
  --reggae-red: #c41e3a;
  --reggae-gold: #ffd700;
  --reggae-green: #228b22;
  --reggae-black: #1a1a1a;
  
  /* Gradient Definitions - Original Text Gradients */
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f472b6 50%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #7c3aed 100%);
  --gradient-glow: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(124, 58, 237, 0.4) 100%);
  
  /* Reggae Icon Gradient */
  --gradient-reggae: linear-gradient(135deg, var(--reggae-red) 0%, var(--reggae-gold) 50%, var(--reggae-green) 100%);
  --gradient-dark: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #0f0f23 100%);
  
  /* Button Gradients - Warm Gold/Amber */
  --gradient-button: linear-gradient(135deg, #ff6b35 0%, #fbbf24 100%);
  --gradient-button-hover: linear-gradient(135deg, #ff8c5a 0%, #fcd34d 100%);
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
  --shadow-glow-lg: 0 0 80px rgba(255, 107, 53, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============== PARTICLE CANVAS ============== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============== GLOW ORBS ============== */
.glow-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -10s;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.3) 0%, transparent 70%);
  top: 20%;
  right: 20%;
  animation-delay: -15s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(-50px, -30px) scale(1.05); }
}

/* ============== UTILITY CLASSES ============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============== NAVIGATION ============== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-base);
  }

.nav-header.scrolled {
  background: rgba(5, 5, 16, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
  }
  
.nav-link:hover {
  color: var(--text-primary);
  }
  
.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 16, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.mobile-menu a i {
  color: var(--color-primary);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-button);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  }

.btn-primary:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
  }

.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: var(--transition-slow);
  }

.btn-primary:hover .btn-glow {
  transform: translateX(100%);
  }

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
}

.btn-spotify {
  background: #1DB954;
  color: white;
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
}

.btn-soundcloud {
  background: #ff5500;
  color: white;
}

.btn-soundcloud:hover {
  background: #ff6a1a;
  transform: translateY(-2px);
}

/* ============== HERO SECTION ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 16, 0.3) 0%,
    rgba(5, 5, 16, 0.6) 50%,
    var(--color-bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
    font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease forwards;
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .word {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 80px rgba(255, 107, 53, 0.5);
}

.hero-title .word::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  filter: blur(30px);
  opacity: 0.5;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-tagline .divider {
  color: var(--color-primary);
  opacity: 0.5;
}

.genre-pills {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  transition: var(--transition-base);
}

.pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-cta {
  display: flex;
    justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}


@keyframes fadeInUp {
  from {
  opacity: 0;
    transform: translateY(30px);
}
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============== STATS SECTION ============== */
.stats-section {
  position: relative;
  padding: var(--space-xl) 0;
  z-index: 5;
  margin-top: -100px;
}

  .stats-grid {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat-card {
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-reggae);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.stat-card:nth-child(1) .stat-icon { background: var(--reggae-red); }
.stat-card:nth-child(2) .stat-icon { background: var(--reggae-gold); color: #000; }
.stat-card:nth-child(3) .stat-icon { background: var(--reggae-green); }
.stat-card:nth-child(4) .stat-icon { background: var(--reggae-red); }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============== SECTION STYLES ============== */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.section-tag i {
  color: #ff6b35;
}

.section-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

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

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ============== MUSIC SECTION ============== */
.music-section {
  position: relative;
  padding: var(--space-2xl) 0;
  z-index: 5;
}

/* ========================================
   MUSIC PLAYER COMPONENT
   Scalable architecture for future enhancements
   ======================================== */

.player-wrapper {
  padding: 0;
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

/* Platform Tab Container */
.player-tabs-container {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
  padding: var(--space-lg) var(--space-lg) 0;
  }
  
.player-tabs {
    display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  }
  
/* Individual Tab Styling */
.player-tab {
  position: relative;
    display: flex;
    align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  overflow: hidden;
}

.player-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.player-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.player-tab:hover::before {
  opacity: 1;
}

/* Tab Icon */
.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
    transition: all 0.3s ease;
  flex-shrink: 0;
  }
  
/* Platform-specific icon colors */
.player-tab[data-player="youtube"] .tab-icon {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  }
  
.player-tab[data-player="spotify"] .tab-icon {
  background: rgba(29, 185, 84, 0.15);
  color: #1DB954;
}

.player-tab[data-player="soundcloud"] .tab-icon {
  background: rgba(255, 85, 0, 0.15);
  color: #ff5500;
}

/* Tab Content */
.tab-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.tab-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.tab-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Active Tab Indicator */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Tab State */
.player-tab.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 
    0 0 20px rgba(255, 107, 53, 0.2),
    0 0 40px rgba(255, 107, 53, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.player-tab.active .tab-label {
  color: var(--text-primary);
}

.player-tab.active .tab-sublabel {
  opacity: 1;
  color: var(--color-primary);
}

.player-tab.active .tab-indicator {
  transform: translateX(-50%) scaleX(1);
}

/* Platform-specific active glow */
.player-tab[data-player="youtube"].active {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.2),
    0 0 40px rgba(255, 0, 0, 0.1);
}

.player-tab[data-player="youtube"].active .tab-icon {
  background: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.player-tab[data-player="youtube"].active .tab-sublabel {
  color: #ff4444;
}

.player-tab[data-player="youtube"].active .tab-indicator {
  background: linear-gradient(90deg, #ff0000, #ff4444);
}

.player-tab[data-player="spotify"].active {
  background: rgba(29, 185, 84, 0.1);
  border-color: rgba(29, 185, 84, 0.3);
  box-shadow: 
    0 0 20px rgba(29, 185, 84, 0.2),
    0 0 40px rgba(29, 185, 84, 0.1);
}

.player-tab[data-player="spotify"].active .tab-icon {
  background: rgba(29, 185, 84, 0.25);
  box-shadow: 0 0 15px rgba(29, 185, 84, 0.4);
}

.player-tab[data-player="spotify"].active .tab-sublabel {
  color: #1DB954;
}

.player-tab[data-player="spotify"].active .tab-indicator {
  background: linear-gradient(90deg, #1DB954, #1ed760);
}

.player-tab[data-player="soundcloud"].active {
  background: rgba(255, 85, 0, 0.1);
  border-color: rgba(255, 85, 0, 0.3);
  box-shadow: 
    0 0 20px rgba(255, 85, 0, 0.2),
    0 0 40px rgba(255, 85, 0, 0.1);
}

.player-tab[data-player="soundcloud"].active .tab-icon {
  background: rgba(255, 85, 0, 0.25);
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

.player-tab[data-player="soundcloud"].active .tab-sublabel {
  color: #ff5500;
}

.player-tab[data-player="soundcloud"].active .tab-indicator {
  background: linear-gradient(90deg, #ff5500, #ff7733);
}

/* Player Content Area */
.player-content {
  padding: var(--space-lg);
}

.player-panel {
    display: none;
  animation: panelFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { 
    opacity: 0;
    transform: translateY(10px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Player Header */
.player-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
}

.player-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.youtube-icon {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.spotify-icon {
  background: linear-gradient(135deg, #1DB954 0%, #169c46 100%);
}

.soundcloud-icon {
  background: linear-gradient(135deg, #ff5500 0%, #ff3300 100%);
}

.player-meta {
  flex: 1;
}

.player-meta h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

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

.external-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-base);
}

.external-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Player Frame */
.player-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.player-frame iframe {
  display: block;
  border-radius: var(--radius-lg);
  width: 100%;
}

/* YouTube-specific styling */
.youtube-frame {
  aspect-ratio: 16/9;
  max-height: 450px;
}

.youtube-frame iframe {
  height: 100%;
}

/* Quick Links (for YouTube panel) */
.player-quick-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff4444;
  transform: translateY(-2px);
}

.quick-link i {
  color: #ff0000;
}

/* SoundCloud Grid */
.soundcloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.soundcloud-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.soundcloud-embed iframe {
  border-radius: var(--radius-md);
}

.embed-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  text-align: center;
  padding: var(--space-sm);
}

/* Responsive Design for Player */
@media (max-width: 768px) {
  .player-tabs-container {
    padding: var(--space-md) var(--space-md) 0;
}

  .player-tabs {
    gap: var(--space-xs);
}

  .player-tab {
    padding: var(--space-sm) var(--space-md);
    min-width: auto;
    flex: 1;
  justify-content: center;
  }
  
  .tab-content {
  display: none;
  }
  
  .tab-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

  .player-content {
    padding: var(--space-md);
}

.player-header {
    flex-wrap: wrap;
}

  .external-link {
    margin-left: 0;
    margin-top: var(--space-sm);
    width: 100%;
    justify-content: center;
  }
  
  .player-quick-links {
  justify-content: center;
  }
  
  .soundcloud-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .player-tab {
    padding: var(--space-sm);
  }
  
  .tab-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  }
  
.platform-cta {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  }
  
.platform-cta h3 {
    font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.platform-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============== ABOUT SECTION ============== */
.about-section {
  position: relative;
  padding: var(--space-2xl) 0;
  z-index: 5;
}

/* Bio Hero - Top Section */
.bio-hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.bio-hero-visual .video-container {
  position: relative;
  overflow: hidden;
  padding: var(--space-sm);
}

.artist-video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.video-overlay {
  position: absolute;
  inset: var(--space-sm);
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(5, 5, 16, 0.8) 100%
  );
  border-radius: var(--radius-md);
  pointer-events: none;
}

.video-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.video-badge i {
  color: #ff6b35;
}

.bio-hero-content {
  position: relative;
  }

.bio-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  border-left: 3px solid #ff6b35;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  }

.bio-tag {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--reggae-gold);
}

.bio-tags .bio-tag:nth-child(1) {
  background: rgba(196, 30, 58, 0.15);
  border-color: rgba(196, 30, 58, 0.4);
  color: #ff6b6b;
}

.bio-tags .bio-tag:nth-child(2) {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--reggae-gold);
}

.bio-tags .bio-tag:nth-child(3) {
  background: rgba(34, 139, 34, 0.15);
  border-color: rgba(34, 139, 34, 0.4);
  color: #50c878;
}

/* Bio Cards Grid */
.bio-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.bio-card {
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
}

.bio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.bio-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.bio-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.bio-card p strong {
  color: #ff6b35;
}

.bio-card-highlight {
  font-weight: 600;
  color: var(--reggae-gold) !important;
  font-size: 0.85rem !important;
  margin-top: var(--space-sm);
}

/* Release Feature */
.release-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 1fr auto;
  gap: var(--space-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  align-items: start;
}

.release-image {
  grid-row: 1 / 3;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.release-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-content {
  margin-bottom: 0;
}

.release-cta {
  align-self: end;
}

@media (max-width: 768px) {
  .release-feature {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
}

  .release-image {
    grid-row: auto;
    max-width: 220px;
  margin: 0 auto;
}

  .release-themes {
  justify-content: center;
  }
  
  .release-cta {
    justify-content: center;
  }
}

.release-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.release-tag i {
  color: #ff6b35;
}

.release-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.release-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.release-themes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.theme-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.theme-tag i {
  color: #ff6b35;
  font-size: 0.75rem;
}

.release-motto {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--reggae-gold);
  font-style: italic;
}

.release-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Bio Closing */
.bio-closing {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.closing-text strong {
  color: var(--text-primary);
}

.closing-thanks {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.closing-thanks .emoji {
  font-style: normal;
}

/* Responsive Bio Section */
@media (max-width: 1200px) {
  .bio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 900px) {
  .bio-hero {
  grid-template-columns: 1fr;
    text-align: center;
}

  .bio-hero-visual {
    max-width: 400px;
    margin: 0 auto;
}

  .bio-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #ff6b35;
    padding-top: var(--space-md);
  }
  
  .bio-tags {
  justify-content: center;
  }
}

@media (max-width: 600px) {
  .bio-cards-grid {
    grid-template-columns: 1fr;
}

  .release-title {
  font-size: 1.5rem;
}

  .release-themes {
    flex-direction: column;
  }
}

/* ============== CONNECT SECTION ============== */
.connect-section {
  position: relative;
  padding: var(--space-2xl) 0;
  z-index: 5;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
}

.social-card i {
  font-size: 2rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.social-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--reggae-gold);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  }

.social-card:hover i {
  color: var(--reggae-gold);
  transform: scale(1.2);
}

/* Alternating reggae colors on hover */
.social-card:nth-child(3n+1):hover { border-color: var(--reggae-red); box-shadow: 0 10px 40px rgba(196, 30, 58, 0.25); }
.social-card:nth-child(3n+1):hover i { color: #ff6b6b; }
.social-card:nth-child(3n+2):hover { border-color: var(--reggae-gold); box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25); }
.social-card:nth-child(3n+2):hover i { color: var(--reggae-gold); }
.social-card:nth-child(3n):hover { border-color: var(--reggae-green); box-shadow: 0 10px 40px rgba(34, 139, 34, 0.25); }
.social-card:nth-child(3n):hover i { color: #50c878; }

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  gap: var(--space-lg);
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  }

.cta-content p {
  color: var(--text-secondary);
  }

/* ============== DISCOGRAPHY MOSAIC ============== */
.discography-section {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  z-index: 5;
}

.mosaic-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-lg) 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.mosaic-track {
  display: flex;
  gap: var(--space-md);
  animation: scroll-mosaic 60s linear infinite;
  width: max-content;
}

.mosaic-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-mosaic {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.album-card {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.album-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
  z-index: 10;
}

.album-card:hover img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.album-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.album-type {
  font-size: 0.7rem;
  font-weight: 500;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glow effect on hover */
.album-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ff6b35 0%, var(--reggae-gold) 50%, var(--reggae-green) 100%);
  border-radius: var(--radius-md);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.album-card:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .album-card {
    width: 140px;
    height: 140px;
  }
  
  .mosaic-track {
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .album-card {
    width: 120px;
    height: 120px;
  }
  
  .album-title {
    font-size: 0.8rem;
  }
}

/* ============== FOOTER ============== */
.site-footer {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-lg);
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--glass-border);
  z-index: 5;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 35px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-genres {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-genres span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer-links h4,
.footer-platforms h4,
.footer-social h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.footer-links ul,
.footer-platforms ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a,
.footer-platforms a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.footer-links a:hover,
.footer-platforms a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition-base);
}

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

  .footer-bottom {
  display: flex;
    justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

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

.made-with i {
  color: var(--color-primary);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
  grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
}

  .mobile-toggle {
  display: flex;
}

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

  .hero-tagline {
    flex-direction: column;
    gap: var(--space-sm);
}

  .hero-tagline .divider {
    display: none;
  }
  
  .stats-grid {
  grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

  .stat-card {
    padding: var(--space-md);
}

  .stat-value {
    font-size: 2rem;
  }
  
  .soundcloud-grid {
    grid-template-columns: 1fr;
}

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
}

  .contact-cta {
    flex-direction: column;
    text-align: center;
}

  .footer-content {
  grid-template-columns: 1fr;
    text-align: center;
}

  .footer-genres {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
}

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
  }
  
  .container {
    padding: 0 var(--space-md);
}

  .hero-badge {
    font-size: 0.75rem;
  }
  
  .genre-pills {
    gap: var(--space-xs);
  }
  
  .pill {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .bio-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

  .social-card {
    padding: var(--space-md);
  }
  
  .social-card i {
    font-size: 1.5rem;
  }
}

/* ============== PLAYER FOLLOW BAR ============== */
.player-follow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.follow-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.follow-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.follow-btn.youtube {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
  border-color: rgba(255, 0, 0, 0.3);
}

.follow-btn.youtube:hover {
  background: #ff0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.follow-btn.spotify {
  background: rgba(29, 185, 84, 0.15);
  color: #1DB954;
  border-color: rgba(29, 185, 84, 0.3);
}

.follow-btn.spotify:hover {
  background: #1DB954;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
}

.follow-btn.soundcloud {
  background: rgba(255, 85, 0, 0.15);
  color: #ff5500;
  border-color: rgba(255, 85, 0, 0.3);
}

.follow-btn.soundcloud:hover {
  background: #ff5500;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

@media (max-width: 480px) {
  .player-follow-bar {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .follow-buttons {
    justify-content: center;
}
}

/* ============== CONTACT MODAL (Light Theme) ============== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  padding: var(--space-lg);
  padding-right: 60px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #111827;
}

.modal-header h3 i {
  color: var(--color-primary);
}

.modal-header p {
  color: #6b7280;
  font-size: 0.9rem;
}

.modal-body {
  padding: 0;
  overflow: auto;
  max-height: calc(90vh - 120px);
  background: #ffffff;
}

.modal-body iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  background: #ffffff;
}

@media (max-width: 600px) {
  .modal-container {
    max-height: 95vh;
  }
  
  .modal-body {
    max-height: calc(95vh - 100px);
  }
  
  .modal-body iframe {
    min-height: 400px;
  }
}

/* ============== AURORA / NORTHERN LIGHTS ============== */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.aurora-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  filter: blur(80px);
  opacity: 0.7;
}

.aurora-1 {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(196, 30, 58, 0.5) 20%,
    rgba(255, 215, 0, 0.4) 40%,
    rgba(34, 139, 34, 0.35) 60%,
    transparent 80%
  );
  top: -20%;
  left: -50%;
  animation: aurora-drift-1 25s ease-in-out infinite alternate;
}

.aurora-2 {
  background: linear-gradient(
    160deg,
    transparent 0%,
    rgba(255, 215, 0, 0.4) 25%,
    rgba(255, 107, 53, 0.5) 50%,
    rgba(196, 30, 58, 0.35) 75%,
    transparent 100%
  );
  top: 10%;
  left: -30%;
  animation: aurora-drift-2 30s ease-in-out infinite alternate;
  animation-delay: -10s;
}

.aurora-3 {
  background: linear-gradient(
    200deg,
    transparent 0%,
    rgba(34, 139, 34, 0.35) 30%,
    rgba(0, 212, 170, 0.4) 50%,
    rgba(124, 58, 237, 0.3) 70%,
    transparent 100%
  );
  top: 5%;
  left: -40%;
  animation: aurora-drift-3 35s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes aurora-drift-1 {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(15%) translateY(-10%) rotate(3deg) scale(1.1);
}
  100% {
    transform: translateX(25%) translateY(5%) rotate(-2deg) scale(1);
  }
}

@keyframes aurora-drift-2 {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-10%) translateY(15%) rotate(-5deg);
    opacity: 0.6;
  }
  100% {
    transform: translateX(20%) translateY(-5%) rotate(3deg);
    opacity: 0.4;
  }
}

@keyframes aurora-drift-3 {
  0% {
    transform: translateX(0) translateY(0) scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(20%) translateY(10%) scaleY(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-5%) translateY(-10%) scaleY(0.9);
    opacity: 0.3;
  }
}

/* ============== FIXED PLANT BORDERS ============== */
.fixed-foliage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

.plant-left,
.plant-right {
  position: fixed;
  height: 100vh;
  width: auto;
  max-width: 18vw;
  object-fit: contain;
  object-position: bottom;
  opacity: 0.85;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.6));
}

.plant-left {
  left: 0;
  bottom: 0;
}

.plant-right {
  right: 0;
  bottom: 0;
}

/* Hide plant borders on small screens for better UX */
@media (max-width: 1024px) {
  .plant-left,
  .plant-right {
    max-width: 12vw;
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .plant-left,
  .plant-right {
    display: none;
  }
}

/* ============== SMOKE / FOG EFFECTS ============== */
/* ============== SVG SMOKE EFFECT ============== */
.smoke-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.smoke-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.smoke-plume {
  position: absolute;
  bottom: -20px;
  mix-blend-mode: screen;
}

/* ===== LEFT EDGE SMOKE ===== */

/* Large red/orange wisp - far left */
.smoke-left-1 {
  left: -2%;
  width: 120px;
  height: 600px;
  background: radial-gradient(ellipse 70% 100% at 80% bottom, 
    rgba(255, 90, 40, 0.7) 0%, 
    rgba(255, 70, 30, 0.4) 25%,
    rgba(180, 50, 20, 0.15) 50%,
    transparent 75%
  );
  filter: url(#smoke-filter-1) blur(12px);
  animation: smoke-rise-left 28s ease-in-out infinite;
}

/* Thin gold accent - left */
.smoke-left-2 {
  left: 3%;
  width: 40px;
  height: 450px;
  background: radial-gradient(ellipse 60% 100% at center bottom, 
    rgba(255, 200, 50, 0.8) 0%, 
    rgba(255, 170, 30, 0.4) 30%,
    transparent 65%
  );
  filter: url(#smoke-filter-2) blur(8px);
  animation: smoke-rise-left 22s ease-in-out infinite;
  animation-delay: -8s;
}

/* Small green wisp - left */
.smoke-left-3 {
  left: 6%;
  width: 60px;
  height: 350px;
  background: radial-gradient(ellipse 50% 100% at 70% bottom, 
    rgba(80, 200, 90, 0.65) 0%, 
    rgba(60, 170, 70, 0.3) 35%,
    transparent 70%
  );
  filter: url(#smoke-filter-3) blur(6px);
  animation: smoke-rise-left 18s ease-in-out infinite;
  animation-delay: -14s;
}

/* ===== RIGHT EDGE SMOKE ===== */

/* Large green wisp - far right */
.smoke-right-1 {
  right: -3%;
  width: 140px;
  height: 550px;
  background: radial-gradient(ellipse 65% 100% at 20% bottom, 
    rgba(60, 190, 90, 0.7) 0%, 
    rgba(50, 160, 70, 0.4) 25%,
    rgba(40, 130, 50, 0.15) 50%,
    transparent 75%
  );
  filter: url(#smoke-filter-2) blur(14px);
  animation: smoke-rise-right 30s ease-in-out infinite;
  animation-delay: -5s;
}

/* Medium gold wisp - right */
.smoke-right-2 {
  right: 4%;
  width: 80px;
  height: 480px;
  background: radial-gradient(ellipse 55% 100% at 30% bottom, 
    rgba(255, 190, 40, 0.75) 0%, 
    rgba(255, 160, 30, 0.35) 30%,
    transparent 65%
  );
  filter: url(#smoke-filter-1) blur(10px);
  animation: smoke-rise-right 24s ease-in-out infinite;
  animation-delay: -12s;
}

/* Tiny red accent - right */
.smoke-right-3 {
  right: 1%;
  width: 35px;
  height: 380px;
  background: radial-gradient(ellipse 45% 100% at center bottom, 
    rgba(255, 100, 50, 0.7) 0%, 
    rgba(220, 70, 30, 0.35) 30%,
    transparent 60%
  );
  filter: url(#smoke-filter-3) blur(5px);
  animation: smoke-rise-right 20s ease-in-out infinite;
  animation-delay: -18s;
}

/* Left side smoke - drifts inward (right) as it rises */
@keyframes smoke-rise-left {
  0% {
    transform: translateY(0) scaleX(0.7) scaleY(1) translateX(0);
    opacity: 0.7;
  }
  15% {
    transform: translateY(-80px) scaleX(0.85) scaleY(1.05) translateX(15px);
    opacity: 0.8;
  }
  35% {
    transform: translateY(-200px) scaleX(1) scaleY(1.12) translateX(8px);
    opacity: 0.65;
  }
  55% {
    transform: translateY(-350px) scaleX(1.15) scaleY(1.18) translateX(25px);
    opacity: 0.45;
  }
  75% {
    transform: translateY(-480px) scaleX(1.3) scaleY(1.25) translateX(12px);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-650px) scaleX(1.5) scaleY(1.35) translateX(30px);
    opacity: 0;
  }
}

/* Right side smoke - drifts inward (left) as it rises */
@keyframes smoke-rise-right {
  0% {
    transform: translateY(0) scaleX(0.75) scaleY(1) translateX(0);
    opacity: 0.7;
  }
  15% {
    transform: translateY(-90px) scaleX(0.9) scaleY(1.06) translateX(-12px);
    opacity: 0.8;
  }
  35% {
    transform: translateY(-220px) scaleX(1.05) scaleY(1.14) translateX(-20px);
    opacity: 0.6;
  }
  55% {
    transform: translateY(-370px) scaleX(1.2) scaleY(1.2) translateX(-10px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-500px) scaleX(1.35) scaleY(1.28) translateX(-25px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-680px) scaleX(1.55) scaleY(1.4) translateX(-15px);
    opacity: 0;
  }
}

/* Performance: Disable heavy effects for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aurora-layer,
  .smoke-plume {
    animation: none !important;
  }
  
  .aurora-container,
  .smoke-container {
    opacity: 0.3;
}

  .smoke-plume {
    opacity: 0.4;
    transform: translateY(-200px) scale(1.5);
  }
}

/* ============== SCROLLBAR ============== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============== ACCESSIBILITY & SEO ============== */
/* Screen Reader Only - Visually hidden but accessible to crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Ensure hidden content is still crawlable */
.sr-only h2,
.sr-only h3,
.sr-only p,
.sr-only ul,
.sr-only li {
  margin: 0;
  padding: 0;
}

/* Skip Link for Accessibility */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--color-primary);
  color: white;
  padding: 12px 24px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.skip-link:focus {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Focus Visible for Better Accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .album-track {
    animation: none !important;
}

  .orb {
    animation: none !important;
}

  #particle-canvas {
    display: none !important;
  }
}

/* Print Styles */
@media print {
  .nav-header,
  .glow-orbs,
  #particle-canvas,
  .modal-overlay,
  .social-grid,
  .player-tabs,
  .player-content,
  .discography-section {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
}

  .section-title,
  .gradient-text {
    background: none !important;
    -webkit-text-fill-color: black !important;
    color: black !important;
}

  .glass-card {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
  
  .sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    margin: 0 !important;
}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(0, 0, 0, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.8);
}

  .glass-card {
    border-width: 2px;
}
}
