/* ============================================
   BUKA - R&B Female Vocalist Official Site
   Design Language: Cinematic & Luxury R&B
   ============================================ */

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

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #F0E6FF;
  background: #160F26;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideDown { from { transform: translate(-50%, -100%); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes breathe { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
@keyframes scrollArrow { 0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.5; } 50% { transform: translateY(10px) rotate(45deg); opacity: 1; } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 20px rgba(139,92,246,0.2); } 50% { box-shadow: 0 0 40px rgba(139,92,246,0.4), 0 0 80px rgba(212,175,55,0.15); } }
@keyframes borderGlow { 0%, 100% { border-color: rgba(139,92,246,0.3); } 50% { border-color: rgba(212,175,55,0.5); } }
@keyframes textGlow { 0%, 100% { text-shadow: 0 0 10px rgba(212,175,55,0.3); } 50% { text-shadow: 0 0 20px rgba(212,175,55,0.6), 0 0 40px rgba(212,175,55,0.2); } }

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

/* ============================================
   Header - Centered Floating Glass Nav
   ============================================ */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: slideDown 1s ease-out;
  width: auto;
  max-width: 90vw;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 2rem;
  background: rgba(22, 15, 38, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: 50px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo h1 {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Archivo Black', sans-serif;
  background: linear-gradient(135deg, #D4AF37, #F5D280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-item {
  text-decoration: none;
  color: rgba(196, 181, 217, 0.7);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: lowercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-item::before { display: none; }

.nav-item:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

/* ============================================
   Hero - Cinematic Full-Screen
   ============================================ */
.hero {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #160F26;
}

/* Animated mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(232, 180, 200, 0.06) 0%, transparent 40%);
  animation: breathe 8s ease-in-out infinite;
}

/* Film grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particles::before { display: none; }
.hero-particles::after { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Hero Logo */
.hero-logo { margin-bottom: 2.5rem; }

.hero-logo-image {
  width: 300px;
  height: auto;
  border-radius: 24px;
  animation: fadeIn 2.5s ease-out 0.3s both;
  filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.35));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.hero-logo-image:hover {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 0 80px rgba(139, 92, 246, 0.5)) drop-shadow(0 0 120px rgba(212, 175, 55, 0.15));
}

/* Hero CTA */
.hero-release-button {
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  text-decoration: none;
  color: #0A0612;
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #F5D280 50%, #D4AF37 100%);
  background-size: 200% 200%;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  animation: fadeInUp 1.5s ease-out 1.2s both, gradientShift 6s ease-in-out infinite;
  letter-spacing: 0.5px;
}

.hero-release-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  color: #0A0612;
  text-decoration: none;
}

/* Scroll Guide */
.scroll-guide {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: fadeIn 1s ease-out 3s both;
}

.scroll-text {
  color: rgba(196, 181, 217, 0.4);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1.5px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollArrow 2.5s ease-in-out infinite;
}

/* ============================================
   Section Base
   ============================================ */
section {
  padding: 6rem 0;
  position: relative;
  scroll-margin-top: 80px;
}

#links { scroll-margin-top: 0; }

section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: left;
  margin-bottom: 3rem;
  color: #D4AF37;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  padding-left: 28px;
}

section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #D4AF37, #8B5CF6);
  border-radius: 2px;
}

section h2::after { display: none; }

/* ============================================
   Music Players - Horizontal Strip Layout
   ============================================ */
