/* ==========================================================================
   EMILIANO MANCINI - V3 PROTECTED CLIENT DEMO (INIALIA)
   Design System: Obsidian Dark, Amber Gold & Electric Cyan Mesh
   Protected for https://demo.inialia.com/
   ========================================================================== */

:root {
  --bg-main: #070a10;
  --bg-surface: #0e1422;
  --bg-surface-elevated: #151d30;
  --bg-card: rgba(18, 25, 40, 0.72);
  --bg-glass: rgba(14, 20, 34, 0.78);
  --bg-glass-hover: rgba(24, 34, 56, 0.88);

  --border-light: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(245, 158, 11, 0.35);
  --border-cyan: rgba(6, 182, 212, 0.35);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #fbbf24;

  --accent-amber: #f59e0b;
  --accent-amber-light: #fde68a;
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #67e8f9;
  --accent-rose: #f43f5e;
  --accent-emerald: #10b981;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 26px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 35px rgba(245, 158, 11, 0.25);
  --shadow-cyan: 0 0 30px rgba(6, 182, 212, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1260px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 95px;
  user-select: text;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

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

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

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--accent-amber-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-accent {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.35);
  color: var(--accent-cyan-light);
}

.badge-gold {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.4);
  color: var(--accent-amber-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

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

.gradient-text {
  background: linear-gradient(135deg, #ffffff 15%, var(--accent-amber-light) 65%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
}

/* Ambient Glowing Spheres Background */
.ambient-mesh-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.5;
  animation: floatSphere 18s ease-in-out infinite alternate;
}

.sphere-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.sphere-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  top: 25%;
  right: -150px;
  animation-duration: 22s;
}

.sphere-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-duration: 26s;
}

@keyframes floatSphere {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Vector Flags */
.flag-svg {
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.flag-svg-sm {
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  margin-right: 0.35rem;
  flex-shrink: 0;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.975rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-amber) 0%, #d97706 100%);
  color: #080c14;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
}

.btn-glow {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  color: var(--text-primary);
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
}

.btn-secondary-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-secondary-sm:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent-cyan);
  color: #04131d;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-primary-sm:hover {
  background: var(--accent-cyan-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.4);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 16, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-normal), padding var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(6, 182, 212, 0.25));
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.725rem;
  color: var(--accent-amber);
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-amber);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

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

.nav-btn-cta {
  padding: 0.45rem 1.1rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--accent-amber-light) !important;
}

.nav-btn-cta:hover {
  background: var(--accent-amber);
  color: #0b0f19 !important;
}

.nav-btn-cta::after { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switch-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-pill.active {
  background: var(--accent-amber);
  color: #080c14;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

.lang-pill:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION: CINEMATIC SHOWCASE
   ========================================================================== */
.hero-v2-section {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-cinematic-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 720px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 20%;
  opacity: 0.55;
  filter: contrast(118%) brightness(1.12);
  transition: opacity var(--transition-normal);
}

.hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 35%, rgba(7, 10, 16, 0.15) 0%, rgba(7, 10, 16, 0.65) 50%, var(--bg-main) 85%),
              linear-gradient(90deg, transparent 0%, rgba(7, 10, 16, 0.4) 30%, var(--bg-main) 80%),
              linear-gradient(180deg, transparent 55%, var(--bg-main) 100%);
}

.hero-v2-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-v2-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

a.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
  transition: all var(--transition-fast);
}

a.hero-badge-live:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: #34d399;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-v2-main-content {
  position: relative;
  z-index: 2;
}

.hero-v2-title {
  margin-bottom: 1.35rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.85);
}

.hero-v2-pretitle {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-v2-artist-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.85));
}

.hero-v2-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-v2-lead strong {
  color: var(--text-primary);
}

.hero-v2-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

/* Streaming Hub */
.streaming-hub-box {
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 18, 30, 0.7);
}

.streaming-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.streaming-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.streaming-hub-icon {
  font-size: 1.25rem;
}

.streaming-hub-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.streaming-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent-cyan-light);
  font-weight: 600;
}

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

.soundwave-mini span {
  width: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
  animation: miniWave 1.2s ease-in-out infinite alternate;
}

.soundwave-mini span:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.soundwave-mini span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.soundwave-mini span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.soundwave-mini span:nth-child(4) { height: 14px; animation-delay: 0.4s; }

@keyframes miniWave {
  0% { height: 3px; }
  100% { height: 14px; }
}

.streaming-pills-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.stream-pill:hover {
  transform: translateY(-2px);
  color: #fff;
}

.pill-spotify:hover {
  background: rgba(29, 185, 84, 0.15);
  border-color: #1db954;
  color: #1db954;
  box-shadow: 0 4px 18px rgba(29, 185, 84, 0.35);
}

.pill-youtube:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
}

.pill-instagram:hover {
  background: rgba(236, 72, 153, 0.15);
  border-color: #ec4899;
  color: #ec4899;
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.35);
}

.pill-tiktok:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan-light);
}

