/**
 * TCMX Creator Hub — Maria hot-pink baddie aesthetic
 */

:root {
  --bg-deep: #120810;
  --bg-card: rgba(24, 10, 22, 0.82);
  --pink-hot: #ff2d9a;
  --pink-soft: #f472b6;
  --pink-glow: #ff6bcb;
  --magenta: #d946ef;
  --wine: #4a1438;
  --wine-deep: #2d0a1f;
  --pale: #fce7f3;
  --text-primary: #fdf2f8;
  --text-muted: #c4a5b8;
  --text-soft: #e9c8da;
  --border-pink: rgba(244, 114, 182, 0.35);
  --glow-pink: 0 0 24px rgba(255, 45, 154, 0.4), 0 0 48px rgba(217, 70, 239, 0.18);
  --discord: #7289da;
  --discord-light: #99aaf2;
  --tiktok-cyan: #25f4ee;
  --tiktok-pink: #fe2c55;
  --cashapp: #00d632;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Crimson Pro', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.custom-bg-layer {
  display: none;
}

/* ─── Neon pink galaxy background ─────────────────────────────────────────── */
.galaxy-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background: linear-gradient(160deg, #0a0612 0%, #140818 45%, #0c0610 100%);
  overflow: hidden;
}

.galaxy-bg::before {
  content: '';
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 55% 48% at 72% 18%, rgba(255, 45, 154, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 18% 72%, rgba(217, 70, 239, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 40% 36% at 88% 68%, rgba(244, 114, 182, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 65% 55% at 42% 38%, rgba(255, 107, 203, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 55% 85%, rgba(236, 72, 153, 0.22) 0%, transparent 50%);
  animation: galaxy-drift 26s ease-in-out infinite alternate;
}

.galaxy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(8, 4, 12, 0.75) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 45, 154, 0.12) 0%, transparent 50%);
}

@keyframes galaxy-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50%  { transform: translate(2%, -1.5%) scale(1.04); opacity: 1; }
  100% { transform: translate(-1.5%, 2%) scale(0.98); opacity: 0.92; }
}

.galaxy-stars {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 62%, rgba(255, 255, 255, 0.65) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 25%, rgba(252, 231, 243, 0.85) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 78%, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
    radial-gradient(2px 2px at 71% 34%, rgba(255, 255, 255, 0.95) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 71%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 91% 22%, rgba(252, 231, 243, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 8% 88%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 42%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 64% 52%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 8%, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 96% 48%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  animation: stars-twinkle 6s ease-in-out infinite alternate;
}

@keyframes stars-twinkle {
  0%   { opacity: 0.55; }
  100% { opacity: 0.85; }
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%,
      transparent 25%,
      rgba(8, 4, 12, 0.4) 100%);
}

.neon-bar-bg,
.maria-fog-bg,
.maria-glow-orbs {
  display: none;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 1.15rem 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.65rem 0;
  margin-bottom: 1.25rem;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(18, 8, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-pink);
  border-radius: 999px;
  box-shadow: var(--glow-pink);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #fce7f3, var(--pink-soft), var(--pink-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fce7f3;
  background: rgba(244, 114, 182, 0.2);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.15);
  color: var(--pink-soft);
  cursor: pointer;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(18, 8, 16, 0.96);
  border: 1px solid var(--border-pink);
  border-radius: 1rem;
}

.nav-drawer.is-open { display: flex; }

.nav-drawer a {
  padding: 0.65rem 1rem;
  border-radius: 0.65rem;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-drawer a:hover,
.nav-drawer a.is-active {
  background: rgba(244, 114, 182, 0.18);
  color: #fce7f3;
}

@media (min-width: 640px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-pink);
  border-radius: 1.15rem;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.fade-in { animation: fadeUp 0.55s ease both; }
.fade-in-delay-1 { animation-delay: 0.08s; }
.fade-in-delay-2 { animation-delay: 0.16s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.profile-hero {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.65rem;
}

.profile-top {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 560px) {
  .profile-hero { padding: 1.85rem 2rem; }
  .profile-top {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.75rem;
  }
}

.avatar-ring {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--pink-hot), var(--magenta), var(--wine));
  box-shadow: 0 0 32px rgba(255, 45, 154, 0.45);
  animation: avatar-glow 4s ease-in-out infinite;
}