.music-players-section {
  background: linear-gradient(180deg, #1C1530 0%, #231A3A 40%, #281F42 60%, #231A3A 100%);
  position: relative;
}

.music-players-section::before { display: none; }

.players-description {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(196, 181, 217, 0.7);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 28px;
}

.platform-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding-left: 24px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: rgba(196, 181, 217, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  flex-direction: row;
  min-width: auto;
  backdrop-filter: none;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.platform-btn i {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.platform-btn:hover {
  border-color: rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
  transform: none;
  box-shadow: none;
}

.platform-btn.active {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  border-width: 1px;
  box-shadow: none;
}

.player-container {
  max-width: 100%;
  margin: 0;
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0 24px;
  backdrop-filter: none;
  border: none;
}

.player-embed { width: 100%; }

/* Platform Direct Container - Minimal Card */
.platform-direct-container {
  background: rgba(17, 13, 30, 0.6);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: none;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
}

.platform-header { flex-shrink: 0; }

.platform-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.platform-logo i {
  font-size: 2.5rem;
  color: #F0E6FF;
  animation: none;
  filter: none;
}

.platform-logo span {
  font-size: 2rem;
  font-weight: 700;
  color: #F0E6FF;
  letter-spacing: 0;
}

.platform-logo.spotify-color i { color: #1db954; }
.platform-logo.line-color i { color: #06c755; }
.platform-logo.youtube-color i { color: #ff0000; }
.platform-logo.amazon-color i { color: #ff9900; }
.platform-logo.others-color i { color: #8B5CF6; }

.platform-link { flex-shrink: 0; }

.platform-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #D4AF37;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 1px solid #D4AF37;
  position: relative;
  overflow: hidden;
  min-width: auto;
}

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

.platform-open-btn:hover::before { left: 100%; }

.platform-open-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.platform-open-btn i { font-size: 0.9rem; }

.player-note {
  text-align: left;
  margin-bottom: 2rem;
  background: transparent;
  padding: 0 24px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  max-width: none;
}

.player-note p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(196, 181, 217, 0.5);
  line-height: 1.6;
}

.player-note i {
  margin-right: 8px;
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.5);
}

/* ============================================
   Songs & Lyrics - Dark Elegant
   ============================================ */
.lyrics-section {
  background: linear-gradient(180deg, #180F2A 0%, #1E1434 50%, #180F2A 100%);
}

.search-sort-controls {
  margin: 0 0 3rem 0;
  max-width: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 24px;
}

.search-container {
  position: relative;
  width: 280px;
  max-width: none;
}

.search-input {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  background: rgba(17, 13, 30, 0.6);
  color: #F0E6FF;
  transition: all 0.3s ease;
  font-family: inherit;
}

.search-input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.search-input::placeholder {
  color: rgba(122, 107, 143, 0.6);
  font-style: normal;
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 92, 246, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: #D4AF37;
}

.sort-container {
  display: flex;
  gap: 6px;
}

.sort-btn {
  padding: 8px 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: transparent;
  color: rgba(196, 181, 217, 0.6);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.sort-btn:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

.sort-btn.sort-active {
  background: rgba(139, 92, 246, 0.15);
  color: #D4AF37;
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: none;
}

.search-result-count {
  font-size: 0.8rem;
  color: rgba(196, 181, 217, 0.5);
  margin-top: 0;
}

.search-highlight {
  background: #D4AF37;
  color: #0A0612;
  padding: 1px 4px;
  border-radius: 2px;
  font-weight: 600;
}

/* Song Slider - Tall Vertical Cards with Glassmorphism */
.song-slider {
  position: relative;
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 800px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-card {
  width: 320px;
  height: 380px;
  background: linear-gradient(160deg, rgba(26, 18, 50, 0.8) 0%, rgba(15, 10, 30, 0.9) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.15);
  position: absolute;
  top: 50%;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  animation: borderGlow 4s ease-in-out infinite;
  padding: 2rem;
}

.slider-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.slider-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #F0E6FF;
  letter-spacing: 0.5px;
}

.song-subtitle {
  font-size: 0.9rem;
  color: rgba(212, 175, 55, 0.7);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 6, 18, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 1.4rem;
  color: #D4AF37;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-btn:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-50%);
}

/* Stream Link - Minimal */
.stream-link {
  display: inline-block;
  background: transparent;
  color: #D4AF37;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #D4AF37;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stream-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.stream-link:hover::before { left: 100%; }

.stream-link:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: none;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.15);
}

.stream-link.small {
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 5px;
}

.stream-link.small.secondary {
  background: transparent;
  color: rgba(196, 181, 217, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.stream-link.small.secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #F0E6FF;
  border-color: rgba(139, 92, 246, 0.5);
  transform: none;
}

.lyric-btn {
  display: inline-block;
  background: transparent;
  color: rgba(196, 181, 217, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lyric-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #F0E6FF;
  border-color: rgba(139, 92, 246, 0.5);
}

/* Lyrics Display */
.lyrics-display {
  margin: 3rem 0;
  padding: 2.5rem;
  background: rgba(17, 13, 30, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  scroll-margin-top: 100px;
}

.lyrics-song-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 2rem;
  color: #D4AF37;
  animation: textGlow 4s ease-in-out infinite;
}

.lyrics-scroll-container {
  max-width: 560px;
  margin: 0 auto;
  max-height: 480px;
  overflow-y: auto;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: rgba(10, 6, 18, 0.4);
}

.lyrics-scroll-container::-webkit-scrollbar { width: 4px; }
.lyrics-scroll-container::-webkit-scrollbar-track { background: transparent; }
.lyrics-scroll-container::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.3); border-radius: 2px; }
.lyrics-scroll-container::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

.lyrics-content {
  line-height: 2.4;
  font-size: 1rem;
  text-align: center;
}

.lyrics-content p {
  margin-bottom: 0.2rem;
  color: rgba(196, 181, 217, 0.7);
  transition: all 0.3s ease;
}

.lyrics-content p:hover {
  color: #F0E6FF;
}

.close-lyrics-btn {
  display: inline-block;
  background: transparent;
  color: #D4AF37;
  padding: 10px 28px;
  border: 1px solid #D4AF37;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.close-lyrics-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* ============================================
   Album Section - Full-Width Showcase
   ============================================ */
.album-section {
  background: linear-gradient(180deg, #1E1636 0%, #261C42 40%, #2C2050 50%, #261C42 60%, #1E1636 100%);
  position: relative;
}

.album-section::before { display: none; }

.albums-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.album-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: none;
  width: 100%;
  text-align: left;
  animation: fadeInLeft 1s ease-out 0.3s both;
  padding: 2.5rem;
  background: rgba(17, 13, 30, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  transition: border-color 0.3s ease;
}

.album-info:hover {
  border-color: rgba(212, 175, 55, 0.15);
}

.album-artwork { text-align: center; }
.album-artwork-container { position: relative; display: inline-block; }

.album-artwork-image {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.album-artwork-image:hover {
  transform: scale(1.05);
}

.placeholder-artwork {
  width: 240px;
  height: 240px;
  background: linear-gradient(160deg, #1E1433 0%, #0F0A1A 50%, #2D1B4E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.1);
  animation: textGlow 6s ease-in-out infinite;
}

.placeholder-artwork:hover { transform: scale(1.05); }

.album-details h3 {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.8rem;
  color: #F0E6FF;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.track-count {
  font-size: 1rem;
  color: rgba(196, 181, 217, 0.6);
  margin-bottom: 0.4rem;
}

.release-date {
  font-size: 1.1rem;
  font-weight: 500;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ============================================
   Links Section - Horizontal Minimal
   ============================================ */
.links-section {
  background: linear-gradient(180deg, #1C1530 0%, #241A3E 50%, #1C1530 100%);
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.links-section::before { display: none; }

.links-section h2 { color: #D4AF37; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: none;
  margin: 0;
  animation: fadeInUp 1s ease-out 0.3s both;
  padding-left: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: rgba(196, 181, 217, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 0.9rem;
  flex-direction: row;
  min-width: auto;
  min-height: auto;
  backdrop-filter: none;
  overflow: hidden;
}

.social-link i {
  font-size: 1.2rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
  transition: left 0.5s;
}

.social-link:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.04);
}

.social-link:hover::before { left: 100%; }
.social-link:hover i { transform: none; color: #D4AF37; }

.social-link.tiktok:hover { border-color: rgba(255, 0, 80, 0.3); color: #ff0050; }
.social-link.tiktok:hover i { color: #ff0050; }
.social-link.youtube:hover { border-color: rgba(255, 0, 0, 0.3); color: #ff0000; }
.social-link.youtube:hover i { color: #ff0000; }
.social-link.spotify:hover { border-color: rgba(30, 215, 96, 0.3); color: #1ed760; }
.social-link.spotify:hover i { color: #1ed760; }
.social-link.apple-music:hover { border-color: rgba(250, 250, 250, 0.3); color: #fafafa; }
.social-link.apple-music:hover i { color: #fafafa; }
.social-link.instagram:hover { border-color: rgba(225, 48, 108, 0.3); color: #e1306c; }
.social-link.instagram:hover i { color: #e1306c; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: #160F26;
  color: rgba(196, 181, 217, 0.4);
  text-align: center;
  padding: 3rem 0;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
  header {
    top: 10px;
    width: 95vw;
    max-width: 95vw;
  }

  nav {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.8rem 0.5rem;
    border-radius: 20px;
  }

  .nav-links {
    gap: 0.4rem 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-logo-image { width: 220px; }

  section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .platform-selector { padding-left: 0; justify-content: center; }
  .players-description { padding-left: 0; text-align: center; }
  .player-note { padding: 0; text-align: center; }
  .player-container { padding: 0; }
  .search-sort-controls { padding-left: 0; flex-direction: column; align-items: stretch; }
  .search-container { width: 100%; }
  .sort-container { justify-content: center; }
  .social-links { padding-left: 0; justify-content: center; }

  section h2 { text-align: center; padding-left: 0; }
  section h2::before { display: none; }

  .platform-direct-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .platform-logo i { font-size: 2rem; }
  .platform-logo span { font-size: 1.3rem; }

  .album-info {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .placeholder-artwork,
  .album-artwork-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .album-details h3 { font-size: 1.6rem; }

  .song-slider {
    height: 350px;
    margin: 0 auto 2rem;
  }

  .slider-card {
    width: 270px;
    height: 320px;
    padding: 1.5rem;
  }

  .slider-card h3 { font-size: 1.3rem; }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lyrics-display {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .lyrics-song-title { font-size: 1.3rem; }

  .lyrics-scroll-container {
    max-height: calc(70vh - 12rem);
    padding: 16px;
  }

  .social-link {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-logo-image { width: 180px; }
  .logo h1 { font-size: 1.1rem; letter-spacing: 3px; }

  .hero-release-button {
    font-size: 0.9rem;
    padding: 14px 24px;
  }

  .platform-selector {
    gap: 6px;
  }

  .platform-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .platform-btn i { font-size: 1rem; }

  .slider-card {
    width: 240px;
    height: 290px;
  }

  .card-actions {
    flex-direction: column;
    gap: 6px;
  }

  .placeholder-artwork,
  .album-artwork-image {
    width: 180px;
    height: 180px;
  }

  .album-details h3 { font-size: 1.4rem; }

  .close-lyrics-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* Desktop Large */
@media (min-width: 1024px) {
  .albums-container {
    gap: 2rem;
  }
}
