/* ═══════════════════════════════════════════════
   BGSI RECORDS — Global Stylesheet
   Fixed: logo, artist grid (flag badge, square images), player, responsive
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --cyan:         #00e5ff;
  --magenta:      #cc00ff;
  --purple:       #7000ff;
  --bg:           #050508;
  --surface:      rgba(255,255,255,0.04);
  --surface-2:    rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-cyan:  rgba(0,229,255,0.35);
  --border-mag:   rgba(204,0,255,0.35);
  --text:         #f0f0f5;
  --text-muted:   rgba(240,240,245,0.45);
  --glass:        rgba(255,255,255,0.04);
  --cyan-glow:    rgba(0,229,255,0.18);
  --mag-glow:     rgba(204,0,255,0.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* Animated canvas bg */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, transparent 40%, rgba(5,5,8,0.9) 100%);
  pointer-events: none;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--cyan-glow));
  max-width: 100%;
  display: block;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition);
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--text);
  background: var(--surface-2);
}
.navbar-links a.active { color: var(--cyan); }
.navbar-cart-badge {
  background: var(--cyan);
  color: #000;
  font-size: 0.65rem;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5,5,8,0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
  }
  .navbar-links.open { display: flex; }
  .navbar-links a { width: 100%; padding: 12px 16px; }
}
@media (max-width: 480px) {
  .navbar-logo img { height: 44px; }
}

/* ══════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════ */
.page-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.page-header {
  margin-bottom: 2.5rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.page-header p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ══════════════════════════════════
   GLASS CARD
══════════════════════════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cyan);
  box-shadow: 0 8px 40px rgba(0,229,255,0.1);
}
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 1rem;
}
.card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
}
.card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════
   GRID LAYOUTS
══════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
.grid-lg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ══════════════════════════════════
   BADGE (FIXED: sharp, not pixelated)
══════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  backdrop-filter: blur(2px);
  white-space: nowrap;
}
.badge.album  { background: rgba(0,229,255,0.85); color: #000; border: none; }
.badge.single { background: rgba(204,0,255,0.85); color: #fff; border: none; }
.badge.ep     { background: rgba(112,0,255,0.85); color: #fff; border: none; }

/* ══════════════════════════════════
   FORM BOX
══════════════════════════════════ */
.form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 460px;
  margin: 2rem auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.form-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
input::placeholder,
textarea::placeholder { color: var(--text-muted); }
textarea { resize: vertical; min-height: 120px; }
select option { background: #111; color: var(--text); }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,229,255,0.2);
}
.btn:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--cyan-glow);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-1px);
}
.btn-outline.mag {
  color: var(--magenta);
  border-color: var(--border-mag);
}
.btn-outline.mag:hover {
  background: var(--mag-glow);
  box-shadow: 0 0 20px var(--mag-glow);
}
.btn-outline.error {
  color: #ff4d6a;
  border-color: rgba(255,77,106,0.35);
}
.btn-outline.error:hover {
  background: rgba(255,77,106,0.12);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

/* ══════════════════════════════════
   ALERTS
══════════════════════════════════ */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.alert.error {
  background: rgba(255,77,106,0.1);
  border: 1px solid rgba(255,77,106,0.3);
  color: #ff4d6a;
}
.alert.success {
  background: rgba(0,255,120,0.08);
  border: 1px solid rgba(0,255,120,0.25);
  color: #00ff78;
}
.alert.info {
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--cyan);
}
.alert.warn {
  background: rgba(255,180,0,0.08);
  border: 1px solid rgba(255,180,0,0.25);
  color: #ffb400;
}

/* ══════════════════════════════════
   ALBUM HERO
══════════════════════════════════ */
.album-hero {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cover-container {
  flex-shrink: 0;
  width: clamp(180px, 28vw, 280px);
}
.cover-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,229,255,0.15), 0 0 0 1px var(--border);
}
.album-meta {
  flex: 1;
  min-width: 220px;
  padding-top: 0.5rem;
}
.album-meta h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0.5rem 0;
}
.album-meta p { color: var(--text-muted); margin-bottom: 0.5rem; }
.album-meta a { color: var(--cyan); text-decoration: none; }
.album-meta a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   TRACKLIST
══════════════════════════════════ */
.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 6px;
  background: var(--surface);
  transition: border-color var(--transition), background var(--transition);
  gap: 12px;
  flex-wrap: wrap;
}
.track-row:hover {
  border-color: var(--border-cyan);
  background: var(--surface-2);
}
.track-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  min-width: 24px;
  text-align: center;
}
.track-title { flex: 1; font-weight: 500; }
.track-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ══════════════════════════════════
   AUDIO PLAYER BAR (fixed colors)