.pill-linkedin:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #60a5fa;
}

/* Vinyl Showcase */
.hero-v2-showcase-column {
  perspective: 1000px;
}

.vinyl-master-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: linear-gradient(145deg, rgba(24, 33, 52, 0.85) 0%, rgba(12, 17, 28, 0.95) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.artist-badge-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.artist-mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-amber);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.artist-mini-info {
  display: flex;
  flex-direction: column;
}

.artist-name-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.artist-role-tag {
  font-size: 0.75rem;
  color: var(--accent-amber);
  font-weight: 600;
}

.spotlight-pill {
  padding: 0.35rem 0.85rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-amber-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vinyl-deck-container {
  position: relative;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vinyl-disc-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #0d0f14;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), inset 0 0 0 4px #1c2230;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}

.vinyl-grooves {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    #111520,
    #111520 2px,
    #1a2030 3px,
    #111520 4px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9);
}

.vinyl-label-center {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.vinyl-cover-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vinyl-spindle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.spinning-active {
  animation: spinVinyl 6s linear infinite !important;
}

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

.hero-vinyl-play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-amber) 0%, #d97706 100%);
  color: #070a10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
  z-index: 10;
  transition: transform var(--transition-bounce), background var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-vinyl-play-btn:hover {
  transform: scale(1.12);
  background: #ffffff;
  color: #000;
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.5);
}

.vinyl-equalizer-bars {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 35px;
  z-index: 1;
}

.vinyl-equalizer-bars span {
  width: 4px;
  background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-amber) 100%);
  border-radius: 2px;
  height: 6px;
  transition: height 0.2s ease;
}

.eq-active span:nth-child(1) { animation: eqBounce 0.8s infinite 0.1s; }
.eq-active span:nth-child(2) { animation: eqBounce 0.9s infinite 0.3s; }
.eq-active span:nth-child(3) { animation: eqBounce 0.7s infinite 0.2s; }
.eq-active span:nth-child(4) { animation: eqBounce 1.1s infinite 0.4s; }
.eq-active span:nth-child(5) { animation: eqBounce 0.6s infinite 0.1s; }
.eq-active span:nth-child(6) { animation: eqBounce 1.0s infinite 0.5s; }
.eq-active span:nth-child(7) { animation: eqBounce 0.75s infinite 0.3s; }
.eq-active span:nth-child(8) { animation: eqBounce 0.9s infinite 0.2s; }
.eq-active span:nth-child(9) { animation: eqBounce 0.65s infinite 0.4s; }
.eq-active span:nth-child(10) { animation: eqBounce 0.85s infinite 0.15s; }

@keyframes eqBounce {
  0% { height: 6px; }
  50% { height: 32px; }
  100% { height: 10px; }
}

.showcase-song-info {
  margin-bottom: 1.5rem;
}

.showcase-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.showcase-song-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.showcase-langs-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.showcase-song-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.lyrics-teaser-box {
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.teaser-col {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.825rem;
}

.teaser-lang {
  font-weight: 800;
  color: var(--accent-amber);
  min-width: 24px;
}

.teaser-line {
  color: var(--text-secondary);
  font-style: italic;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.showcase-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-amber);
  line-height: 1.1;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

/* Quote Banner */
.hero-quote-strip {
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.quote-glass-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  background: rgba(14, 20, 32, 0.75);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.quote-symbol {
  font-size: 1.6rem;
  color: var(--accent-amber);
  line-height: 1;
}

.quote-glass-pill p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-amber-light);
}

/* Songs Grid */
.filters-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-chip {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-chip.active {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: #070a10;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

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

.song-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.song-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.15);
}

.song-card.featured-card {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(30, 41, 65, 0.75) 0%, rgba(14, 20, 34, 0.85) 100%);
}

.song-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111622;
}

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

.song-card:hover .song-cover-img {
  transform: scale(1.06);
}

.song-overlay-play {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.song-card:hover .song-overlay-play {
  opacity: 1;
}

.card-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-amber);
  color: #070a10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  transform: scale(0.9);
  transition: transform var(--transition-bounce), background var(--transition-fast);
}

.song-card:hover .card-play-btn {
  transform: scale(1);
}

.card-play-btn:hover {
  background: #ffffff;
  color: #000;
}

.song-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 0.4rem;
}

