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

:root {
  --primary-color: #0a0e1a;
  --secondary-color: #1a1f2e;
  --accent-color: #4a90e2;
  --accent-glow: #6ba3ff;
  --text-color: #e0e6ed;
  --text-light: #a8b2c1;
  --text-muted: #6b7280;
  --bg-color: #050810;
  --card-bg: #0f1419;
  --border-color: #1e2530;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 8px 32px rgba(74, 144, 226, 0.2);
  --glow: 0 0 20px rgba(74, 144, 226, 0.3);
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Animated Canvas Background */
#cosmic-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ensure content is above canvas */
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-main {
  position: relative;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-glow);
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Zoomable images */
img.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

img.zoomable:hover {
  opacity: 0.95;
}

/* Zoomed overlay */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.zoom-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.zoom-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.zoom-overlay.active img {
  transform: scale(1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
  color: var(--text-color);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
  width: 100%;
  max-width: 100%;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-title a {
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.site-title a:hover {
  color: var(--accent-glow);
  text-shadow: 0 0 15px rgba(74, 144, 226, 0.6);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  position: fixed;
  right: 20px;
  top: 1.5rem;
}

.hamburger span {
  width: 2rem;
  height: 0.2rem;
  background: var(--text-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  transform-origin: center;
}

.hamburger:hover span {
  background: var(--accent-glow);
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.main-nav a:hover {
  color: var(--text-color);
  background: rgba(74, 144, 226, 0.1);
}

.main-nav a.active {
  color: var(--accent-glow);
  border-bottom: 2px solid var(--accent-color);
  border-radius: 0;
}

.language-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.language-nav a {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: "Twemoji Country Flags", system-ui, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
  background: rgba(74, 144, 226, 0.1);
}

.language-nav a:hover {
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
  transform: translateY(-2px);
}

/* Main Content */
.site-main {
  min-height: calc(100vh - 300px);
  padding: 3rem 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Home Page */
.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.artist-cover {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  object-fit: cover;
}

.artist-cover:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
  will-change: transform;
}

.site-description {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.site-description .about-link {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.site-description .about-link:hover {
  color: var(--accent-glow);
  border-bottom-color: var(--accent-glow);
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.albums-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.albums-heading h2 {
  font-size: 2rem;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.language-filter-toggle {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.language-filter-toggle:hover {
  color: var(--text-light);
  border-color: var(--text-muted);
}

.language-filter-toggle[aria-pressed="false"] {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.album-card {
  transition: all 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}

.album-card.hidden-language {
  display: none;
}

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

.album-card {
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
  will-change: transform;
}

.album-card a {
  display: block;
  color: inherit;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  background: var(--card-bg);
}

.album-card h3 {
  font-size: 1.4rem;
  padding: 1rem 1rem 0.5rem;
  color: var(--text-color);
}

.album-status {
  padding: 0 1rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.album-date {
  padding: 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.album-description {
  padding: 0.5rem 1rem 1rem;
  color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb .separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* Album Page */
.album-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.album-header .album-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--card-bg);
}

.album-info h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.album-info .album-status {
  padding: 0;
  margin-bottom: 0.5rem;
}

.album-info .album-date {
  padding: 0;
  margin-bottom: 1rem;
}

.album-info .album-description {
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.album-streaming-links {
  margin-top: 1.5rem;
}

.album-streaming-links h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.album-streaming-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.album-streaming-links a {
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.album-streaming-links a:hover {
  background: var(--accent-glow);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.tracklist {
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.tracklist h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.tracks {
  list-style: none;
  counter-reset: track-counter;
}

.track-item {
  border-bottom: 1px solid var(--border-color);
}

.track-item:last-child {
  border-bottom: none;
}

.track-item a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 6px;
}

.track-item a:hover {
  background: rgba(74, 144, 226, 0.1);
  color: var(--accent-glow);
  transform: translateX(1rem);
}

.track-item a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 6px;
  will-change: transform;
}

.track-number {
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 1rem;
  min-width: 2rem;
}

.track-title {
  flex: 1;
  font-size: 1.1rem;
}

.track-duration {
  margin-left: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Song Page */
.song-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.song-cover {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--card-bg);
}

.song-info .track-number {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.song-info h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.song-language-indicator,
.album-language-indicator {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 0.5rem;
}

.album-link {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.album-link a {
  color: var(--accent-color);
}

.song-description {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.song-language {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.song-genre {
  color: var(--text-muted);
}

.song-isrc {
  color: var(--text-muted);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.2em 0.5em;
  display: inline-block;
}

.track-isrc {
  margin-left: 0.75rem;
  color: var(--text-muted);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75em;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  line-height: 1;
}

.isrc-label {
  font-weight: 600;
  opacity: 0.7;
}

.audio-player {
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.audio-player audio {
  display: none;
}

/* --- Audio Controls Layout --- */

.audio-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Play/Pause Button */

.audio-play-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  background: rgba(74, 144, 226, 0.12);
  color: var(--accent-glow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  padding: 0;
}

.audio-play-btn:hover {
  background: rgba(74, 144, 226, 0.25);
  box-shadow: var(--glow);
}

.audio-play-btn:active {
  transform: scale(0.93);
}

.audio-play-btn:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
}

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

.is-playing .audio-play-btn {
  background: rgba(74, 144, 226, 0.2);
  box-shadow: 0 0 12px rgba(74, 144, 226, 0.25);
}

/* Time Display */

.audio-time {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 3.2em;
  text-align: center;
  flex-shrink: 0;
  user-select: none;
}

/* Progress Bar */

.audio-progress {
  flex: 1;
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.audio-progress:focus-visible {
  outline: none;
}

.audio-progress:focus-visible .audio-progress-track {
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.audio-progress-track {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.audio-progress-buffered {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: rgba(107, 114, 128, 0.25);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.audio-progress-played {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
  border-radius: 3px;
}

.audio-progress-handle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--accent-glow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.audio-progress:hover .audio-progress-handle,
.audio-progress.is-dragging .audio-progress-handle {
  opacity: 1;
}

.audio-progress:hover .audio-progress-track,
.audio-progress.is-dragging .audio-progress-track {
  height: 7px;
}

/* Mute Button */

.audio-mute-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s;
  padding: 0;
}

.audio-mute-btn:hover {
  color: var(--accent-glow);
}

.audio-mute-btn:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
}

.audio-mute-btn svg {
  width: 20px;
  height: 20px;
}

/* Volume Slider */

.audio-volume {
  width: 80px;
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: none;
}

.audio-volume:focus-visible {
  outline: none;
}

.audio-volume:focus-visible .audio-volume-track {
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.audio-volume-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.audio-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--accent-color);
  border-radius: 2px;
}

.audio-volume-handle {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 12px;
  height: 12px;
  background: var(--accent-glow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(74, 144, 226, 0.3);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.audio-volume:hover .audio-volume-handle,
.audio-volume.is-dragging .audio-volume-handle {
  opacity: 1;
}

/* Error Display */

.audio-error {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  color: #fca5a5;
  font-size: 0.85rem;
}

/* Sentinel for floating detection */

.audio-player-sentinel {
  height: 1px;
  margin-bottom: -1px;
  overflow: hidden;
  pointer-events: none;
}

/* Floating Player */

@keyframes audioSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.audio-player-floating {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 680px);
  z-index: 1000;
  animation: audioSlideUp 0.3s ease-out;
  box-shadow: var(--shadow-hover), 0 0 30px rgba(74, 144, 226, 0.12);
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(74, 144, 226, 0.2);
  margin-bottom: 0;
}

/* Mobile */

@media (max-width: 767px) {
  .audio-volume {
    display: none;
  }

  .audio-player {
    padding: 1rem 1.25rem;
  }

  .audio-controls {
    gap: 0.5rem;
  }

  .audio-play-btn {
    width: 40px;
    height: 40px;
  }

  .audio-time {
    font-size: 0.8rem;
    min-width: 2.8em;
  }

  .audio-player-floating {
    bottom: 0.5rem;
    border-radius: 10px;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  .audio-player-floating {
    animation: none;
  }

  .audio-play-btn {
    transition: none;
  }

  .audio-progress-handle,
  .audio-volume-handle {
    transition: none;
  }
}

.song-streaming-links {
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.song-streaming-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.song-streaming-links .audio-player {
  margin-bottom: 1.5rem;
}

.song-streaming-links .or-listen-on {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.song-streaming-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.song-streaming-links a {
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: var(--text-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.song-streaming-links a:hover {
  background: var(--accent-glow);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.lyrics {
  background: rgba(15, 20, 25, 0.65);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.lyrics h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.lyrics-text {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  color: var(--text-light);
}

.song-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.song-navigation a {
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: 1px solid var(--border-color);
}

.song-navigation a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
  color: var(--accent-glow);
  will-change: transform;
}

.prev-song {
  text-align: left;
}

.next-song {
  text-align: right;
}

/* About Page */
.about-page {
  max-width: 900px;
  margin: 0 auto;
}

.about-content {
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(3px);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.about-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.8;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h3 {
  font-size: 1.8rem;
  color: var(--accent-glow);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
}

.about-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-section a {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-color: rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
}

.about-section a:hover {
  color: var(--accent-glow);
  text-decoration-color: var(--accent-glow);
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--text-color);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--accent-glow);
  box-shadow: var(--glow);
  transform: translateY(-2px);
  will-change: transform;
}

/* Articles Index Page */
.articles-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.articles-intro {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.article-card {
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
  will-change: transform;
}

.article-card a {
  display: block;
  padding: 1.5rem;
  color: inherit;
}

.article-card h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.article-card time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-card p {
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  background: rgba(74, 144, 226, 0.15);
  color: var(--accent-color);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Individual Article Page */
.article-page {
  max-width: 900px;
  margin: 0 auto;
}

.article-content {
  background: rgba(15, 20, 25, 0.6);
  backdrop-filter: blur(3px);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.article-header h1 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.article-meta time {
  color: var(--text-muted);
}

/* Prose content (markdown-rendered article body) */
.prose h2 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 2rem 0 1rem;
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
}

.prose h3 {
  font-size: 1.4rem;
  color: var(--accent-glow);
  margin: 1.5rem 0 0.75rem;
}

.prose p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.prose blockquote {
  border-left: 3px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(74, 144, 226, 0.05);
  border-radius: 0 8px 8px 0;
  color: var(--text-light);
  font-style: italic;
}

.prose ul, .prose ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-light);
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.prose a {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-color: rgba(74, 144, 226, 0.3);
}

.prose a:hover {
  color: var(--accent-glow);
  text-decoration-color: var(--accent-glow);
}

.prose strong {
  color: var(--text-color);
}

.prose em {
  color: var(--text-light);
}

/* Song Reference Cards */
.song-reference-card {
  margin: 2rem 0;
  background: rgba(15, 20, 25, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.song-reference-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  will-change: transform;
}

.song-reference-card a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.song-reference-card img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.song-reference-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.song-reference-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-color);
}

.song-reference-album {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--text-color);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-articles-links {
  grid-column: 1 / -1;
}

.streaming-links h3,
.social-links h3,
.footer-articles-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.streaming-links .links,
.social-links .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-articles-links .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

@media (max-width: 600px) {
  .footer-articles-links .links {
    grid-template-columns: 1fr;
  }
}

.streaming-links a,
.social-links a,
.footer-articles-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.streaming-links a:hover,
.social-links a:hover,
.footer-articles-links a:hover {
  color: var(--accent-glow);
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
  transform: translateX(0.5rem);
}

.streaming-links a,
.social-links a,
.footer-articles-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  will-change: transform;
}

.service-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.streaming-links a:hover .service-icon,
.social-links a:hover .service-icon {
  filter: drop-shadow(0 0 6px rgba(74, 144, 226, 0.6));
  transform: scale(1.1);
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-title {
    font-size: 1.5rem;
    flex: 1;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Hide navigation by default on mobile */
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.94) 0%, rgba(26, 31, 46, 0.94) 100%);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
    z-index: 10001;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-wrapper.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .main-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .main-nav a {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 1.1rem;
  }
  
  .main-nav a.active {
    background: rgba(74, 144, 226, 0.15);
    border-color: var(--accent-color);
    border-radius: 8px;
  }
  
  .language-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  .language-nav a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 90;
    animation: fadeIn 0.3s ease;
    will-change: opacity;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .hero {
    margin-bottom: 2rem;
  }
  
  .artist-cover {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .site-description {
    font-size: 1.1rem;
  }

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

  .album-header,
  .song-header {
    grid-template-columns: 1fr;
  }
  
  .song-language-indicator,
  .album-language-indicator {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  .song-navigation {
    flex-direction: column;
  }

  .prev-song,
  .next-song {
    text-align: center;
  }

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

  .article-content {
    padding: 1.5rem;
  }

  .article-header h1 {
    font-size: 1.8rem;
  }

  .song-reference-card a {
    flex-direction: column;
    text-align: center;
  }

  .song-reference-card img {
    width: 150px;
    height: 150px;
  }
}