══════════════════════════════════ */
#player-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5,5,8,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-cyan);
  padding: 12px 2rem;
  align-items: center;
  gap: 1rem;
}
#player-bar.active { display: flex; }
#player-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  min-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#player-bar audio {
  flex: 1;
  height: 40px;
  min-width: 0;
}
#player-bar audio::-webkit-media-controls-panel {
  background-color: #111;
}
#player-bar audio::-webkit-media-controls-current-time-display,
#player-bar audio::-webkit-media-controls-time-remaining-display {
  color: var(--cyan);
}
.player-close {
  background: none; border: none;
  color: var(--text-muted); cursor: pointer;
  font-size: 1.2rem; padding: 4px;
  transition: color 0.2s;
}
.player-close:hover { color: var(--magenta); }

/* ══════════════════════════════════
   PURCHASE / LICENSE BOX
══════════════════════════════════ */
.purchase-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 380px;
}
.license-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
}
.license-option:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.06);
}
.license-option input[type="radio"] { accent-color: var(--cyan); }
.license-option.cd:has(input:checked) {
  border-color: var(--magenta);
  background: rgba(204,0,255,0.06);
}

/* ══════════════════════════════════
   CART
══════════════════════════════════ */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  align-items: center;
  transition: border-color 0.2s;
}
.cart-item:hover { border-color: var(--border-cyan); }
.cart-item img {
  width: 58px; height: 58px;
  object-fit: cover; border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-weight: 600; margin-bottom: 3px; }
.cart-item-sub { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { font-weight: 700; color: var(--cyan); font-size: 1rem; white-space: nowrap; }
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.cart-summary h3 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.summary-line.total {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

/* ══════════════════════════════════
   VERIFY CODE INPUT
══════════════════════════════════ */
.code-input {
  text-align: center;
  font-size: 2.2rem !important;
  letter-spacing: 12px;
  font-family: var(--font-display) !important;
  background: rgba(0,229,255,0.05) !important;
  border-color: var(--border-cyan) !important;
  color: var(--cyan) !important;
}
.code-input:focus {
  box-shadow: 0 0 0 3px rgba(0,229,255,0.15) !important;
}

/* ══════════════════════════════════
   DIVIDER
══════════════════════════════════ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.section-title span { color: var(--cyan); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.footer a { color: var(--text-muted); text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 0.75rem; flex-wrap: wrap; }

/* ══════════════════════════════════
   UTILITIES
══════════════════════════════════ */
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-cyan    { color: var(--cyan); }
.text-magenta { color: var(--magenta); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(0,229,255,0); }
}

/* ══════════════════════════════════
   STATIC PAGE (Terms / Privacy)
══════════════════════════════════ */
.static-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  line-height: 1.85;
  max-width: 760px;
  color: var(--text-muted);
}
.static-page p { margin-bottom: 1rem; }
.static-page strong { color: var(--text); }

/* ══════════════════════════════════
   SCROLLBAR
══════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.3); }

body.player-open { padding-bottom: 72px; }

/* ══════════════════════════════════
   HOME PAGE ARTIST GRID
   - Square images, flag as small badge in top‑right corner
══════════════════════════════════ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}
.artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cyan);
}
.artist-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
}
.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #000;
}
.artist-flag-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
  background: #fff;
  object-fit: contain;
}
.artist-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.artist-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
.artist-desc {
  font-size: 0.7rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-hero {
  text-align: center;
  padding: 3rem 1rem;
  margin-bottom: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero p {
  color: var(--text-muted);
  margin: 1rem 0;
}

/* ══════════════════════════════════
   RESPONSIVE (mobile)
══════════════════════════════════ */
@media (max-width: 768px) {
  .grid, .grid-lg, .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  .badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  .card-body {
    padding: 0.75rem;
  }
  .card-title {
    font-size: 0.85rem;
  }
  .album-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cover-container {
    width: 200px;
  }
  .track-row {
    flex-wrap: wrap;
  }
  .track-actions {
    width: 100%;
    justify-content: flex-start;
    margin-top: 6px;
  }
  .navbar-actions .btn-sm {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .artist-image-wrapper {
    border-radius: 8px;
  }
  .artist-flag-badge {
    width: 22px;
    top: 5px;
    right: 5px;
  }
  .artist-info h3 {
    font-size: 0.85rem;
  }
  /* Improve audio player visibility on dark backgrounds */
audio {
    background: #1e1e2f;
    border-radius: 40px;
    padding: 0 12px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
audio::-webkit-media-controls-panel {
    background-color: #1e1e2f !important;
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-timeline {
    filter: brightness(1.2);
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: var(--cyan) !important;
    font-weight: 500;
}
}