/* ============================================================
   SOLUCCI MUSIC — Main Stylesheet v1.0
   ============================================================ */

/* 1. VARIABLES
   ============================================================ */
:root {
  --bg:           #090909;
  --bg-2:         #0f0f0f;
  --bg-card:      #141414;
  --bg-card-h:    #1b1b1b;
  --bg-player:    #0d0d0d;

  --purple:       #8b00ff;
  --purple-b:     #a020f0;
  --purple-d:     #5c00aa;
  --purple-glow:  rgba(139, 0, 255, 0.35);
  --purple-sub:   rgba(139, 0, 255, 0.08);
  --purple-sub2:  rgba(139, 0, 255, 0.15);

  --white:  #f0f0f0;
  --g1:     #cccccc;
  --g2:     #999999;
  --g3:     #666666;
  --g4:     #333333;
  --g5:     #1e1e1e;

  --border:   rgba(255,255,255,.07);
  --border-h: rgba(255,255,255,.13);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --ff-mono:    'Space Mono', monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --ease: 200ms cubic-bezier(0.4,0,0.2,1);

  --header-h: 64px;
  --player-h: 76px;
}

/* 2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: calc(var(--player-h) + 24px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

/* 3. TYPOGRAPHY
   ============================================================ */
.display    { font-family: var(--ff-display); line-height: 1; letter-spacing: .02em; }
.mono       { font-family: var(--ff-mono); }

/* 4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: 64px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .03em;
}
.section-link {
  font-size: .85rem;
  color: var(--g2);
  transition: color var(--ease);
  white-space: nowrap;
}
.section-link:hover { color: var(--purple-b); }

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 13px 26px; font-size: 1rem; }
.btn--sm { padding: 6px 14px; font-size: .8rem; }

.btn--purple {
  background: var(--purple);
  color: #fff;
}
.btn--purple:hover {
  background: var(--purple-b);
  box-shadow: 0 0 24px var(--purple-glow);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-h);
  color: var(--g1);
}
.btn--ghost:hover {
  border-color: var(--purple);
  color: #fff;
  background: var(--purple-sub);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--g2);
  transition: color var(--ease), background var(--ease);
}
.icon-btn:hover { color: var(--white); background: var(--g5); }

/* 6. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(9,9,9,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.6);
}

.header-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--purple);
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: .05em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--purple-glow);
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: .08em;
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: var(--purple-b);
}

/* Nav */
.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--g2);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: var(--g5); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hamburger */
.nav-toggle { display: none; }
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--g1);
  position: relative;
  transition: background var(--ease);
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--g1);
  position: absolute;
  border-radius: 2px;
  transition: transform var(--ease);
}
.hamburger::before { top: -6px; }
.hamburger::after  { bottom: -6px; }
.nav-toggle.is-open .hamburger { background: transparent; }
.nav-toggle.is-open .hamburger::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.is-open .hamburger::after  { transform: rotate(-45deg) translate(4px, -4px); }

/* Search bar */
.search-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
  opacity: 0;
}
.search-bar.is-open { max-height: 80px; opacity: 1; }
.search-bar form {
  max-width: 1280px;
  margin-inline: auto;
  padding: 12px 20px;
  display: flex;
  gap: 10px;
}
.search-bar input {
  flex: 1;
  background: var(--g5);
  border: 1px solid var(--border-h);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  color: var(--white);
  outline: none;
  transition: border-color var(--ease);
}
.search-bar input:focus { border-color: var(--purple); }
.search-bar input::placeholder { color: var(--g3); }

/* 7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,0,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(139,0,255,.1) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b00ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.hero-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple-b);
  border: 1px solid var(--purple-sub2);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--purple-sub);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: .9;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: normal;
  color: var(--purple-b);
  text-shadow: 0 0 60px var(--purple-glow);
}
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  color: var(--g2);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--g3);
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll-dot {
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* 8. SONG GRID + CARDS
   ============================================================ */
.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.song-grid--sm { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

.song-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.song-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}
.song-card.is-active,
.song-card.is-playing {
  border-color: var(--purple);
  box-shadow: 0 0 24px var(--purple-glow);
}

.song-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
}
.song-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.song-card:hover .song-cover img { transform: scale(1.05); }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity var(--ease);
  text-decoration: none;
}
.song-card:hover .play-overlay { opacity: 1; }

