/**
 * Sidhu Moose Wala Tribute — Professional UI
 * Modern Dark Theme • Smooth Animations • Mobile-First
 * 
 * 🎨 Color Palette:
 * Primary: #ff6b00 (Punjabi orange) 
 * Secondary: #ffd700 (Gold accent)
 * Background: #0a0a0a → #141414 → #1e1e1e (layered depth)
 * Text: #ffffff → #b3b3b3 (hierarchy)
 */

/* ============================================================================
   🎨 CSS VARIABLES & GLOBAL RESET
   ============================================================================ */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1e1e1e;
  --bg-elevated: #252525;
  
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #737373;
  
  --accent-primary: #ff6b00;
  --accent-secondary: #ffd700;
  --accent-gradient: linear-gradient(135deg, #ff6b00, #ff8c42, #ffd700);
  --accent-glow: 0 0 40px rgba(255, 107, 0, 0.3);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 107, 0, 0.4);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(255, 107, 0, 0.15);
  
  /* Typography */
  --font-display: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;
  
  /* Animation */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease-smooth);
  --transition-base: 250ms var(--ease-smooth);
  --transition-slow: 400ms var(--ease-smooth);
}

/* Reduce motion for accessibility */
@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;
  }
}

/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 107, 0, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ============================================================================
   ♿ ACCESSIBILITY UTILITIES
   ============================================================================ */
.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-5);
  background: var(--accent-primary);
  color: #000;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ============================================================================
   🧭 HEADER & NAVIGATION — Glassmorphism Style
   ============================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

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

.nav-toggle {
  display: none;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-2);
  cursor: pointer;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--bg-elevated);
  border-color: var(--accent-primary);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: transform var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav-list a {
  position: relative;
  padding: var(--space-3) var(--space-4);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-list a.active {
  color: var(--accent-primary);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-2) var(--space-3);
  transition: all var(--transition-fast);
}

.search-form:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.search-form input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-sm);
  width: 180px;
  min-width: 0;
}

.search-form input::placeholder {
  color: var(--text-muted);
}

.search-form input:focus {
  outline: none;
}

.search-form button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: var(--text-base);
  padding: var(--space-1);
  transition: color var(--transition-fast);
}

.search-form button:hover {
  color: var(--accent-primary);
}

/* ============================================================================
   🖼️ HERO SECTION — Cinematic Impact
   ============================================================================ */
/* Hero Section con Poster */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
  position: relative;
  /* Usa il poster come background */
  background: 
    linear-gradient(180deg, 
      rgba(10,10,10,0.7) 0%, 
      rgba(10,10,10,0.4) 50%, 
      rgba(10,10,10,0.9) 100%),
    url('../images/main.jpeg') center center / cover no-repeat fixed;
  overflow: hidden;
}

/* Overlay per leggibilità */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 0.8s var(--ease-smooth) both;
}

/* Nascondi il titolo testuale se vuoi usare solo il poster */
.hero-title {
  display: none; /* o mantienilo se preferisci */
}

.hero-subtitle {
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-dates {
  font-size: var(--text-lg);
  color: var(--accent-secondary);
  margin-bottom: var(--space-8);
  font-weight: 600;
}

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



.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-xs);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

/* ============================================================================
   🔘 BUTTONS — Premium Feel
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
}

.btn-primary {
  background: var(--accent-primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(255, 107, 0, 0.4);
}

.btn-primary::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(255, 107, 0, 0.08);
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: var(--accent-primary);
  color: #000;
  border-color: var(--accent-primary);
  transform: scale(1.1);
}

.btn-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  border: none;
}

.btn-youtube:hover {
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* ============================================================================
   📚 CONTENT SECTIONS — Clean & Spacious
   ============================================================================ */
.content-section {
  padding: var(--space-20) var(--space-6);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   💿 ALBUMS GRID — Card Design with Hover Magic
   ============================================================================ */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
}

.album-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.album-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.9));
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

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

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
}

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

.album-emoji {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 2rem;
  background: rgba(10, 10, 10, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.album-info {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.album-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
}

.album-year {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: var(--text-sm);
}

.album-tracks {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.album-desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-view {
  background: var(--accent-primary);
  color: #000;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-view:hover {
  background: var(--text-primary);
  transform: translateX(4px);
}

/* ============================================================================
   🔍 TRACKS LIST — Clean & Interactive
   ============================================================================ */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.track-item:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.track-item.active {
  border-color: var(--accent-primary);
  background: rgba(255, 107, 0, 0.08);
}

.track-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.track-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.track-item:hover .track-number,
.track-item.active .track-number {
  background: var(--accent-primary);
  color: #000;
}

.track-title {
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.track-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.track-title a:hover {
  color: var(--accent-primary);
}

.track-album {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.track-album a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.track-album a:hover {
  color: var(--accent-primary);
}

.track-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: var(--space-4);
}

.track-year {
  font-size: var(--text-sm);
  color: var(--text-muted);
  min-width: 50px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.track-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-primary);
  color: #000;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 20px;
  margin-left: var(--space-2);
  vertical-align: middle;
}

/* ============================================================================
   🎤 LYRICS SECTION — Elegant Reading Experience
   ============================================================================ */
.lyrics-notice {
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.12), rgba(255, 107, 0, 0.08));
  border: 1px solid rgba(255, 171, 0, 0.3);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.lyrics-notice strong {
  color: var(--accent-secondary);
}

.lyrics-selector {
  margin-bottom: var(--space-8);
}

#track-select {
  width: 100%;
  max-width: 500px;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: var(--font-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b3b3b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

#track-select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

#track-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: var(--space-3);
}

.lyrics-display {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  padding: var(--space-8);
  min-height: 400px;
  position: relative;
}

.lyrics-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0.5;
}

.lyrics-block {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.lyrics-block figcaption {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-color);
}

.lyrics-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lyrics-block small {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.lyrics-content {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  line-height: 2.2;
  white-space: pre-wrap;
  color: var(--text-primary);
  margin: var(--space-6) 0;
  padding: var(--space-4) 0;
}

.lyrics-content::first-letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  float: left;
  line-height: 1;
  margin-right: var(--space-2);
  margin-top: var(--space-1);
}

.lyrics-copyright {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.lyrics-placeholder,
.loading,
.error,
.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-12);
  font-size: var(--text-lg);
}