@keyframes avatar-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 45, 154, 0.35); }
  50%      { box-shadow: 0 0 40px rgba(217, 70, 239, 0.5); }
}

@media (min-width: 560px) {
  .avatar-ring { margin: 0; width: 8rem; height: 8rem; }
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid rgba(18, 8, 16, 0.9);
  background: var(--wine-deep);
}

.profile-name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 560px) {
  .profile-name { text-align: left; font-size: 2.1rem; }
}

.gradient-text {
  background: linear-gradient(92deg, #fce7f3 0%, var(--pink-soft) 45%, var(--pink-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.profile-tagline {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 560px) {
  .profile-tagline { text-align: left; }
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

@media (min-width: 560px) {
  .role-tags { justify-content: flex-start; }
}

.role-tag {
  padding: 0.22rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pink-soft);
  background: rgba(74, 20, 56, 0.45);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: 999px;
}

.social-quick { display: none; }

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 560px) {
  .quick-links { justify-content: flex-start; }
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.quick-link:hover { transform: translateY(-2px); }

.quick-link--dbd {
  flex: 1 1 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: #fce7f3;
  background: linear-gradient(135deg, rgba(255, 45, 154, 0.22), rgba(74, 20, 56, 0.65));
  border: 1px solid rgba(255, 107, 203, 0.55);
  animation: featured-pulse-fast 1.6s ease-in-out infinite;
}

@media (min-width: 560px) {
  .quick-link--dbd { flex: 1 1 auto; justify-content: flex-start; }
}

.quick-link--dbd .quick-link-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.quick-link--discord {
  color: var(--discord-light);
  background: rgba(114, 137, 218, 0.18);
  border: 1px solid rgba(114, 137, 218, 0.45);
}

.quick-link--discord:hover {
  box-shadow: 0 4px 18px rgba(114, 137, 218, 0.35);
}

.quick-link--tiktok {
  color: #fff;
  background: rgba(20, 10, 18, 0.75);
  border: 1px solid rgba(254, 44, 85, 0.4);
}

.quick-link--tiktok:hover {
  box-shadow: 0 4px 18px rgba(254, 44, 85, 0.25);
}

.quick-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon svg,
.quick-link-icon img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.quick-link-label { white-space: nowrap; }

.profile-divider {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.45), transparent);
}

.home-blurb-inline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-soft);
  text-align: center;
}

@media (min-width: 560px) {
  .home-blurb-inline { text-align: left; }
}

.home-blurb { display: none; }

/* ─── Links CTA (home page) ─────────────────────────────────────────────── */
.links-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.links-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.35rem 1.5rem 1.1rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, rgba(74, 20, 56, 0.55), rgba(24, 10, 22, 0.88));
  border: 1px solid rgba(255, 45, 154, 0.45);
  border-radius: 1.15rem;
  box-shadow: var(--glow-pink);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.links-cta-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(90deg, var(--pink-hot), var(--magenta));
  border-radius: 999px;
  animation: badge-flash 1.4s ease-in-out infinite;
}

@keyframes badge-flash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.88; transform: scale(1.04); box-shadow: 0 0 14px rgba(255, 45, 154, 0.6); }
}

.links-cta-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 203, 0.65);
  box-shadow: 0 0 32px rgba(255, 45, 154, 0.5), 0 0 56px rgba(217, 70, 239, 0.25);
}

.links-cta-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #fce7f3, var(--pink-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.links-cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.links-cta-arrow {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.5rem;
  color: var(--pink-hot);
  animation: arrow-bounce 1.6s ease-in-out infinite;
  text-shadow: 0 0 16px rgba(255, 45, 154, 0.8);
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ─── Links page ────────────────────────────────────────────────────────── */
.links-page-header {
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.links-page-header h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
}

.links-page-header p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-pink);
  border-radius: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 114, 182, 0.55);
}

.link-card--featured {
  border-color: rgba(255, 45, 154, 0.55);
  background: linear-gradient(135deg, rgba(74, 20, 56, 0.5), rgba(24, 10, 22, 0.88));
  animation: featured-pulse-fast 1.6s ease-in-out infinite;
}

@keyframes featured-pulse-fast {
  0%, 100% {
    box-shadow: 0 0 18px rgba(255, 45, 154, 0.35), 0 0 36px rgba(217, 70, 239, 0.15);
    border-color: rgba(255, 45, 154, 0.5);
  }
  50% {
    box-shadow: 0 0 34px rgba(255, 107, 203, 0.65), 0 0 64px rgba(236, 72, 153, 0.35);
    border-color: rgba(255, 107, 203, 0.75);
  }
}