.play-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 0 20px var(--purple-glow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.play-overlay:hover .play-icon { transform: scale(1.08); }

.song-info {
  padding: 14px 16px 16px;
}
.song-title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-title a:hover { color: var(--purple-b); }
.song-artist {
  font-size: .82rem;
  color: var(--g2);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-artist a:hover { color: var(--white); }
.song-meta {
  display: flex;
  gap: 8px;
  font-size: .75rem;
  color: var(--g3);
  font-family: var(--ff-mono);
}

/* 9. SONG ROW (list view)
   ============================================================ */
.song-list { display: flex; flex-direction: column; gap: 2px; }
.song-row {
  display: grid;
  grid-template-columns: 36px 48px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease);
  cursor: default;
}
.song-row:hover { background: var(--g5); border-color: var(--border); }
.song-row.is-active,
.song-row.is-playing { background: var(--purple-sub); border-color: var(--purple); }

.song-row-num {
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: var(--g3);
  text-align: center;
}
.song-row-cover {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.song-row-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.song-row-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  color: #fff;
  opacity: 0;
  transition: opacity var(--ease);
}
.song-row:hover .song-row-play { opacity: 1; }
.song-row.is-playing .song-row-play { opacity: 1; background: rgba(139,0,255,.4); }
.song-row.is-playing .icon-play  { display: none; }
.song-row:not(.is-playing) .icon-pause { display: none; }

.song-row-info { min-width: 0; }
.song-row-title {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-row-title:hover { color: var(--purple-b); }
.song-row-artist {
  font-size: .8rem;
  color: var(--g2);
  display: block;
}
.song-row-artist:hover { color: var(--white); }
.song-row-album {
  font-size: .8rem;
  color: var(--g3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.song-row-duration {
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: var(--g3);
  white-space: nowrap;
}

/* 10. ARTIST GRID + CARDS
   ============================================================ */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.artist-grid--full { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.artist-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.artist-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.artist-card-link { display: block; text-decoration: none; color: inherit; }

.artist-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--g5);
}
.artist-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.artist-card:hover .artist-photo img { transform: scale(1.05); }

.artist-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--purple);
  background: linear-gradient(135deg, var(--g5), var(--bg-2));
}

.artist-info { padding: 16px; }
.artist-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.artist-card:hover .artist-name { color: var(--purple-b); }
.artist-genre {
  font-size: .78rem;
  color: var(--purple-b);
  font-family: var(--ff-mono);
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.artist-count { font-size: .8rem; color: var(--g3); }

/* 11. STICKY PLAYER
   ============================================================ */
.sm-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-h);
  background: var(--bg-player);
  border-top: 1px solid var(--border);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sm-player.is-visible { transform: translateY(0); }

.player-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Song info */
.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.player-cover-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--g5);
}
.player-cover { width: 100%; height: 100%; object-fit: cover; }
.player-meta { min-width: 0; }
.player-title {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  display: block;
  font-size: .78rem;
  color: var(--g2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--g1);
  transition: color var(--ease), background var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.player-btn:hover { color: var(--white); background: var(--g5); }

.player-play-btn {
  width: 46px;
  height: 46px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 20px var(--purple-glow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.player-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px var(--purple-glow);
  background: var(--purple-b);
}

/* Hide pause icon by default, show when playing */
.player-play-btn .icon-pause { display: none; }
.player-play-btn.is-playing .icon-play  { display: none; }
.player-play-btn.is-playing .icon-pause { display: block; }

/* Progress */
.player-progress-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  max-width: 340px;
}
.player-current-time,
.player-total-time {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--g3);
  white-space: nowrap;
  min-width: 34px;
}
.player-total-time { text-align: right; }

.player-progress-bar {
  flex: 1;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.player-progress-track {
  width: 100%;
  height: 3px;
  background: var(--g4);
  border-radius: var(--r-pill);
  position: relative;
  overflow: visible;
  transition: height var(--ease);
}
.player-progress-bar:hover .player-progress-track { height: 5px; }

.player-progress-fill {
  height: 100%;
  background: var(--purple);
  border-radius: var(--r-pill);
  width: 0%;
  transition: width .1s linear;
  position: relative;
}
.player-progress-handle {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--ease);
}
.player-progress-bar:hover .player-progress-handle { transform: translateY(-50%) scale(1); }

/* Extras */
.player-extras {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.player-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: var(--g4);
  border-radius: var(--r-pill);
  outline: none;
  cursor: pointer;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--purple);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--ease);
}
.player-volume::-webkit-slider-thumb:hover { transform: scale(1.3); }
.player-volume::-moz-range-thumb {
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.player-share-btn { color: var(--g3); }
.player-share-btn:hover { color: var(--purple-b); background: var(--purple-sub); }

/* 12. SONG PAGE
   ============================================================ */
.song-page { padding-top: 48px; }

.song-page-inner {
  max-width: 900px;
  margin-inline: auto;
}

.song-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.song-hero-cover {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.song-hero-cover img { width: 100%; height: auto; display: block; }
.song-hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-sub), transparent);
  pointer-events: none;
}

