/* Reset & Base */
:root {
  --primary: #3DC8DC;
  --primary-dark: #2a9fb5;
  --primary-glow: rgba(61, 200, 220, 0.4);
  --background: #f8f9fa;
  --foreground: #1a1a1a;
  --card-bg: #ffffff;
  --text-muted: #666666;
  --border: #e5e5e5;
  
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px rgba(61, 200, 220, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   ENHANCED BUTTONS WITH GLOW EFFECTS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--primary-glow), 0 0 40px var(--primary-glow);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 30px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-spotify {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-spotify:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--primary-glow), 0 0 40px var(--primary-glow);
}

.icon { width: 20px; height: 20px; }

/* ==========================================
   ICON BUTTONS - NEW COMPACT STYLE
   ========================================== */

.card-actions-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(61, 200, 220, 0.1);
  border: 1px solid rgba(61, 200, 220, 0.2);
  color: var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.icon-btn:active {
  transform: translateY(0);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.icon-btn:hover svg {
  transform: scale(1.1);
}

/* Spotify icon button - green accent */
.icon-btn-spotify {
  background: rgba(30, 215, 96, 0.1);
  border-color: rgba(30, 215, 96, 0.3);
  color: #1DB954;
}

.icon-btn-spotify:hover {
  background: #1DB954;
  color: white;
  border-color: #1DB954;
  box-shadow: 0 8px 24px rgba(30, 215, 96, 0.4);
}

/* Tooltip for icon buttons */
.icon-btn[title] {
  position: relative;
}

.icon-btn[title]::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  padding: 6px 12px;
  background: var(--foreground);
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 100;
}

.icon-btn[title]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#neural-canvas {
  background: linear-gradient(180deg, #050608 0%, #0a0d10 50%, #151a1f 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.4) 85%,
    var(--background) 100%);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  animation: heroFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: none !important;
  padding: 0;
  border: none;
  box-shadow: none;
}

@keyframes heroFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(40px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  opacity: 0.9;
  filter: none !important;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-weight: 300;
}

/* Language Selector */
.lang-selector {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.lang-selector span {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid transparent;
}

.lang-selector span:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.lang-selector span.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  opacity: 0.5;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--primary);
}

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

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */

.portfolio {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--background) 0%, #fff 100%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
}

.view-btn {
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn:hover {
  color: var(--primary);
  background: rgba(61, 200, 220, 0.1);
}

.view-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ==========================================
   RELEASE CARDS
   ========================================== */

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

.list-view .release-card {
  display: block;
  background: transparent;
  padding: 32px;
  border-radius: 24px;
  transition: var(--transition);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.list-view .release-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, transparent 40%, var(--primary) 50%, transparent 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.list-view .release-card:hover::before {
  opacity: 1;
}

.list-view .release-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: var(--shadow-hover);
}

.list-view .card-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.list-view .card-image {
  width: 352px;
  flex-shrink: 0;
  aspect-ratio: 16/9;
}

/* Grid View */
.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.grid-view .release-card {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 24px;
  border-radius: 24px;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.grid-view .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.grid-view .release-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.grid-view .release-card:hover::before {
  transform: scaleX(1);
}

.grid-view .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-view .card-image {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 16px;
  aspect-ratio: 16/9;
}

.grid-view .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.grid-view .card-actions-icons {
  margin-top: auto;
  padding-top: 20px;
}

.grid-view .release-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

/* ==========================================
   SPOTIFY EMBED WITH LAZY LOADING
   ========================================== */

.spotify-embed-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  transition: var(--transition);
  aspect-ratio: 16/9;
  width: 100%;
}

.spotify-embed-wrapper.compact {
  aspect-ratio: 16/9;
}

.release-card:hover .spotify-embed-wrapper {
  box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 30px var(--primary-glow);
}

.spotify-embed-wrapper iframe {
  display: block;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: none;
}

.grid-view .spotify-embed-wrapper iframe {
  height: 100%;
}

/* Spotify Placeholder */
.spotify-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #282828 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}


.spotify-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 215, 96, 0.15);
  color: #1DB954;
  animation: pulse-spotify 2s ease-in-out infinite;
}

.spotify-placeholder-icon svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-spotify {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Card Media Stack (for list view with video + spotify) */
.card-media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* YouTube Preview Card */
.youtube-preview-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.release-card:hover .youtube-preview-card {
  box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 30px var(--primary-glow);
  transform: translateY(-2px);
}

.youtube-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  opacity: 0;
}

.youtube-preview-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.youtube-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  pointer-events: none;
}

.youtube-preview-card:hover .youtube-play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Grid view - YouTube card styling */
.grid-view .youtube-preview-card {
  margin-bottom: 24px;
}

/* YouTube Modal */
.youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.youtube-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--primary-glow);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.youtube-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.youtube-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-glow);
}

.youtube-modal-player {
  width: 100%;
  height: 100%;
  position: relative;
}

.youtube-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.spotify-embed-large {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-bottom: 0;
}

/* Card Common */
.card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.card-content {
  padding-top: 8px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--foreground);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 12px;
}

.read-more-link:hover {
  gap: 8px;
  color: var(--primary-dark);
}

/* Neural Separator */
.neural-separator {
  padding: 20px 0;
  margin: 0 auto;
  max-width: 600px;
}