.badge-pill {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.badge-es { background: rgba(220, 38, 38, 0.85); color: #fff; }
.badge-it { background: rgba(16, 185, 129, 0.85); color: #fff; }
.badge-star { background: rgba(245, 158, 11, 0.95); color: #070a10; }

.song-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.song-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.song-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.song-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.song-tag {
  font-size: 0.725rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

.song-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.song-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  gap: 0.5rem;
}

.btn-open-lyrics {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-open-lyrics:hover {
  color: var(--accent-amber-light);
  background: rgba(245, 158, 11, 0.1);
}

.audio-versions-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Timeline */
.contests-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0c111c 50%, var(--bg-main) 100%);
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-amber) 0%, var(--accent-cyan) 50%, rgba(255,255,255,0.1) 100%);
}

.timeline-item {
  position: relative;
  padding: 2rem 2.25rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 2.25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 3px solid var(--accent-amber);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  z-index: 2;
}

.timeline-status-badge {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-active { background: rgba(6, 182, 212, 0.15); color: #38bdf8; border: 1px solid rgba(6, 182, 212, 0.3); }

.timeline-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-amber-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.6;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.timeline-meta .tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.timeline-action {
  margin-top: 0.5rem;
}

/* Bio Section */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.bio-card {
  padding: 1.5rem;
  position: relative;
}

.bio-portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.bio-badge-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(14, 20, 32, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glow);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon {
  font-size: 1.5rem;
}

.bio-p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.mentors-block, .influences-block {
  margin-bottom: 1.75rem;
}

.mentors-title, .influences-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.mentor-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-primary);
}

.mentor-tag strong {
  color: var(--accent-amber);
}

.mentor-tag span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.influences-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.workflow-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent-cyan);
}

.workflow-icon {
  font-size: 1.75rem;
}

.workflow-body h4 {
  font-size: 1rem;
  color: var(--accent-cyan-light);
  margin-bottom: 0.25rem;
}

.workflow-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

/* FAQ */
.faq-container {
  max-width: 860px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-amber);
  transition: transform var(--transition-fast);
}

.faq-toggle-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-toggle-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-card[open] .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-card[open] {
  border-color: var(--border-glow);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -0.25rem;
  padding-top: 1rem;
}

/* Contact */
.contact-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  border: 1px solid var(--border-glow);
}

.contact-form {
  margin-top: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(7, 10, 16, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
  background: rgba(14, 20, 32, 0.95);
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-feedback {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
}

.form-feedback.success { color: #34d399; }
.form-feedback.error { color: #f87171; }

/* Floating Player */
.audio-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(8, 12, 19, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-light);
  z-index: 999;
  display: flex;
  align-items: center;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.player-container {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  align-items: center;
  gap: 1.5rem;
}

.player-track-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow: hidden;
}

.player-cover {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.player-titles {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.player-track-title {
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.player-track-artist {
  font-size: 0.75rem;
  color: var(--accent-amber);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.player-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-btn {
  color: var(--text-secondary);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.player-btn:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.player-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-amber);
  color: #070a10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-bounce), background var(--transition-fast);
}

.player-play-btn:hover {
  transform: scale(1.1);
  background: var(--accent-amber-light);
}

.player-progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.player-time {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--text-muted);
  min-width: 32px;
}

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

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-amber) 100%);
  border-radius: var(--radius-full);
}

.player-extra-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.player-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.player-action-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.modal-card {
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  background: #0f1524;
  border: 1px solid var(--border-glow);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(245, 158, 11, 0.18);
  transform: scale(0.95);
  transition: transform var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-cover-wrap {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

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

.modal-title-wrap {
  display: flex;
  flex-direction: column;
}

.modal-badges-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.modal-song-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.modal-song-subtitle {
  font-size: 0.85rem;
  color: var(--accent-amber-light);
}

.modal-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
}

.modal-tab {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.modal-tab.active {
  background: var(--accent-amber);
  color: #080c14;
}

.modal-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 0.5rem;
  margin-bottom: 1.5rem;
}

.parallel-lyrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.lyrics-column-header {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-amber);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.lyrics-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-primary);
  white-space: pre-line;
}

.lyrics-text.translated {
  color: var(--text-secondary);
}

.context-story-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.context-story-box strong {
  color: var(--text-primary);
}

.context-story-box blockquote {
  border-left: 3px solid var(--accent-amber);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--text-primary);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Footer */
.site-footer {
  background: #05070d;
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  border-radius: 50%;
  border: 1px solid var(--border-glow);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--accent-amber);
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.footer-links a:hover {
  color: var(--accent-amber);
  transform: translateX(4px);
}

.footer-domains-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.domain-badge.active {
  border-color: var(--accent-amber);
  color: var(--accent-amber-light);
  background: rgba(245, 158, 11, 0.08);
}

.domain-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .hero-v2-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-v2-showcase-column {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

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

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

  .player-container {
    grid-template-columns: 180px 1fr 100px;
    gap: 1rem;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(8, 12, 19, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    z-index: 998;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .parallel-lyrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-item {
    padding: 1.5rem 1.25rem 1.5rem 3.5rem;
  }

  .timeline-container::before {
    left: 18px;
  }

  .timeline-item::before {
    left: 10px;
  }

  .player-container {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .player-extra-actions {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-v2-cta-grid {
    flex-direction: column;
    width: 100%;
  }

  .hero-v2-cta-grid .btn {
    width: 100%;
  }

  .vinyl-master-card {
    padding: 1.25rem;
  }

  .vinyl-disc-wrapper {
    width: 180px;
    height: 180px;
  }

  .vinyl-label-center {
    width: 72px;
    height: 72px;
  }

  .quote-glass-pill {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-lg);
  }
}