.song-hero-album {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--g3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.song-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.song-hero-artist {
  font-size: 1rem;
  color: var(--g2);
  margin-bottom: 28px;
}
.song-hero-artist a:hover { color: var(--purple-b); }

.song-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.song-hero-play .icon-pause { display: none; }
.song-hero-play.is-playing .icon-play  { display: none; }
.song-hero-play.is-playing .icon-pause { display: block; }
.song-hero-play.is-playing .play-label::before { content: 'Pausar'; position: absolute; }

.song-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.song-hero-duration,
.song-play-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--g3);
}
.song-play-count svg { color: var(--purple); }

/* Lyrics */
.lyrics-section { margin-bottom: 64px; }
.lyrics-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  letter-spacing: .04em;
  margin-bottom: 24px;
  color: var(--g1);
}
.lyrics-title svg { color: var(--purple); }

.lyrics-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.lyrics-body::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--purple-sub2);
  line-height: 1;
  pointer-events: none;
}
.lyrics-body pre {
  font-family: var(--ff-body);
  font-size: .95rem;
  line-height: 1.9;
  color: var(--g1);
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
  z-index: 1;
}

/* Related section */
.related-section { margin-bottom: 48px; }
.related-section .section-title { margin-bottom: 24px; }

/* 13. ARTIST PAGE
   ============================================================ */
.artist-banner {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, var(--g5), var(--bg-2));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.artist-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,1) 0%, rgba(9,9,9,.5) 50%, rgba(9,9,9,.2) 100%);
}
.artist-banner-content {
  position: relative;
  z-index: 1;
  padding-block: 40px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
}

.artist-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 3px solid var(--purple);
  box-shadow: 0 0 32px var(--purple-glow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g5);
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-avatar span {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--purple-b);
}

.artist-banner-info { min-width: 0; }
.artist-genre-tag {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-b);
  margin-bottom: 6px;
}
.artist-page-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .04em;
  line-height: .9;
  margin-bottom: 8px;
}
.artist-song-count { font-size: .85rem; color: var(--g3); margin-bottom: 16px; }

.artist-socials {
  display: flex;
  gap: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--g2);
  transition: all var(--ease);
}
.social-link:hover {
  background: var(--purple-sub2);
  border-color: var(--purple);
  color: var(--purple-b);
}

.artist-bio {
  font-size: .95rem;
  color: var(--g1);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 48px;
  border-left: 2px solid var(--purple);
  padding-left: 20px;
}

/* 14. ARCHIVE PAGES
   ============================================================ */
.archive-page { }
.archive-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(139,0,255,.07), transparent);
}
.archive-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.archive-sub { color: var(--g2); font-size: 1rem; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tag {
  padding: 6px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: .82rem;
  color: var(--g2);
  background: transparent;
  transition: all var(--ease);
  cursor: pointer;
}
.filter-tag:hover { border-color: var(--border-h); color: var(--white); background: var(--g5); }
.filter-tag.is-active { background: var(--purple); border-color: var(--purple); color: #fff; }

/* 15. PAGINATION
   ============================================================ */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; align-items: center; }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--g2);
  font-size: .88rem;
  transition: all var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--border-h); color: var(--white); background: var(--g5); }
.pagination .page-numbers.current { background: var(--purple); border-color: var(--purple); color: #fff; }
.pagination .prev, .pagination .next { width: auto; padding: 0 14px; }

/* 16. FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-tagline { font-size: .82rem; color: var(--g3); font-family: var(--ff-mono); }
.footer-logo .logo-mark { box-shadow: none; }
.footer-nav { display: flex; gap: 20px; margin-left: auto; }
.footer-nav a { font-size: .85rem; color: var(--g3); transition: color var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-copy { width: 100%; font-size: .8rem; color: var(--g3); text-align: center; }

/* 17. MISC / UTILITIES
   ============================================================ */
.empty-state {
  text-align: center;
  color: var(--g3);
  padding: 64px 20px;
  font-size: .95rem;
}

/* Toast */
.sm-toast {
  position: fixed;
  bottom: calc(var(--player-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--g4);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
  border: 1px solid var(--border-h);
  white-space: nowrap;
}
.sm-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Page content */
.page-content { max-width: 760px; margin-inline: auto; }
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.entry-content { color: var(--g1); line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin: 28px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--purple-b); text-decoration: underline; }

/* 18. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .song-hero {
    grid-template-columns: 200px 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; gap: 2px; }
  .nav-link { padding: 10px 14px; }

  .song-hero { grid-template-columns: 1fr; }
  .song-hero-cover { max-width: 280px; margin-inline: auto; }

  .player-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .player-extras { display: none; }
  .player-progress-wrap { min-width: 120px; }
  .player-volume-wrap { display: none; }

  .artist-banner-content { flex-direction: column; align-items: flex-start; gap: 20px; }

  .song-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav { margin-left: 0; }

  .song-row { grid-template-columns: 28px 44px 1fr auto; }
  .song-row-album { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 18vw, 5rem); }
  .song-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* 19. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--g4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-d); }

/* 20. SELECTION
   ============================================================ */
::selection { background: var(--purple-glow); color: #fff; }