.separator-canvas {
  width: 100%;
  display: block;
}

/* ==========================================
   TRACK PAGE - FULLY REDESIGNED
   ========================================== */

#track-page {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#track-page.active {
  opacity: 1;
  visibility: visible;
}

/* Compact Header */
.track-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.track-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.track-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.track-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  width: fit-content;
}

.back-btn:hover {
  color: white;
  background: rgba(255,255,255,0.2);
}

.back-btn svg {
  width: 18px;
  height: 18px;
}

/* Header Info */
.track-header-info {
  color: white;
}

.track-header-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.track-header-info p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

/* Header Action Buttons */
.track-header-actions {
  position: absolute;
  top: 24px;
  right: 32px;
  display: flex;
  gap: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.action-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.action-btn svg {
  width: 22px;
  height: 22px;
}

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

.action-btn-spotify:hover {
  background: #1ed760;
  box-shadow: 0 8px 24px rgba(30, 215, 96, 0.4);
}

/* Main Content Area - Two Columns */
.track-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px;
  min-height: calc(100vh - 200px);
}

/* Media Column (Left) */
.track-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Info Column (Right) */
.track-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Media Card */
.media-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.media-card:hover {
  box-shadow: 0 12px 40px rgba(61, 200, 220, 0.15);
  transform: translateY(-4px);
}

.media-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(61, 200, 220, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--foreground);
}

.media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
}

.media-icon svg {
  width: 18px;
  height: 18px;
}

.media-icon-spotify {
  background: #1DB954;
}

.media-icon-youtube {
  background: #ff0000;
  font-size: 14px;
}

.media-external-link {
  margin-left: auto;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition);
}

.media-external-link:hover {
  opacity: 1;
  color: var(--primary);
}

.media-external-link svg {
  width: 18px;
  height: 18px;
}

/* Spotify Embed Full */
.spotify-embed-full {
  background: #000;
}

.spotify-embed-full iframe {
  display: block;
  width: 100%;
}

/* YouTube Embed Full */
.youtube-embed-full {
  background: #000;
}

.youtube-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.youtube-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.youtube-thumb:hover .youtube-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.youtube-player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Info Card */
.info-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(61, 200, 220, 0.12);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(61, 200, 220, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-icon {
  font-size: 1.3rem;
}

.info-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

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

/* Description Text */
.description-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* Lyrics Card */
.info-card-lyrics {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card-lyrics .info-card-body {
  flex: 1;
  padding: 0;
}

.lyrics-scroll {
  max-height: 450px;
  overflow-y: auto;
  padding: 24px !important;
}

.lyrics-scroll::-webkit-scrollbar {
  width: 6px;
}

.lyrics-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.03);
}

.lyrics-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.lyrics-text {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 2;
  color: var(--text-muted);
}

.lyrics-line {
  padding: 4px 16px;
  border-left: 2px solid transparent;
  transition: var(--transition-fast);
  animation: lyricFadeIn 0.3s ease backwards;
}

@keyframes lyricFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lyrics-line:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(61, 200, 220, 0.05);
  padding-left: 24px;
}

.lyrics-line.empty {
  height: 16px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
  .track-main {
    padding: 24px;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .track-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .track-media,
  .track-info {
    gap: 20px;
  }
  
  .list-view .card-inner {
    flex-direction: column;
    gap: 24px;
  }
  
  .list-view .card-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .grid-view {
    grid-template-columns: 1fr;
  }
  
  .track-header {
    height: 180px;
  }
  
  .track-header-content {
    padding: 16px 20px;
  }
  
  .track-header-info h1 {
    font-size: 1.5rem;
  }
  
  .track-header-actions {
    top: 16px;
    right: 20px;
  }
  
  .action-btn {
    width: 42px;
    height: 42px;
  }
  
  .track-main {
    padding: 20px 16px 40px;
  }
  
  .media-card-header,
  .info-card-header {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .media-icon {
    width: 32px;
    height: 32px;
  }
  
  .info-card-body {
    padding: 20px;
  }
  
  .lyrics-scroll {
    padding: 20px !important;
    max-height: 350px;
  }
  
  .card-actions-icons {
    justify-content: center;
  }
  
  .icon-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .list-view .release-card {
    padding: 20px;
  }
  
  .grid-view .release-card {
    padding: 16px;
  }
  
  .track-header {
    height: 160px;
  }
  
  .back-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .back-btn span {
    display: none;
  }
  
  .track-header-info h1 {
    font-size: 1.3rem;
  }
  
  .track-header-info p {
    font-size: 0.85rem;
  }
  
  .description-text {
    font-size: 0.95rem;
  }
  
  .lyrics-text {
    font-size: 0.9rem;
  }
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: linear-gradient(180deg, #0a0d10 0%, #050608 100%);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin: 0;
}

/* ==========================================
   HERO SOCIAL LINKS
   ========================================== */

.hero-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: transparent;
}

.social-spotify:hover {
  background: #1DB954;
  color: white;
  box-shadow: 0 8px 25px rgba(30, 215, 96, 0.5);
}

.social-youtube:hover {
  background: #FF0000;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.social-facebook:hover {
  background: #1877F2;
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

/* Responsive footer */
@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-social {
    gap: 12px;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================
   BUTTON RIPPLE EFFECT
   ========================================== */

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