.loading::after {
  content: '…';
  animation: dots 1.5s steps(4, end) infinite;
  display: inline-block;
  width: 20px;
  text-align: left;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* ============================================================================
   ⚖️ DISCLAIMER & FOOTER — Professional & Trustworthy
   ============================================================================ */
.disclaimer-section {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  border-top: 1px solid var(--border-color);
}

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

.disclaimer-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin: var(--space-6) 0 var(--space-3);
  color: var(--text-primary);
}

.disclaimer-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.disclaimer-content ul {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.disclaimer-content li {
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-4);
}

.disclaimer-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.official-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.official-links a:hover {
  background: var(--accent-primary);
  color: #000;
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-12) var(--space-6);
  text-align: center;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: var(--space-6);
}

.footer-brand p {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

.tribute {
  font-style: italic;
  color: var(--accent-primary);
  font-weight: 500;
  font-size: var(--text-lg);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin: var(--space-6) 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-2) 0;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-6);
}

.footer-note a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-note a:hover {
  color: var(--accent-primary);
}

/* ============================================================================
   📱 RESPONSIVE BREAKPOINTS — Mobile Perfection
   ============================================================================ */
@media (max-width: 1024px) {
  :root {
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
  }
  
  .nav-container {
    padding: 0 var(--space-4);
  }
  
  .hero {
    padding: var(--space-16) var(--space-4);
  }
  
  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-2);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  .nav-list a {
    width: 100%;
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--border-radius);
  }
  
  .search-form {
    width: 100%;
    margin-top: var(--space-4);
  }
  
  .search-form input {
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .track-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  
  .track-actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-color);
  }
  
  .lyrics-display {
    padding: var(--space-6);
  }
  
  .lyrics-content {
    font-size: var(--text-sm);
    line-height: 2;
  }
  
  .official-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --text-base: 0.9375rem;
    --space-16: 3rem;
    --space-20: 4rem;
  }
  
  .content-section {
    padding: var(--space-12) var(--space-4);
  }
  
  .section-header h2 {
    font-size: var(--text-3xl);
  }
  
  .albums-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .album-info h3 {
    font-size: var(--text-xl);
  }
  
  .track-title {
    font-size: var(--text-base);
  }
  
  .lyrics-block h3 {
    font-size: var(--text-2xl);
  }
}

/* ============================================================================
   🎬 ANIMATIONS — Subtle & Performant
   ============================================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.fade-in {
  animation: fadeIn var(--transition-base) ease forwards;
}

.slide-up {
  animation: slideUp 0.5s var(--ease-smooth) forwards;
}

/* Staggered animation for lists */
.tracks-list .track-item:nth-child(1) { animation-delay: 0.05s; }
.tracks-list .track-item:nth-child(2) { animation-delay: 0.1s; }
.tracks-list .track-item:nth-child(3) { animation-delay: 0.15s; }
.tracks-list .track-item:nth-child(4) { animation-delay: 0.2s; }
.tracks-list .track-item:nth-child(5) { animation-delay: 0.25s; }

/* ============================================================================
   🖨️ PRINT STYLES — Clean Output
   ============================================================================ */
@media print {
  body {
    background: white;
    color: black;
    font-size: 11pt;
  }
  
  .site-header,
  .hero,
  .btn,
  .search-form,
  .track-actions,
  .footer-nav,
  .scroll-indicator {
    display: none !important;
  }
  
  .content-section {
    padding: 0;
    page-break-inside: avoid;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }
  
  .album-card,
  .track-item {
    break-inside: avoid;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
  }
}

/* ============================================================================
   🎯 UTILITIES — Quick Helpers
   ============================================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }

/* Gradient text utility */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect utility */
.glow {
  box-shadow: var(--shadow-glow);
}

/* Card hover lift */
.lift {
  transition: transform var(--transition-base);
}
.lift:hover {
  transform: translateY(-4px);
  
/* Gradiente destro per indicare scroll */
.nav-list {
  position: relative;
  background: 
    linear-gradient(90deg, var(--bg-secondary) 90%, transparent 100%) right center,
    var(--bg-secondary);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

/* Mostra gradiente solo se scrollabile */
.nav-list.scrollable-right {
  background: 
    linear-gradient(90deg, var(--bg-secondary) 85%, rgba(20,20,20,0.8) 100%) right center,
    var(--bg-secondary);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  
}