@keyframes featured-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 45, 154, 0.35), 0 0 40px rgba(217, 70, 239, 0.15);
  }
  50% {
    box-shadow: 0 0 32px rgba(255, 107, 203, 0.55), 0 0 56px rgba(236, 72, 153, 0.28);
  }
}

.link-card--discord { border-color: rgba(114, 137, 218, 0.45); }
.link-card--discord:hover {
  box-shadow: 0 4px 24px rgba(114, 137, 218, 0.28);
  border-color: rgba(153, 170, 242, 0.65);
}

.link-card--tiktok {
  border-color: rgba(254, 44, 85, 0.35);
  background: linear-gradient(135deg, rgba(24, 10, 22, 0.88), rgba(16, 12, 20, 0.9));
}

.link-card--tiktok:hover {
  box-shadow: 0 4px 24px rgba(254, 44, 85, 0.2);
  border-color: rgba(37, 244, 238, 0.4);
}

.link-card--cashapp { border-color: rgba(0, 214, 50, 0.35); }
.link-card--cashapp:hover { box-shadow: 0 4px 24px rgba(0, 214, 50, 0.15); }

.link-icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(74, 20, 56, 0.45);
}

.link-card--featured .link-icon {
  background: rgba(255, 45, 154, 0.15);
  box-shadow: 0 0 14px rgba(255, 45, 154, 0.35);
}

.link-card--discord .link-icon {
  background: rgba(114, 137, 218, 0.22);
  color: var(--discord-light);
}

.link-card--tiktok .link-icon {
  background: rgba(20, 10, 18, 0.8);
}

.link-card--cashapp .link-icon {
  background: rgba(0, 214, 50, 0.12);
  color: var(--cashapp);
}

.link-icon svg,
.link-icon img,
.social-icon-svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.link-card--tiktok .link-icon svg {
  color: #fff;
}

.link-body { flex: 1; min-width: 0; }

.link-body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.link-card--featured .link-body h3 { color: #fce7f3; }

.link-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.referral-note {
  display: block;
  margin-top: 0.55rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--pink-soft);
  background: rgba(74, 20, 56, 0.5);
  border: 1px solid rgba(255, 45, 154, 0.35);
  border-radius: 0.5rem;
}

.link-arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--pink-hot);
  font-size: 1.15rem;
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
}

.link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.link-card--discord .link-arrow { color: var(--discord-light); }
.link-card--tiktok .link-arrow { color: var(--tiktok-cyan); }
.link-card--cashapp .link-arrow { color: var(--cashapp); }

.back-home-link {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.back-home-link:hover { color: var(--pink-soft); }

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.72rem;
  color: rgba(196, 165, 184, 0.6);
  letter-spacing: 0.04em;
}

.audio-player {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  width: 17.5rem;
  max-width: calc(100vw - 2rem);
  padding: 0.85rem 1rem;
  background: rgba(18, 8, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-pink);
  box-shadow: var(--glow-pink);
  border-radius: 1rem;
}

.audio-player.minimized {
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
}

.audio-player.minimized .player-expanded-content { display: none; }
.audio-player:not(.minimized) .player-mini-toggle { display: none; }

.player-mini-toggle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--pink-hot);
  font-size: 1.15rem;
  cursor: pointer;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.player-meta { min-width: 0; flex: 1; margin-right: 0.5rem; }

#audio-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#audio-artist {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#player-expand-toggle {
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.15rem 0.35rem;
}

#player-expand-toggle:hover { color: var(--pink-soft); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.45rem;
}

.player-controls button {
  border: none;
  background: transparent;
  color: var(--pink-hot);
  font-size: 0.95rem;
  padding: 0.25rem;
  cursor: pointer;
}

.player-controls button:hover { color: var(--pink-soft); }
#audio-play { font-size: 1.1rem; }

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#audio-mute {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
}

.maria-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(74, 20, 56, 0.45);
  outline: none;
}

.maria-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 8px rgba(255, 45, 154, 0.7);
  cursor: pointer;
}

.maria-range::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 8px rgba(255, 45, 154, 0.7);
  cursor: pointer;
  border: none;
}

.audio-player.player-no-tracks { opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
