/* ══════════════════════════════════════════════
   Fullscreen page loader
   ══════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  /* Dekt alles behalve de sidebar */
  left: var(--desktop-rail-width, 86px);
  z-index: 9000;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease;
  pointer-events: all;
}

.page-loader--done {
  opacity: 0;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 420px;
}

.page-loader-logo {
  width: 180px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.25));
}

.page-loader-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.page-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    rgba(180,130,30,0.9) 0%,
    var(--gold) 45%,
    rgba(244,215,122,1) 72%,
    rgba(255,240,160,0.85) 100%
  );
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(212,175,55,0.6), 0 0 3px rgba(244,215,122,0.8);
  transition: width 0.12s linear;
}

.page-loader-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: -14px;
}

/* Op mobile: bedek volledig (geen sidebar) */
@media (max-width: 768px) {
  .page-loader {
    left: 0;
  }
}
:root {
  --gold: #d4af37;
  --gold-2: #f4d77a;
  --gold-3: #ffd76a;
  --gold-dark: #8f6b13;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --top-btn-height: 52px;

  --fs-label: 12px;
  --fs-body: 14px;
  --fs-artist: 18px;
  --fs-stat-label: 12px;
  --fs-stat-value: clamp(26px, 4vw, 34px);
  --fs-tune-title: clamp(18px, 2.6vw, 26px);

  --desktop-rail-width: 180px;
  --desktop-rail-expanded: 320px;
  --mobile-bottom-nav-height: 86px;
  --mobile-nav-bg: rgba(10, 10, 10, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      rgba(7,7,7,0.10) 0%,
      rgba(7,7,7,0.30) 50%,
      rgba(7,7,7,0.88) 78%,
      rgba(7,7,7,1.00) 92%
    ),
    url("../../icons/background-radio.jpg"),
    url("../../bg-mobile-final-1080x1920.webp");
  background-size: 100% 620px, 100% 620px, cover;
  background-position: top center, top center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: scroll, scroll, fixed;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  text-align: center;
  padding: 0 20px 44px calc(var(--desktop-rail-width) + 68px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}

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

.hidden {
  display: none !important;
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 8px;
  padding-right: 0;
}

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}

.header-bar {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 8px 16px 4px;
  position: relative;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-left {
  justify-content: flex-start;
}

.currency-badge {
  /* Fixed boven de sidebar */
  position: fixed;
  top: 14px;
  left: 18px;
  width: var(--desktop-rail-width);
  z-index: 130;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  border: none;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .currency-badge {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    border-radius: 999px;
    min-height: 46px;
    padding: 0 16px 0 12px;
  }
}

.currency-badge-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.currency-badge-value {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.3px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.header-center {
  justify-content: center;
  pointer-events: none;
}

.header-center > * {
  pointer-events: auto;
}

.header-right {
  justify-content: flex-end;
  position: relative;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: min(288px, 45vw);
  height: auto;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.08));
}

.header-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(10,10,10,0.86), rgba(10,10,10,0.92));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 22px rgba(0,0,0,0.24);
  backdrop-filter: blur(4px);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
  padding: 0;
  text-decoration: none;
}

.header-icon-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 14px 24px rgba(0,0,0,0.28);
}

.person-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.person-icon::before,
.person-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2.2px solid #f5f5f5;
  box-sizing: border-box;
}

.person-icon::before {
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.person-icon::after {
  bottom: -1px;
  width: 21px;
  height: 11px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 0;
}

.header-avatar-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.55);
  background: #111;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.24),
    0 0 0 3px rgba(212,175,55,0.08);
  cursor: pointer;
}

.header-avatar-btn img,
.header-avatar-btn .header-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.header-avatar-fallback {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3a2d0d, #a98325);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
}

.account-menu {
  display: none !important;
  position: absolute;
  top: 52px;
  right: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.96), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  z-index: 90;
}

.account-menu-actions {
  display: grid;
  gap: 8px;
}

.account-menu-link,
.account-menu button {
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.desktop-side-nav {
  position: fixed;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: var(--desktop-rail-width);
  height: min(84vh, 780px);
  z-index: 120;
  display: flex;
  align-items: stretch;
  overflow: visible;
  transition: width 0.34s cubic-bezier(.22,.61,.36,1);
}

.desktop-side-nav:hover {
  width: var(--desktop-rail-expanded);
}

.desktop-side-nav-panel {
  width: 100%;
  height: 100%;
  transition: width 0.34s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
  padding: 18px 0 16px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.desktop-side-links,
.desktop-side-bottom {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: stretch;
}

.desktop-side-links {
  flex: 1;
  padding-top: 2px;
}

.desktop-side-bottom {
  margin-top: auto;
  padding-top: 24px;
}

.desktop-nav-link,
.desktop-nav-button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 0 18px;
  color: rgba(245,245,245,0.96);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
  text-align: left;
  position: relative;
  border-radius: 18px;
}

.desktop-side-nav:hover .desktop-nav-link,
.desktop-side-nav:hover .desktop-nav-button {
  width: 100%;
}

.desktop-nav-link:hover,
.desktop-nav-button:hover {
  transform: translateX(2px);
  background:
    linear-gradient(90deg, rgba(212,175,55,0.16), rgba(212,175,55,0.05) 58%, transparent);
}

.desktop-nav-link.active,
.desktop-nav-button.active {
  color: #f5c84b;
  background: transparent;
}

.desktop-nav-link.active::after,
.desktop-nav-button.active::after {
  display: none;
}

.desktop-nav-icon,
.mobile-nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.desktop-nav-icon {
  width: 30px;
  height: 30px;
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
}

.nav-icon-mask {
  width: 100%;
  height: 100%;
  display: block;
  background: #B0B0B0;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: none;
  opacity: 0.98;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  pointer-events: none;
  user-select: none;
}

.desktop-nav-link:hover .nav-icon-mask,
.desktop-nav-button:hover .nav-icon-mask,
.mobile-nav-link:hover .nav-icon-mask {
  transform: scale(1.04);
  opacity: 1;
  background: #f5c84b !important;
  filter: none;
}

.desktop-nav-link.active .nav-icon-mask,
.desktop-nav-button.active .nav-icon-mask,
.mobile-nav-link.active .nav-icon-mask {
  background: #FFD76A !important;
  filter: none;
}

.desktop-nav-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.26s ease,
    transform 0.34s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  min-width: 170px;
  max-width: 200px;
  overflow: visible;
  text-overflow: clip;
  text-align: left;
}

.desktop-side-nav:hover .desktop-nav-label {
  opacity: 1;
  transform: translateX(0);
}

.mobile-bottom-nav-wrap {
  display: none;
}

.submit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--top-btn-height);
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #231700;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  background:
    linear-gradient(180deg, #fff5c9 0%, #f4d77a 20%, #d4af37 52%, #b98816 75%, #7c5a11 100%);
  border: 1px solid rgba(255, 230, 150, 0.38);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -2px 4px rgba(90,50,0,0.28),
    0 12px 26px rgba(212,175,55,0.22),
    0 0 0 1px rgba(212,175,55,0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(2px);
  font-family: 'Manrope', sans-serif;
}

.submit-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.metal-btn {
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, #fbfbfb 0%, #d6d6d6 16%, #b6b6b6 35%, #8b8b8b 52%, #d2d2d2 72%, #f4f4f4 100%);
  color: #151515;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.72),
    inset 0 -2px 3px rgba(0,0,0,0.18),
    0 10px 22px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
  backdrop-filter: blur(2px);
  font-family: 'Manrope', sans-serif;
}

.metal-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.metal-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.25);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.32),
    inset 0 -2px 3px rgba(0,0,0,0.12),
    0 4px 12px rgba(0,0,0,0.18);
}

.metal-btn .icon {
  color: #6a560c;
  margin-right: 7px;
  font-size: 15px;
}

.skip-button-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.skip-coin-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.skip-cost {
  color: #111;
  font-weight: 700;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.liked {
  background:
    linear-gradient(180deg, #fff6cb 0%, #e9c75f 24%, #d4af37 52%, #b98714 76%, #826113 100%);
  color: #111;
  border-color: rgba(255,220,120,0.35);
}

.liked .icon {
  color: #111;
}

.radio-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 12px 0 0;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.radio-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.radio-shell.pre-live {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
}

.start-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 5;
}

.overlay-content {
  text-align: center;
  padding: 24px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.overlay-label,
.now-playing {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--fs-label);
  opacity: 0.78;
}

.overlay-label {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.overlay-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 7vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #fff7d7;
  text-shadow:
    0 2px 20px rgba(0,0,0,0.45),
    0 0 28px rgba(212,175,55,0.10);
  max-width: 10ch;
}

.overlay-subcopy {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.start-btn-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.start-btn-wrap::before {
  content: "";
  position: absolute;
  inset: -18px -22px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.06) 45%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.start-btn {
  min-width: 250px;
  min-height: 68px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,232,166,0.42);
  background:
    linear-gradient(180deg, #fff8dc 0%, #f8e4a1 18%, #e7c45d 40%, #d4af37 58%, #b78312 82%, #7f5c11 100%);
  color: #181203;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 8px rgba(90,50,0,0.24),
    0 18px 36px rgba(0,0,0,0.34),
    0 0 34px rgba(212,175,55,0.20);
  backdrop-filter: blur(2px);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.start-btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.62),
    inset 0 -3px 8px rgba(90,50,0,0.24),
    0 22px 44px rgba(0,0,0,0.36),
    0 0 40px rgba(212,175,55,0.24);
}

.radio-shell-content {
  display: grid;
  gap: 4px;
}

.now-playing {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 11px;
}

.waveform-wrap {
  width: 100%;
  margin: 2px auto 4px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.waveform {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0;
  opacity: 0.9;
}

.waveform-bar {
  flex: 1 1 0;
  min-width: 4px;
  max-width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-dark));
  box-shadow: 0 0 10px rgba(212,175,55,0.18);
  transform-origin: bottom center;
  animation: waveformPulse 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 14px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 28px; animation-delay: 0.08s; }
.waveform-bar:nth-child(3) { height: 18px; animation-delay: 0.16s; }
.waveform-bar:nth-child(4) { height: 34px; animation-delay: 0.24s; }
.waveform-bar:nth-child(5) { height: 22px; animation-delay: 0.32s; }
.waveform-bar:nth-child(6) { height: 38px; animation-delay: 0.40s; }
.waveform-bar:nth-child(7) { height: 20px; animation-delay: 0.48s; }
.waveform-bar:nth-child(8) { height: 30px; animation-delay: 0.56s; }
.waveform-bar:nth-child(9) { height: 16px; animation-delay: 0.64s; }
.waveform-bar:nth-child(10) { height: 26px; animation-delay: 0.72s; }
.waveform-bar:nth-child(11) { height: 18px; animation-delay: 0.80s; }
.waveform-bar:nth-child(12) { height: 32px; animation-delay: 0.88s; }
.waveform-bar:nth-child(13) { height: 20px; animation-delay: 0.96s; }
.waveform-bar:nth-child(14) { height: 28px; animation-delay: 1.04s; }
.waveform-bar:nth-child(15) { height: 14px; animation-delay: 1.12s; }


.waveform-wrap.is-paused .waveform-bar {
  animation: none !important;
  transform: scaleY(1) !important;
  opacity: 0.5;
}

@keyframes waveformPulse {
  0%, 100% {
    transform: scaleY(0.65);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

.tune-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-tune-title);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

.artist-wrap {
  margin: 0;
  font-size: var(--fs-artist);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.artist-link,
.artist-link:hover,
.artist-link:focus,
.artist-link:active {
  color: var(--gold);
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.artist-link:hover {
  opacity: 0.88;
}

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.68);
  font-size: var(--fs-body);
  margin: 0 auto 10px;
  width: 100%;
  max-width: 740px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.02em;
}

.progress {
  position: relative;
  width: 100%;
  max-width: 740px;
  height: 14px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(20,20,20,0.96), rgba(10,10,10,0.98));
  border: 1px solid rgba(244,215,122,0.22);
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.05),
    inset 0 -3px 6px rgba(0,0,0,0.48),
    0 0 0 1px rgba(212,175,55,0.05),
    0 0 20px rgba(212,175,55,0.06);
}

.progress::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  pointer-events: none;
  opacity: 0.55;
}

.fill {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #6e4f0e 0%, #a97812 16%, #d4af37 46%, #f4d77a 78%, #fff1b8 100%);
  box-shadow:
    0 0 16px rgba(212,175,55,0.28),
    0 0 28px rgba(212,175,55,0.16);
}

.fill::before {
  content: "";
  position: absolute;
  inset: 1px auto 1px 1px;
  width: calc(100% - 2px);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.04) 52%, rgba(255,255,255,0));
  pointer-events: none;
}

.fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  transform: translate(35%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,207,0.98) 0%, rgba(244,215,122,0.95) 42%, rgba(212,175,55,0.72) 70%, rgba(212,175,55,0) 100%);
  box-shadow:
    0 0 14px rgba(244,215,122,0.45),
    0 0 26px rgba(212,175,55,0.30);
  pointer-events: none;
}

.earn-seconds-wrap {
  width: 100%;
  max-width: 100%;
  margin: 2px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.earn-seconds-copy-inline {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-align: center;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.02em;
}

.earn-seconds-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.04),
    0 0 0 1px rgba(212,175,55,0.03);
}

.earn-seconds-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212,175,55,0.45), rgba(244,215,122,0.95));
  box-shadow: 0 0 12px rgba(212,175,55,0.18);
  transition: width 0.18s linear;
}

.earn-seconds-copy {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.player-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  position: relative;
}



@media (max-width: 900px) {
  .player-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .player-actions .metal-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 8px;
    font-size: 11px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .player-actions .metal-btn .icon {
    margin-right: 0;
    font-size: 17px;
  }

  .player-actions .skip-button-content {
    gap: 4px;
    justify-content: center;
    width: 100%;
  }

  .player-actions .skip-coin-icon {
    width: 13px;
    height: 13px;
  }

  .player-actions .skip-cost {
    font-size: 11px;
  }
}

.feature-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.volume-wrap {
  display: none; /* volume zit nu in player-actions */
}

.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.volume-slider-inline {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.22s ease, opacity 0.18s ease;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 24px rgba(0,0,0,0.28);
  border-radius: 12px;
  padding: 0;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
}

.volume-control.open .volume-slider-inline {
  width: 140px;
  opacity: 1;
  padding: 10px 14px;
}

.volume-slider-inline input[type="range"] {
  width: 110px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.volume-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.volume-button:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(212,175,55,0.35);
  color: rgba(255,255,255,0.95);
}

.volume-button:active {
  transform: scale(0.94);
}

.volume-button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.volume-button .icon-muted {
  display: none;
}

.volume-button.muted .icon-on {
  display: none;
}

.volume-button.muted .icon-muted {
  display: block;
}

.listeners-pill {
  margin: 4px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: #d9d9d9;
  font-size: var(--fs-body);
  box-shadow: none;
  backdrop-filter: none;
  font-family: 'Manrope', sans-serif;
  opacity: 0.88;
}

.listeners-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(212,175,55,0.5);
  flex-shrink: 0;
}

.listeners-icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.concept-section {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 0 20px;
}

.concept-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at top, rgba(212,175,55,0.10), transparent 55%),
    linear-gradient(180deg, rgba(20,20,20,0.82) 0%, rgba(12,12,12,0.90) 100%);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.28),
    0 0 28px rgba(212,175,55,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.concept-kicker {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.82;
  margin-bottom: 12px;
}

.concept-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 36px);
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

.concept-copy {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

.join-prompt {
  margin-top: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  color: #fff1c0;
}

.join-cta-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.stats-row {
  max-width: 900px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.stat-card {
  background: transparent;
  border-radius: 0;
  padding: 18px 8px 10px;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.85), transparent);
  opacity: 0.8;
}

.stat-label {
  color: var(--muted);
  font-size: var(--fs-stat-label);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  opacity: 0.78;
}

.stat-value {
  color: var(--gold);
  font-size: var(--fs-stat-value);
  font-weight: 700;
  text-shadow:
    0 1px 10px rgba(0,0,0,0.25),
    0 0 18px rgba(212,175,55,0.08);
  font-family: 'Space Grotesk', sans-serif;
}

@media (max-width: 760px) {
  body {
    padding: 0 14px calc(var(--mobile-bottom-nav-height) + 18px);
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.50) 0%, rgba(7, 7, 7, 0.76) 42%, rgba(7, 7, 7, 0.86) 100%),
      radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 26%),
      url("../../bg-mobile-final-1080x1920.webp");
    background-size: cover, auto, 100% auto;
    background-position: center top, center top, center top;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-attachment: scroll, scroll, scroll;
  }

  .desktop-side-nav {
    display: none;
  }

  .mobile-bottom-nav-wrap {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--mobile-bottom-nav-height);
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(212,175,55,0.08);
    box-shadow: 0 -8px 28px rgba(0,0,0,0.28);
    z-index: 130;
  }

  .mobile-bottom-nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2px;
    padding: 8px 8px 10px;
  }

  .mobile-nav-link {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    color: #f4f4f4;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: 'Manrope', sans-serif;
    padding: 6px 2px;
    background: transparent;
  }

  .mobile-nav-link.hidden {
    display: none !important;
  }

  .mobile-nav-link.active {
    color: #fff5d2;
  }

  .mobile-nav-label {
    line-height: 1;
  }

  .header-bar {
    grid-template-columns: 90px 1fr 42px;
    min-height: 68px;
    padding: 6px 8px 2px 6px;
  }

  .header-left {
    justify-content: flex-start;
    margin-left: -2px;
  }

  .currency-badge {
    min-height: 40px;
    width: max-content;
    min-width: 80px;
    max-width: none;
    padding: 0 12px 0 10px;
    gap: 8px;
    flex: 0 0 auto;
    flex-shrink: 0;
  }

  .currency-badge-icon {
    width: 24px;
    height: 24px;
  }

  .currency-badge-value {
    font-size: 14px;
    white-space: nowrap;
  }

  .header-logo {
    width: min(200px, 40vw);
  }

  .header-icon-btn,
  .header-avatar-btn {
    width: 38px;
    height: 38px;
  }

  .account-menu {
  display: none !important;
    top: 48px;
    right: 0;
  }

  .radio-stage {
    min-height: 48vh;
    margin-top: 18px;
  }

  .overlay-content {
    padding: 12px;
    gap: 14px;
  }

  .overlay-title {
    font-size: clamp(28px, 10vw, 46px);
    max-width: 11ch;
  }

  .overlay-subcopy {
    font-size: 14px;
    line-height: 1.6;
  }

  .start-btn {
    min-width: 220px;
    min-height: 62px;
    font-size: 15px;
    padding: 0 28px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .waveform-wrap,
  .time-row,
  .progress,
  .earn-seconds-wrap {
    max-width: 100%;
  }

  .waveform {
    height: 38px;
    gap: 3px;
  }

  .waveform-bar {
    min-width: 3px;
  }

  .tune-title {
    font-size: clamp(21px, 6vw, 30px);
    margin-bottom: 3px;
  }

  .artist-wrap {
    font-size: 15px;
  }

  .submit-link {
    width: 100%;
    max-width: 320px;
  }

  .volume-control.open .volume-slider-inline {
    width: 120px;
  }

  .volume-slider-inline input[type="range"] {
    width: 120px;
  }

  .progress {
    height: 12px;
  }

  .fill::after {
    width: 14px;
    height: 14px;
  }

  .concept-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .concept-copy {
    font-size: 14px;
    line-height: 1.7;
  }

  .earn-seconds-copy {
    font-size: 10px;
  }

  .skip-coin-icon {
    width: 16px;
    height: 16px;
  }
}

.pause-btn-playing .icon {
  color: #111;
}


/* v8 header + mobile account menu refinements */
.account-menu:not(.hidden) {
  display: block !important;
}

.header-logo {
  width: min(216px, 33.75vw);
}

@media (max-width: 768px) {
  .header-wrap .site-shell > header,
  .header-wrap .site-header,
  .header-wrap header {
    grid-template-columns: 72px 1fr 72px;
    gap: 8px;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-center {
    justify-content: center;
  }

  .header-right {
    justify-content: flex-end;
  }

  .header-logo-link {
    width: 100%;
    justify-content: center;
  }

  .header-logo {
    width: min(150px, 46vw);
    margin: 0 auto;
  }

  .account-menu {
    top: 50px;
    right: 0;
    min-width: 180px;
    padding: 8px;
  }

  .account-menu-actions {
    gap: 6px;
  }

  .account-menu .metal-btn,
  .account-menu .account-menu-link {
    min-height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }
}


/* v8 concept card polish */
.concept-card {
  overflow: hidden;
}

.concept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%, transparent 82%, rgba(212,175,55,0.04));
  pointer-events: none;
}

.concept-title {
  margin-bottom: 18px;
}

.concept-copy + .concept-copy {
  margin-top: 18px;
}

.concept-copy--final {
  margin-top: 24px !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #fff1c0;
}

.join-prompt {
  margin-top: 30px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .concept-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .concept-copy {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  .join-prompt {
    font-size: 21px;
  }
}


/* v9 mobile logo alignment + concept spacing */
.concept-inline-coin {
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: -2px;
  margin: 0 2px;
  display: inline-block;
}

.concept-copy + .concept-copy {
  margin-top: 36px;
}

.join-prompt {
  margin-top: 42px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .header-center {
    justify-content: flex-start;
  }

  .header-logo-link {
    justify-content: flex-start;
    transform: translateX(-12px);
  }

  .header-logo {
    width: min(150px, 46vw);
    margin: 0;
  }

  .concept-copy + .concept-copy {
    margin-top: 34px;
  }

  .join-prompt {
    margin-top: 40px;
    margin-bottom: 12px;
  }
}


/* v10 unified mobile header + upward account menu */
@media (max-width: 768px) {
  .header-wrap .site-shell > header,
  .header-wrap .site-header,
  .header-wrap header {
    grid-template-columns: 72px 1fr 72px;
    gap: 8px;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-center {
    justify-content: center;
  }

  .header-right {
    justify-content: flex-end;
  }

  .header-logo-link {
    width: 100%;
    justify-content: center;
    transform: none;
  }

  .header-logo {
    width: min(150px, 46vw);
    margin: 0 auto;
  }

  .account-menu {
    top: auto;
    bottom: 50px;
    right: 0;
    min-width: 180px;
    padding: 8px;
  }

  .account-menu-actions {
    gap: 6px;
  }

  .account-menu .metal-btn,
  .account-menu .account-menu-link {
    min-height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }
}


/* v11 mobile account menu visibility fix */
@media (max-width: 768px) {
  .header-right {
    overflow: visible;
  }

  .account-menu {
    top: 50px;
    bottom: auto;
    right: 0;
    left: auto;
    min-width: 176px;
    max-width: min(220px, calc(100vw - 20px));
    transform: none;
  }
}


/* v13 remove notifications shortcut from avatar popup */
#accountNotificationsLink {
  display: none !important;
}


/* v18 genre label + signed-in news feed */
.artist-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tune-genre {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(20,20,20,0.82), rgba(10,10,10,0.92));
  color: #f7e6ac;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 8px 18px rgba(0,0,0,0.18);
}

.news-feed-section {
  max-width: 780px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.news-feed-card {
  position: relative;
  border-radius: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(212,175,55,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 55%),
    linear-gradient(180deg, rgba(20,20,20,0.84) 0%, rgba(12,12,12,0.92) 100%);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.24),
    0 0 24px rgba(212,175,55,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.news-feed-kicker {
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.news-feed-viewport {
  overflow: hidden;
}

.news-feed-list {
  display: grid;
  gap: 10px;
  transition: transform 0.38s ease, opacity 0.28s ease;
}

.news-feed-list.is-shifting {
  transform: translateY(-18px);
  opacity: 0.25;
}

.news-feed-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(180deg, rgba(17,17,17,0.88), rgba(10,10,10,0.94));
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.45;
}

.news-feed-item strong {
  color: #fff1c0;
  font-weight: 700;
}

.news-feed-empty {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 768px) {
  .artist-wrap {
    gap: 8px;
  }

  .tune-genre {
    min-height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }

  .news-feed-section {
    margin-top: 16px;
    padding: 0 10px;
  }

  .news-feed-card {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .news-feed-item {
    min-height: 44px;
    font-size: 17px;
    padding: 11px 12px;
  }
}


/* v18 title row */
.tune-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tune-title {
  margin-bottom: 0;
}


/* v19 feed polish */
.news-feed-section {
  max-width: 780px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.news-feed-card {
  display: none !important;
}

.news-feed-kicker {
  margin-bottom: 14px;
  text-align: center;
}

.news-feed-viewport {
  overflow: hidden;
}

.news-feed-list {
  display: grid;
  gap: 10px;
  transition: transform 0.42s ease, opacity 0.28s ease;
  transform: translateY(0);
}

.news-feed-list.is-shifting {
  transform: translateY(-22px);
  opacity: 0.55;
}

.news-feed-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.45;
}

.news-feed-actor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.news-feed-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  flex: 0 0 auto;
}

.news-feed-avatar-fallback {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3a2d0d, #a98325);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  flex: 0 0 auto;
}

.news-feed-name,
.news-feed-tune {
  color: #fff1c0;
  font-weight: 700;
}

.news-feed-copy {
  min-width: 0;
}

@media (max-width: 768px) {
  .news-feed-item {
    font-size: 17px;
    gap: 9px;
  }

  .news-feed-avatar,
  .news-feed-avatar-fallback {
    width: 26px;
    height: 26px;
  }
}


/* v20 feed separators + continuous scroll layout */
.news-feed-viewport {
  position: relative;
  max-height: 168px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.news-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: none;
  will-change: transform;
}

.news-feed-list.is-shifting {
  transform: none;
  opacity: 1;
}

.news-feed-item {
  position: relative;
  min-height: 56px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 12px 0;
  border: none;
  background: transparent;
}

.news-feed-item::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.22), rgba(255,255,255,0.06), transparent 96%);
}

.news-feed-item:last-child::after {
  opacity: 0.75;
}

.news-feed-item-avatar {
  width: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.news-feed-item-body {
  min-width: 0;
  display: block;
}

.news-feed-actor {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.news-feed-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  flex: 0 0 auto;
}

.news-feed-avatar-fallback {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3a2d0d, #a98325);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  flex: 0 0 auto;
}

.news-feed-copy {
  min-width: 0;
}

@media (max-width: 768px) {
  .news-feed-viewport {
    max-height: 162px;
  }

  .news-feed-item {
    min-height: 54px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 10px;
    padding: 11px 0;
  }

  .news-feed-item::after {
    left: 40px;
  }

  .news-feed-item-avatar {
    width: 30px;
  }

  .news-feed-avatar,
  .news-feed-avatar-fallback {
    width: 28px;
    height: 28px;
  }
}


/* v21 radio/feed separator + title/genre alignment */
.news-feed-section {
  border-top: none;
  padding-top: 18px;
}

.tune-title-row {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  width: min(100%, 640px);
  margin: 0 auto;
  gap: 0 8px;
}

.tune-title-row .tune-title {
  grid-column: 2;
  text-align: center;
}

.tune-title-row .tune-genre {
  grid-column: 3;
  justify-self: start;
  margin-left: 0;
}

.tune-title-row .tune-nationality {
  grid-column: 4;
  justify-self: start;
  margin-left: 0;
}

@media (max-width: 768px) {
  .news-feed-section {
    padding-top: 16px;
  }

  .tune-title-row {
    width: min(100%, 100%);
  }

  .tune-title-row .tune-genre {
    margin-left: 10px;
  }
}

.artist-flag {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  flex: 0 0 auto;
}

.artist-name-text {
  display: inline-block;
}


/* v22 mobile background force */
@media (max-width: 768px) {
  body {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.46) 0%, rgba(7, 7, 7, 0.72) 45%, rgba(7, 7, 7, 0.84) 100%),
      radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 30%),
      url("../../bg-mobile-final-1080x1920.webp") !important;
    background-size: cover, auto, 100% auto !important;
    background-position: center top, center top, center top !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    background-attachment: scroll, scroll, scroll !important;
  }
}


@media (max-width: 768px) {
  body {
    background-size: cover, auto, 100% auto !important;
    background-position: center top, center top, center top !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    background-attachment: scroll, scroll, scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    body {
      background-size: cover, auto, cover !important;
      background-position: center top, center top, center top !important;
      background-attachment: scroll, scroll, scroll !important;
    }
  }
}


.artist-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.artist-flag {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}


.like-own-disabled,
.like-own-disabled:hover {
  opacity: 0.45;
  filter: grayscale(0.35);
  cursor: not-allowed;
  transform: none;
}

.like-own-disabled .icon {
  color: rgba(255,255,255,0.72);
}
/* ============================================================
   featured-artists.css — v2
   Passend bij de 60 Seconds FM stijl
   ============================================================ */

/* ── Sectie ─────────────────────────────────────────────────── */
.fa-section {
  max-width: 100%;
  margin: 32px auto 0;
  padding: 0 20px;
}

/* 3-column grid: 50% large left / 25% small / 25% small */
.fa-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

/* Small cards: stacked layout */
.fa-card--small .fa-body {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: unset !important;
  padding: 18px 16px 14px !important;
  gap: 10px !important;
  align-items: flex-start !important;
}

.fa-card--small .fa-photo-wrap {
  width: 56px !important;
  height: 56px !important;
}

.fa-card--small .fa-name {
  font-size: 15px !important;
  white-space: normal !important;
}

.fa-card--small .fa-bio {
  display: none !important;
}

.fa-card--small .fa-footer {
  display: none !important;
}

.fa-card--small .fa-divider {
  display: none !important;
}

/* On mobile: stack vertically, hide small cards */
@media (max-width: 768px) {
  .fa-grid {
    grid-template-columns: 1fr;
  }
  .fa-card--small {
    display: none;
  }
}

.fa-kicker {
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ── Card ───────────────────────────────────────────────────── */
.fa-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.22);
  background:
    linear-gradient(160deg, rgba(255,232,140,0.22) 0%, rgba(212,175,55,0.10) 50%, rgba(255,255,255,0.03) 100%),
    radial-gradient(ellipse at top, rgba(212,175,55,0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(42,34,14,0.85) 0%, rgba(22,16,5,0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,232,140,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 24px 64px rgba(0,0,0,0.38),
    0 0 0 0.5px rgba(212,175,55,0.10),
    0 0 48px rgba(212,175,55,0.18),
    0 0 80px rgba(212,175,55,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  will-change: transform, opacity;
}

/* ── Progress bar ───────────────────────────────────────────── */
.fa-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  border-radius: 2px 2px 0 0;
}

.fa-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    var(--gold-dark) 0%,
    var(--gold) 50%,
    var(--gold-2) 100%);
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* ── Body ───────────────────────────────────────────────────── */
.fa-body {
  display: grid !important;
  grid-template-columns: 88px 1fr !important;
  gap: 20px !important;
  padding: 24px 22px 18px !important;
  align-items: flex-start !important;
  position: relative !important;
  z-index: 2 !important;
}

/* ── Foto ───────────────────────────────────────────────────── */
.fa-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.35);
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.08),
    0 8px 24px rgba(0,0,0,0.40);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fa-photo-wrap.fa-no-photo::after {
  content: attr(data-initials);
  font-size: 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fa-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Info ───────────────────────────────────────────────────── */
.fa-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.fa-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.97);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fa-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Meta pills ─────────────────────────────────────────────── */
.fa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fa-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

/* ── Tune titel ─────────────────────────────────────────────── */
.fa-tune {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,232,140,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: none !important;
  padding-left: 0 !important;
}

/* ── Bio ────────────────────────────────────────────────────── */
.fa-bio {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

/* ── View profile link ──────────────────────────────────────── */
.fa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.28);
  background: rgba(212,175,55,0.07);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--gold);
  text-decoration: none;
  width: fit-content;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fa-link:hover {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-1px);
}

/* ── Scheidingslijn ─────────────────────────────────────────── */
.fa-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,175,55,0.15) 20%,
    rgba(212,175,55,0.15) 80%,
    transparent);
  margin: 0 24px;
}

/* ── Footer: pijlen + dots ──────────────────────────────────── */
.fa-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px 20px;
}

.fa-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.60);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fa-nav-btn:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.35);
  color: var(--gold);
  transform: scale(1.08);
}

.fa-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.fa-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, width 0.22s ease;
}

.fa-dot.active {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 18px;
  border-radius: 999px;
  transform: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 520px) {
  .fa-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 18px 16px;
    gap: 14px;
  }

  .fa-photo-wrap {
    width: 82px;
    height: 82px;
  }

  .fa-name {
    font-size: 19px;
  }

  .fa-meta {
    justify-content: center;
  }

  .fa-tune {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .fa-link {
    align-self: center;
    margin: 0 auto;
  }

  .fa-bio {
    -webkit-line-clamp: 4;
    text-align: left;
  }
}

/* ── Safe patch: clean dark background + white header slogan ────────
   Scope: visual only. No layout/display/position changes. */
body {
  background: #050507 !important;
  background-image:
    linear-gradient(180deg, #050507 0%, #08080b 52%, #030304 100%) !important;
  background-size: auto !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.header-slogan {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

@media (max-width: 768px) {
  body {
    background: #050507 !important;
    background-image:
      linear-gradient(180deg, #050507 0%, #08080b 52%, #030304 100%) !important;
    background-size: auto !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
  }
}

/* ── Safe patch: radio controls + glow polish (no sidebar changes) ─────
   Scope: homepage content only. Does not target desktop/mobile sidebar nav. */

/* More premium depth on main content cards only */
.radio-shell,
.start-overlay,
.fa-card,
.concept-card {
  border-color: rgba(244, 215, 122, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(0, 0, 0, 0.46),
    0 22px 64px rgba(0, 0, 0, 0.40),
    0 0 34px rgba(212, 175, 55, 0.075) !important;
}

.radio-shell:hover,
.fa-card:hover,
.concept-card:hover {
  border-color: rgba(244, 215, 122, 0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.50),
    0 26px 74px rgba(0, 0, 0, 0.46),
    0 0 46px rgba(212, 175, 55, 0.13) !important;
}

/* Radio buttons: match the provided reference, no gradient fills */
.player-actions {
  align-items: center !important;
  gap: 8px !important;
}

.player-actions > .metal-btn {
  min-width: 88px !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(19, 19, 21, 0.76) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(0, 0, 0, 0.60),
    0 12px 26px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  text-shadow: none !important;
  transform: none;
}

.player-actions > .metal-btn:hover {
  border-color: rgba(244, 215, 122, 0.34) !important;
  background: rgba(24, 24, 26, 0.84) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.095),
    inset 0 -1px 0 rgba(0, 0, 0, 0.62),
    0 16px 30px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(212, 175, 55, 0.12) !important;
  transform: translateY(-1px) !important;
}

/* Center play/pause control */
.player-actions > #pauseBtn {
  width: 86px !important;
  min-width: 86px !important;
  height: 86px !important;
  min-height: 86px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(244, 215, 122, 0.82) !important;
  background: rgba(24, 20, 10, 0.42) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 204, 0.22),
    inset 0 -10px 22px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 0 30px rgba(212, 175, 55, 0.34),
    0 0 66px rgba(212, 175, 55, 0.22) !important;
}

.player-actions > #pauseBtn:hover {
  border-color: rgba(255, 236, 169, 0.95) !important;
  background: rgba(36, 30, 14, 0.54) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 204, 0.28),
    inset 0 -10px 22px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(212, 175, 55, 0.30),
    0 0 38px rgba(212, 175, 55, 0.44),
    0 0 82px rgba(212, 175, 55, 0.26) !important;
  transform: translateY(-1px) scale(1.015) !important;
}

.player-actions > #pauseBtn .icon {
  margin: 0 !important;
  font-size: 32px !important;
  line-height: 1 !important;
  color: #ffffff !important;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.18));
}

.player-actions .skip-button-content {
  gap: 8px !important;
}

.player-actions .skip-coin-icon {
  width: 18px !important;
  height: 18px !important;
  filter: drop-shadow(0 0 8px rgba(244, 215, 122, 0.22));
}

.player-actions .skip-cost {
  color: rgba(255,255,255,0.74) !important;
}

/* Non-sidebar buttons on homepage: remove gradients, keep premium outline/glow */
.start-btn,
.fa-link,
.fa-nav-btn,
.join-cta,
.concept-card .metal-btn,
.news-feed-section button {
  background: rgba(18, 18, 20, 0.76) !important;
  color: #f4d77a !important;
  border-color: rgba(212, 175, 55, 0.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.30),
    0 0 20px rgba(212, 175, 55, 0.10) !important;
  text-shadow: none !important;
}

.start-btn:hover,
.fa-link:hover,
.fa-nav-btn:hover,
.join-cta:hover,
.concept-card .metal-btn:hover,
.news-feed-section a:hover,
.news-feed-section button:hover {
  background: rgba(24, 24, 26, 0.88) !important;
  border-color: rgba(244, 215, 122, 0.70) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(212, 175, 55, 0.18) !important;
}

/* Featured artist card: subtle photo-like depth without changing layout.
   A true dynamic profile-photo background needs JS/inline CSS because CSS cannot read the img src into the parent background. */
.fa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 34%, rgba(244, 215, 122, 0.12), transparent 30%),
    radial-gradient(circle at 72% 26%, rgba(255,255,255,0.055), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.028) 48%, transparent 78%);
  opacity: 0.72;
  z-index: 0;
}

.fa-card > * {
  position: relative;
  z-index: 1;
}

.fa-photo-wrap {
  border-color: rgba(244, 215, 122, 0.72) !important;
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(212, 175, 55, 0.24) !important;
}

@media (max-width: 900px) {
  .player-actions {
    gap: 10px !important;
  }

  .player-actions > .metal-btn {
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0 12px !important;
  }

  .player-actions > #pauseBtn {
    width: 72px !important;
    min-width: 72px !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 !important;
  }

  .player-actions > #pauseBtn .icon {
    font-size: 28px !important;
  }
}

/* ============================================================
   v23 index premium upgrade — safe visual layer only
   Scope: homepage content/radio/featured cards. Sidebar untouched.
   ============================================================ */

:root {
  --premium-bg-0: #050506;
  --premium-bg-1: #0a0a0c;
  --premium-panel: rgba(14, 14, 16, 0.72);
  --premium-panel-strong: rgba(18, 18, 20, 0.86);
  --premium-border: rgba(255, 255, 255, 0.105);
  --premium-gold-border: rgba(212, 175, 55, 0.42);
  --premium-glow-soft: rgba(212, 175, 55, 0.14);
  --premium-glow-strong: rgba(212, 175, 55, 0.32);
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(212, 175, 55, 0.10), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(244, 215, 122, 0.055), transparent 26%),
    linear-gradient(180deg, var(--premium-bg-1) 0%, var(--premium-bg-0) 52%, #020203 100%) !important;
  background-attachment: fixed !important;
}

body::before {
  display: none !important;
  opacity: 0 !important;
}

.header-slogan {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 0 18px rgba(255,255,255,0.10), 0 0 18px rgba(212,175,55,0.14) !important;
}

.header-logo {
  filter:
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.16)) !important;
}

.site-shell {
  position: relative;
}

.radio-stage {
  min-height: auto !important;
  margin-top: 28px !important;
}

.radio-shell:not(.pre-live),
.start-overlay .overlay-content {
  border-radius: 30px !important;
  border: 1px solid rgba(212, 175, 55, 0.28) !important;
  background:
    radial-gradient(circle at 50% 112%, rgba(212,175,55,0.10), transparent 45%),
    linear-gradient(180deg, rgba(20,20,22,0.82), rgba(8,8,10,0.88)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.65),
    0 26px 70px rgba(0,0,0,0.44),
    0 0 0 1px rgba(212,175,55,0.06),
    0 0 50px rgba(212,175,55,0.11) !important;
  backdrop-filter: blur(20px) saturate(118%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(118%) !important;
}

.radio-shell:not(.pre-live) {
  padding: clamp(26px, 4vw, 44px) clamp(18px, 4vw, 48px) !important;
  max-width: 900px !important;
  overflow: hidden;
}

.radio-shell:not(.pre-live)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(212,175,55,0.10), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(212,175,55,0.07), transparent 22%),
    radial-gradient(circle at 84% 68%, rgba(244,215,122,0.055), transparent 24%);
  opacity: 0.92;
}

.radio-shell-content {
  position: relative;
  z-index: 1;
}

.now-playing {
  color: #f4d77a !important;
  opacity: 0.96 !important;
  text-shadow: 0 0 18px rgba(212,175,55,0.24);
}

.tune-title {
  color: #ffffff !important;
  letter-spacing: -0.025em !important;
  text-shadow: 0 12px 34px rgba(0,0,0,0.55), 0 0 24px rgba(255,255,255,0.05) !important;
}

.artist-wrap,
.earn-seconds-copy,
.time-row,
.listeners-pill {
  color: rgba(255,255,255,0.74) !important;
}

.progress {
  height: 10px !important;
  background: rgba(255,255,255,0.075) !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.05),
    0 0 22px rgba(212,175,55,0.12) !important;
}

.fill {
  background: #f4c84d !important;
  box-shadow: 0 0 18px rgba(244,200,77,0.56), 0 0 36px rgba(212,175,55,0.28) !important;
}

.fill::before { display: none !important; }

.player-actions {
  gap: clamp(12px, 2.1vw, 28px) !important;
  align-items: center !important;
}

.player-actions > .metal-btn,
.volume-button {
  background: rgba(19, 19, 21, 0.82) !important;
  color: rgba(255,255,255,0.84) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -12px 22px rgba(0,0,0,0.22),
    0 14px 28px rgba(0,0,0,0.32),
    0 0 18px rgba(212,175,55,0.045) !important;
}

.player-actions > .metal-btn:hover,
.volume-button:hover {
  border-color: rgba(244,215,122,0.45) !important;
  background: rgba(26, 26, 28, 0.90) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -12px 22px rgba(0,0,0,0.24),
    0 18px 34px rgba(0,0,0,0.36),
    0 0 28px rgba(212,175,55,0.14) !important;
}

.player-actions > #pauseBtn {
  background: rgba(189, 147, 39, 0.70) !important;
  color: #ffffff !important;
  border-color: rgba(255, 230, 151, 0.76) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -18px 28px rgba(83, 53, 0, 0.28),
    0 16px 34px rgba(0,0,0,0.44),
    0 0 0 1px rgba(244,215,122,0.22),
    0 0 30px rgba(244,215,122,0.38),
    0 0 72px rgba(212,175,55,0.26) !important;
}

.submit-link,
.start-btn,
.fa-link,
.fa-nav-btn,
.news-feed-section button,
.concept-card a,
.concept-card button {
  background: rgba(18, 18, 20, 0.78) !important;
  color: #f4d77a !important;
  border: 1px solid rgba(212,175,55,0.42) !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 12px 26px rgba(0,0,0,0.30),
    0 0 22px rgba(212,175,55,0.10) !important;
}

.submit-link:hover,
.start-btn:hover,
.fa-link:hover,
.fa-nav-btn:hover,
.news-feed-section a:hover,
.news-feed-section button:hover,
.concept-card a:hover,
.concept-card button:hover {
  background: rgba(24, 24, 26, 0.92) !important;
  border-color: rgba(244,215,122,0.66) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 16px 34px rgba(0,0,0,0.36),
    0 0 34px rgba(212,175,55,0.18) !important;
}

.fa-section {
  margin-top: 34px !important;
}

.fa-kicker,
.news-feed-kicker {
  color: rgba(255,255,255,0.78) !important;
  text-shadow: 0 0 18px rgba(212,175,55,0.12);
}

.fa-card {
  isolation: isolate;
  border-color: rgba(212,175,55,0.38) !important;
  background:
    radial-gradient(circle at 18% 24%, rgba(212,175,55,0.38), transparent 42%),
    radial-gradient(ellipse at 80% 10%, rgba(255,220,100,0.18), transparent 45%),
    linear-gradient(150deg, rgba(40,32,12,0.84), rgba(18,12,4,0.90)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.64),
    0 24px 68px rgba(0,0,0,0.44),
    0 0 48px rgba(212,175,55,0.14) !important;
}

.fa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image: var(--fa-bg-image), radial-gradient(circle at 20% 24%, rgba(212,175,55,0.10), transparent 32%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: blur(1px) saturate(1.04);
  transform: scale(1.04);
  transition: opacity 0.28s ease;
}

.fa-card.has-fa-bg::before {
  opacity: 0.66;
}

.fa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.86) 0%, rgba(8,8,10,0.62) 46%, rgba(8,8,10,0.90) 100%),
    radial-gradient(circle at 20% 22%, rgba(244,215,122,0.10), transparent 34%);
}

.fa-card > * {
  position: relative;
  z-index: 1;
}

.fa-photo-wrap {
  border-color: rgba(244,215,122,0.78) !important;
  box-shadow:
    0 0 0 3px rgba(212,175,55,0.12),
    0 18px 34px rgba(0,0,0,0.46),
    0 0 36px rgba(212,175,55,0.28) !important;
}

.fa-name { color: #fff !important; }
.fa-pill { background: rgba(255,255,255,0.065) !important; }

.news-feed-section,
.concept-card {
  border-color: rgba(255,255,255,0.09) !important;
  background:
    linear-gradient(180deg, rgba(18,18,20,0.70), rgba(8,8,10,0.78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 54px rgba(0,0,0,0.34),
    0 0 38px rgba(212,175,55,0.065) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

@media (max-width: 900px) {
  .radio-shell:not(.pre-live) {
    padding: 28px 16px !important;
    border-radius: 26px !important;
  }

  .player-actions {
    grid-template-columns: 1fr 72px 1fr !important;
  }
}

/* PREMIUM UI V3 - controlled visual layer, no sidebar menu changes */
:root{
  --premium-bg:#050507;
  --premium-surface:rgba(18,18,22,.72);
  --premium-surface-strong:rgba(24,24,29,.86);
  --premium-border:rgba(255,255,255,.105);
  --premium-gold:#f5c84b;
  --premium-gold-soft:rgba(245,200,75,.38);
  --premium-gold-faint:rgba(245,200,75,.13);
  --premium-text:#fff;
  --premium-muted:rgba(255,255,255,.68);
}

body{
  background:
    linear-gradient(180deg,
      rgba(7,7,7,0.08) 0%,
      rgba(7,7,7,0.25) 45%,
      rgba(7,7,7,0.85) 75%,
      rgba(7,7,7,1.00) 90%
    ),
    url("../../icons/background-radio.jpg"),
    radial-gradient(circle at 50% -12%, rgba(245,200,75,.14), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(146,74,255,.10), transparent 26%),
    radial-gradient(circle at 16% 72%, rgba(245,200,75,.08), transparent 28%),
    var(--premium-bg) !important;
  background-size: 100% 620px, 100% 620px, auto, auto, auto, cover !important;
  background-position: top center, top center, center, center, center, center !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat !important;
  background-attachment: scroll, scroll, scroll, scroll, scroll, fixed !important;
  color:var(--premium-text) !important;
}
body::before{
  opacity:.08 !important;
  filter:saturate(.85) contrast(1.08) !important;
}
.logo-slogan,
.site-slogan,
.slogan,
[class*="slogan"]{
  color:#fff !important;
  text-shadow:0 0 18px rgba(255,255,255,.18),0 0 28px rgba(245,200,75,.12) !important;
}

.radio-shell:not(.pre-live),
.start-overlay,
.fa-card,
.concept-card,
.playlist-card,
.empty-card,
.state-card,
.dashboard-card,
.panel-card,
.hero-card{
  background:var(--premium-surface) !important;
  border:1px solid var(--premium-border) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 24px 70px rgba(0,0,0,.50),
    0 0 42px rgba(245,200,75,.08) !important;
  backdrop-filter:blur(22px) saturate(1.22) !important;
  -webkit-backdrop-filter:blur(22px) saturate(1.22) !important;
}
.radio-shell:not(.pre-live){
  position:relative !important;
  overflow:hidden !important;
  border-color:rgba(245,200,75,.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 0 90px rgba(245,200,75,.055),
    0 28px 88px rgba(0,0,0,.58),
    0 0 56px rgba(245,200,75,.16) !important;
}
.radio-shell:not(.pre-live)::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:
    radial-gradient(circle at 50% 56%, rgba(245,200,75,.11), transparent 20%),
    radial-gradient(circle at 80% 22%, rgba(146,74,255,.10), transparent 25%);
  opacity:.86;
}
.radio-shell-content{position:relative;z-index:1;}

.progress,
.earn-seconds-progress{
  background:rgba(255,255,255,.10) !important;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.60) !important;
}
.progress .fill,
.earn-seconds-fill{
  background:var(--premium-gold) !important;
  box-shadow:0 0 18px rgba(245,200,75,.58),0 0 34px rgba(245,200,75,.22) !important;
}

.player-actions{
  gap:20px !important;
  align-items:center !important;
  justify-content:center !important;
}
.player-actions .metal-btn,
.fa-nav-btn,
.start-btn,
.gold-btn,
.ghost-btn,
.header-icon-btn,
.account-menu-link{
  background:rgba(255,255,255,.055) !important;
  background-image:none !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.13) !important;
  border-radius:999px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 12px 30px rgba(0,0,0,.36),
    0 0 0 rgba(245,200,75,0) !important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background-color .18s ease !important;
}
.player-actions .metal-btn:hover,
.fa-nav-btn:hover,
.start-btn:hover,
.gold-btn:hover,
.ghost-btn:hover,
.header-icon-btn:hover,
.account-menu-link:hover{
  transform:translateY(-2px) !important;
  background:rgba(255,255,255,.075) !important;
  border-color:rgba(245,200,75,.50) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 38px rgba(0,0,0,.42),
    0 0 26px rgba(245,200,75,.25) !important;
}
#pauseBtn{
  width:92px !important;
  height:92px !important;
  min-width:92px !important;
  padding:0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:50% !important;
  background:rgba(245,200,75,.18) !important;
  border:1px solid rgba(245,200,75,.86) !important;
  color:#fff !important;
  font-size:0 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -18px 34px rgba(0,0,0,.28),
    0 18px 44px rgba(0,0,0,.50),
    0 0 26px rgba(245,200,75,.70),
    0 0 62px rgba(245,200,75,.30) !important;
}
#pauseBtn .icon{
  font-size:34px !important;
  line-height:1 !important;
  margin:0 !important;
  transform:translateX(2px);
  text-shadow:0 0 18px rgba(255,255,255,.28) !important;
}
#pauseBtn:hover{
  transform:translateY(-3px) scale(1.035) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 20px 48px rgba(0,0,0,.52),
    0 0 34px rgba(245,200,75,.82),
    0 0 78px rgba(245,200,75,.40) !important;
}
#likeBtn,#skip{
  min-height:54px !important;
  padding:0 28px !important;
}

.fa-card{
  position:relative !important;
  overflow:hidden !important;
  border-color:rgba(245,200,75,.24) !important;
}
.fa-card.has-fa-bg::before{
  content:"";
  position:absolute;
  inset:-12px;
  z-index:0;
  pointer-events:none;
  background-image:var(--fa-bg-image) !important;
  background-size:cover !important;
  background-position:center !important;
  opacity:0.33 !important;
  filter:grayscale(.08) blur(1px) saturate(1.06) !important;
  transform:scale(1.06) !important;
}
.fa-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:rgba(5,5,7,.74) !important;
}
.fa-card>*{position:relative;z-index:1;}
.fa-card:hover,
.news-feed-section:hover,
.concept-card:hover{
  border-color:rgba(245,200,75,.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 28px 78px rgba(0,0,0,.54),
    0 0 48px rgba(245,200,75,.16) !important;
}
.fa-photo-wrap,
.artist-avatar,
.avatar,
.profile-photo-wrap{
  box-shadow:0 0 0 1px rgba(245,200,75,.70),0 0 30px rgba(245,200,75,.30),0 16px 36px rgba(0,0,0,.42) !important;
}
.fa-link,
.concept-cta,
.view-profile,
a.button,
button:not(.side-nav button):not(.desktop-side-nav-panel button){
  background-image:none !important;
}

/* ============================================================
   v24 premium refinements
   - keep radio button icons visible/white
   - lower radio container height
   - coins + hover glow
   - no sidebar menu changes
   ============================================================ */

.player-actions .metal-btn,
.volume-button,
#pauseBtn {
  color: #ffffff !important;
}

.player-actions .metal-btn .icon,
.player-actions .metal-btn svg,
.volume-button svg,
.volume-button .icon,
#pauseBtn .icon,
#pauseBtn svg {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.20)) !important;
}

.player-actions .metal-btn svg *,
.volume-button svg *,
#pauseBtn svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.skip-coin-icon,
.concept-inline-coin,
.currency-badge-icon {
  filter: drop-shadow(0 0 8px rgba(245,200,75,.28)) !important;
}

.radio-stage {
  margin-top: 22px !important;
}

.radio-shell:not(.pre-live) {
  padding-top: clamp(18px, 2.8vw, 28px) !important;
  padding-bottom: clamp(18px, 2.8vw, 28px) !important;
  max-width: 900px !important;
}

.radio-shell-content {
  gap: clamp(10px, 1.8vw, 18px) !important;
}

.now-playing,
.tune-title {
  margin-bottom: 2px !important;
}

.progress-wrap,
.progress-row,
.time-row {
  margin-top: 8px !important;
  margin-bottom: 6px !important;
}

.player-actions {
  margin-top: 10px !important;
  margin-bottom: 6px !important;
}

#pauseBtn {
  width: 78px !important;
  height: 78px !important;
  min-width: 78px !important;
  min-height: 78px !important;
}

#pauseBtn .icon {
  font-size: 30px !important;
}

.currency-badge .header-icon-btn,
.header-icon-btn[aria-label*="coin"],
.header-icon-btn[aria-label*="Coin"],
.header-icon-btn[aria-label*="seconds"],
.header-icon-btn[aria-label*="Seconds"] {
  color: #ffffff !important;
  border-color: rgba(245,200,75,.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 24px rgba(0,0,0,.34),
    0 0 0 rgba(245,200,75,0) !important;
}

.currency-badge .header-icon-btn:hover,
.header-icon-btn[aria-label*="coin"]:hover,
.header-icon-btn[aria-label*="Coin"]:hover,
.header-icon-btn[aria-label*="seconds"]:hover,
.header-icon-btn[aria-label*="Seconds"]:hover {
  color: #ffffff !important;
  border-color: rgba(245,200,75,.86) !important;
  background: rgba(245,200,75,.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 14px 32px rgba(0,0,0,.42),
    0 0 22px rgba(245,200,75,.44),
    0 0 52px rgba(245,200,75,.24) !important;
  transform: translateY(-2px) scale(1.03) !important;
}

@media (max-width: 900px) {
  .radio-shell:not(.pre-live) {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  #pauseBtn {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
  }
}

/* ============================================================
   v24 premium button system — matched to index page
   Scope: page action buttons only. Sidebar/menu navigation excluded.
   ============================================================ */

:root {
  --btn-premium-bg: rgba(255,255,255,.055);
  --btn-premium-bg-hover: rgba(255,255,255,.078);
  --btn-premium-border: rgba(255,255,255,.14);
  --btn-premium-border-hover: rgba(245,200,75,.55);
  --btn-premium-gold: #f5c84b;
}

.main-content button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link),
.main-content .gold-btn,
.main-content .ghost-btn,
.main-content .metal-btn,
.main-content .primary-btn,
.main-content .secondary-btn,
.main-content .submit-btn,
.main-content .save-btn,
.main-content .auth-btn,
.main-content .action-btn,
.main-content .clip-play-btn,
.main-content .store-card-btn,
.main-content .cta-empty-state a,
.main-content .cta-empty-state button,
.artist-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link),
.artist-main .gold-btn,
.artist-main .ghost-btn,
.artist-main .metal-btn,
.artist-main .player-btn,
.artist-main .action-btn,
.artist-main .primary-btn,
.artist-main .secondary-btn,
.liked-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link),
.liked-main .gold-btn,
.liked-main .ghost-btn,
.liked-main .metal-btn,
.liked-main .action-btn,
.submit-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link),
.submit-main .gold-btn,
.submit-main .ghost-btn,
.submit-main .metal-btn,
.submit-main .submit-link,
.submit-main .ghost-link,
.submit-main .clip-play-btn,
.header-icon-btn,
.account-menu-link,
.account-menu button {
  background: var(--btn-premium-bg) !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 1px solid var(--btn-premium-border) !important;
  border-radius: 999px !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 12px 30px rgba(0,0,0,.36),
    0 0 0 rgba(245,200,75,0) !important;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease !important;
}

.main-content button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link):hover,
.main-content .gold-btn:hover,
.main-content .ghost-btn:hover,
.main-content .metal-btn:hover,
.main-content .primary-btn:hover,
.main-content .secondary-btn:hover,
.main-content .submit-btn:hover,
.main-content .save-btn:hover,
.main-content .auth-btn:hover,
.main-content .action-btn:hover,
.main-content .clip-play-btn:hover,
.main-content .store-card-btn:hover,
.main-content .cta-empty-state a:hover,
.main-content .cta-empty-state button:hover,
.artist-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link):hover,
.artist-main .gold-btn:hover,
.artist-main .ghost-btn:hover,
.artist-main .metal-btn:hover,
.artist-main .player-btn:hover,
.artist-main .action-btn:hover,
.artist-main .primary-btn:hover,
.artist-main .secondary-btn:hover,
.liked-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link):hover,
.liked-main .gold-btn:hover,
.liked-main .ghost-btn:hover,
.liked-main .metal-btn:hover,
.liked-main .action-btn:hover,
.submit-main button:not(.desktop-nav-button):not(.mobile-nav-link):not(.desktop-nav-link):hover,
.submit-main .gold-btn:hover,
.submit-main .ghost-btn:hover,
.submit-main .metal-btn:hover,
.submit-main .submit-link:hover,
.submit-main .ghost-link:hover,
.submit-main .clip-play-btn:hover,
.header-icon-btn:hover,
.account-menu-link:hover,
.account-menu button:hover {
  transform: translateY(-2px) !important;
  background: var(--btn-premium-bg-hover) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: var(--btn-premium-border-hover) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 38px rgba(0,0,0,.42),
    0 0 26px rgba(245,200,75,.25) !important;
}

.main-content button svg,
.main-content button svg *,
.artist-main button svg,
.artist-main button svg *,
.liked-main button svg,
.liked-main button svg *,
.submit-main button svg,
.submit-main button svg *,
.header-icon-btn svg,
.header-icon-btn svg *,
.account-menu button svg,
.account-menu button svg * {
  color: #ffffff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.main-content button .icon,
.artist-main button .icon,
.liked-main button .icon,
.submit-main button .icon,
.header-icon-btn .icon {
  color: #ffffff !important;
  opacity: 1 !important;
}

.main-content a.gold-btn,
.artist-main a.gold-btn,
.liked-main a.gold-btn,
.submit-main a.gold-btn,
.submit-main .submit-link {
  color: var(--btn-premium-gold) !important;
}

.main-content a.gold-btn:hover,
.artist-main a.gold-btn:hover,
.liked-main a.gold-btn:hover,
.submit-main a.gold-btn:hover,
.submit-main .submit-link:hover {
  color: #ffffff !important;
}

/* ============================================================
   v26 index layout + radio premium upgrade
   Goal:
   - all homepage content containers share one visual width
   - radio player is more compact but more premium/glowy
   - no sidebar/menu selectors touched
   ============================================================ */

:root {
  --index-content-width: 100%;
  --index-content-gutter: 0px;
  --radio-gold: #f5c84b;
  --radio-gold-2: #ffe69a;
  --radio-panel: rgba(10, 10, 14, .78);
  --radio-panel-strong: rgba(18, 18, 24, .88);
}

/* Keep every index page content block the same width. */
.site-shell {
  width: 100% !important;
  max-width: none !important;
  padding-left: var(--index-content-gutter) !important;
  padding-right: var(--index-content-gutter) !important;
}

.radio-stage,
.fa-section,
.concept-section,
.submit-under-radio {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.news-feed-section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.radio-stage {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  min-height: auto !important;
  margin-top: 12px !important;
}

.radio-shell:not(.pre-live),
.start-overlay .overlay-content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Premium radio card: more attractive, less tall. */
.radio-shell:not(.pre-live) {
  isolation: isolate !important;
  position: relative !important;
  padding: clamp(18px, 2.4vw, 26px) clamp(18px, 3.2vw, 36px) !important;
  border-radius: 34px !important;
  border: 1px solid rgba(255, 230, 151, .34) !important;
  background:
    radial-gradient(circle at 50% -18%, rgba(255,230,151,.24), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(245,200,75,.13), transparent 26%),
    radial-gradient(circle at 94% 74%, rgba(245,200,75,.10), transparent 30%),
    linear-gradient(145deg, rgba(26,24,20,.88), rgba(7,7,10,.92) 48%, rgba(13,11,8,.94)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.72),
    inset 0 0 70px rgba(245,200,75,.06),
    0 18px 42px rgba(0,0,0,.48),
    0 0 0 1px rgba(245,200,75,.06),
    0 0 42px rgba(245,200,75,.20),
    0 0 110px rgba(245,200,75,.10) !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
}

.radio-shell:not(.pre-live)::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  border-radius: 33px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    linear-gradient(120deg, rgba(255,255,255,.13), transparent 21%, transparent 76%, rgba(255,230,151,.12)),
    radial-gradient(ellipse at 50% 50%, rgba(245,200,75,.13), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 92px) !important;
  opacity: .72 !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.35)) !important;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.35)) !important;
}

.radio-shell:not(.pre-live)::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 10% -54px 10% !important;
  height: 92px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(245,200,75,.35), transparent 68%) !important;
  filter: blur(18px) !important;
  opacity: .82 !important;
}

.radio-shell-content {
  position: relative !important;
  z-index: 1 !important;
  gap: clamp(8px, 1.2vw, 13px) !important;
}

.now-playing {
  display: inline-flex !important;
  align-self: center !important;
  width: auto !important;
  margin: 0 auto 2px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  color: var(--radio-gold-2) !important;
  background: rgba(245,200,75,.08) !important;
  border: 1px solid rgba(245,200,75,.20) !important;
  box-shadow: 0 0 22px rgba(245,200,75,.12), inset 0 1px 0 rgba(255,255,255,.08) !important;
  opacity: 1 !important;
}

.waveform-wrap {
  margin: 0 auto !important;
  min-height: 42px !important;
  padding: 6px 0 2px !important;
  filter: drop-shadow(0 0 18px rgba(245,200,75,.16)) !important;
}

.waveform {
  height: 38px !important;
  gap: 5px !important;
  align-items: center !important;
}

.waveform-bar {
  width: 5px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,239,180,.92), rgba(245,200,75,.34)) !important;
  box-shadow: 0 0 14px rgba(245,200,75,.34) !important;
}

.tune-title-row {
  margin-top: 0 !important;
}

.tune-title {
  margin: 0 !important;
  font-size: clamp(18px, 2.4vw, 26px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  color: #fff !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,.12),
    0 18px 34px rgba(0,0,0,.58),
    0 0 24px rgba(245,200,75,.10) !important;
}

.artist-wrap {
  margin: 0 !important;
  color: rgba(255,255,255,.72) !important;
}

.time-row {
  width: min(100%, 720px) !important;
  margin: 4px auto 0 !important;
  color: rgba(255,255,255,.66) !important;
}

.progress {
  width: min(100%, 720px) !important;
  height: 9px !important;
  margin: 0 auto !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  background: rgba(255,255,255,.075) !important;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,.70),
    0 0 26px rgba(245,200,75,.09) !important;
}

.progress .fill,
.fill {
  border-radius: inherit !important;
  background: linear-gradient(90deg, #b88618, #f5c84b 42%, #ffe69a 72%, #d9a72f) !important;
  box-shadow:
    0 0 14px rgba(245,200,75,.72),
    0 0 34px rgba(245,200,75,.34) !important;
}

.earn-seconds-wrap {
  width: min(100%, 720px) !important;
  margin: 2px auto 0 !important;
  padding: 10px 12px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}

.player-actions {
  margin: 6px auto 0 !important;
  gap: 8px !important;
}

.player-actions > .metal-btn,
.volume-button {
  min-height: 36px !important;
  background: rgba(255,255,255,.055) !important;
  background-image: none !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -12px 24px rgba(0,0,0,.26),
    0 12px 26px rgba(0,0,0,.34),
    0 0 18px rgba(245,200,75,.08) !important;
}

.player-actions > .metal-btn:hover,
.volume-button:hover {
  background: rgba(245,200,75,.09) !important;
  border-color: rgba(245,200,75,.58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 16px 34px rgba(0,0,0,.42),
    0 0 28px rgba(245,200,75,.30),
    0 0 70px rgba(245,200,75,.12) !important;
}

#likeBtn,
#skip {
  padding: 0 14px !important;
}

#pauseBtn {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  color: #fff !important;
  border-color: rgba(255,230,151,.88) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.34), transparent 24%),
    rgba(245,200,75,.20) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -18px 28px rgba(75,48,0,.36),
    0 14px 32px rgba(0,0,0,.44),
    0 0 0 6px rgba(245,200,75,.045),
    0 0 32px rgba(245,200,75,.76),
    0 0 86px rgba(245,200,75,.30) !important;
}

#pauseBtn .icon {
  color: #fff !important;
  font-size: 28px !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-shadow: 0 0 18px rgba(255,255,255,.38) !important;
}

#pauseBtn:hover {
  transform: translateY(-3px) scale(1.04) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.42), transparent 25%),
    rgba(245,200,75,.26) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    0 18px 38px rgba(0,0,0,.48),
    0 0 0 8px rgba(245,200,75,.06),
    0 0 42px rgba(245,200,75,.86),
    0 0 108px rgba(245,200,75,.38) !important;
}

.volume-wrap {
  margin-top: 2px !important;
}

/* volume-control: geen override — stijl zit in de volume-button */

.volume-button svg,
.volume-button svg * {
  color: #fff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.listeners-pill {
  margin-top: 2px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.74) !important;
}

.listeners-dot {
  background: var(--radio-gold) !important;
  box-shadow: 0 0 12px rgba(245,200,75,.72), 0 0 26px rgba(245,200,75,.32) !important;
}

/* Match lower homepage cards to the same full content width. */
.fa-card,
.news-feed-section,
.concept-card {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 700px) {
  :root {
    --index-content-gutter: 14px;
  }

  .radio-shell:not(.pre-live) {
    padding: 18px 14px !important;
    border-radius: 28px !important;
  }

  .radio-shell:not(.pre-live)::before {
    border-radius: 27px !important;
  }

  .waveform-wrap {
    min-height: 34px !important;
  }

  .waveform {
    height: 32px !important;
  }

  .player-actions {
    grid-template-columns: 1fr 66px 1fr !important;
    gap: 10px !important;
  }

  #pauseBtn {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    min-height: 66px !important;
  }

  #likeBtn,
  #skip {
    padding: 0 14px !important;
  }
}

/* ══════════════════════════════════════════════
   Content layout: radio links, community rechts
   ══════════════════════════════════════════════ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: start;
  width: 100%;
  padding: 0;
}

.radio-col {
  min-width: 0;
}

.community-col {
  position: sticky;
  top: 90px;
  min-width: 0;
  padding-left: 16px;
  padding-right: 12px;
}

/* radio-stage vult de kolom */
.radio-col .radio-stage {
  max-width: 100%;
  margin: 20px 0 0;
}

/* radio-shell vult de kolom */
.radio-col .radio-shell {
  max-width: 100%;
  padding: 0;
}

/* featured artist vult kolom — zelfde breedte als radio */
.radio-col .fa-section,
.radio-col > .fa-section {
  max-width: 100%;
  margin: 20px 0 0;
  padding: 0;
}

.radio-col .fa-card {
  width: 100%;
}

/* news-feed in de aside kolom */
.community-col .news-feed-section {
  max-width: 100%;
  margin: 32px 0 0;
  padding: 0;
}

/* news-feed-card in de aside: geen max-height scroll clip */
.community-col .news-feed-viewport {
  max-height: none;
}

/* Smallere schermen: stack verticaal */
@media (max-width: 860px) {
  .content-layout {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .community-col {
    position: static;
  }

  .community-col .news-feed-section {
    margin: 0;
  }
}

/* ── Waveform canvas (echte frequentie-visualisatie) ───────── */
.waveform-canvas {
  display: none; /* wordt zichtbaar zodra Web Audio verbonden is */
  width: 100%;
  height: 44px;
  border-radius: 4px;
}

.waveform-fallback {
  /* fallback CSS-animatie — verborgen als canvas actief is */
}

/* ── Like knop icon ─────────────────────────────────────────── */
.btn-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

#likeBtn.is-liked .like-icon {
  filter: brightness(0) saturate(100%) invert(80%) sepia(60%) saturate(400%) hue-rotate(5deg) brightness(110%);
  opacity: 1;
  transform: scale(1.2);
}

#likeBtn.is-liked {
  border-color: rgba(212,175,55,0.50);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 18px rgba(212,175,55,0.22);
}

#likeBtn.is-liked .like-label {
  color: var(--gold);
}

/* ── Waveform canvas: altijd canvas, nooit fallback ─────────── */
.waveform-fallback {
  display: none !important;
}

.waveform-canvas {
  display: block !important;
  width: 100%;
  height: 44px;
  border-radius: 4px;
}

.waveform-wrap {
  width: 100%;
  max-width: 740px;
  margin: 0 auto 4px;
}

/* ── Featured artist: tekst links uitlijnen ─────────────────── */
.fa-body {
  text-align: left !important;
}

.fa-info {
  text-align: left !important;
}

.fa-name,
.fa-role,
.fa-tune,
.fa-bio,
.fa-link {
  text-align: left !important;
}

.fa-meta {
  justify-content: flex-start !important;
}

/* Alleen op mobile centreren */
@media (max-width: 520px) {
  .fa-body {
    text-align: center !important;
  }
  .fa-meta {
    justify-content: center !important;
  }
  .fa-name, .fa-role, .fa-tune, .fa-bio {
    text-align: center !important;
  }
}

/* ============================================================
   v28 safe refinement
   Scope: index radio waveform containment + featured artist visual lift only.
   No HTML/JS changes.
   ============================================================ */

/* Keep the canvas wavetable visually inside the radio player container. */
.radio-shell:not(.pre-live) .waveform-wrap {
  width: 100% !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.radio-shell:not(.pre-live) .waveform-canvas {
  display: block !important;
  width: 100% !important;
  height: 38px !important;
  border-radius: 0 !important;
  background: none !important;
}

/* Make the featured artist profile image background more visible, less black, with a premium glow. */
.fa-card.has-fa-bg::before {
  opacity: 0.7 !important;
  filter: blur(1px) saturate(1.22) contrast(1.06) brightness(1.08) !important;
  transform: scale(1.07) !important;
}

.fa-card::after {
  background:
    linear-gradient(90deg, rgba(5,5,7,.58) 0%, rgba(5,5,7,.42) 44%, rgba(5,5,7,.64) 100%),
    radial-gradient(circle at 20% 24%, rgba(245,200,75,.18), transparent 36%),
    radial-gradient(circle at 78% 12%, rgba(255,230,151,.12), transparent 32%) !important;
}

.fa-card {
  border-color: rgba(245,200,75,.36) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 26px 76px rgba(0,0,0,.48),
    0 0 44px rgba(245,200,75,.18),
    0 0 92px rgba(245,200,75,.075) !important;
}

.fa-photo-wrap {
  border-color: rgba(255,230,151,.82) !important;
  box-shadow:
    0 0 0 3px rgba(245,200,75,.14),
    0 18px 38px rgba(0,0,0,.44),
    0 0 34px rgba(245,200,75,.34),
    0 0 70px rgba(245,200,75,.12) !important;
}

/* ============================================================
   v31 earn seconds text-only placement
   - no earn progress bar/container
   - copy sits above track time/progress
   ============================================================ */
.radio-shell:not(.pre-live) #earnSecondsWrap.earn-seconds-wrap {
  width: min(100%, 720px) !important;
  margin: 2px auto 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.radio-shell:not(.pre-live) #earnSecondsWrap.hidden {
  display: none !important;
}

.radio-shell:not(.pre-live) .earn-seconds-progress,
.radio-shell:not(.pre-live) .earn-seconds-fill {
  display: none !important;
}

.radio-shell:not(.pre-live) #earnSecondsCopy.earn-seconds-copy-inline {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255,255,255,.68) !important;
  font-size: clamp(14px, 1.6vw, 16px) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
  text-shadow: 0 1px 16px rgba(0,0,0,.45) !important;
}

.radio-shell:not(.pre-live) .earn-seconds-amount {
  color: #f5c84b !important;
  font-weight: 800 !important;
  text-shadow: 0 0 18px rgba(245,200,75,.34) !important;
}

.radio-shell:not(.pre-live) .time-row {
  margin-top: 2px !important;
}

/* ── Volume als vierde knop in player-actions ─────────────── */
.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* Slider popup boven de knop */
.volume-control .volume-slider-inline {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.22s ease, opacity 0.18s ease;
  background: rgba(20,16,8,0.92);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 0;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.volume-control.open .volume-slider-inline {
  width: 130px;
  opacity: 1;
  padding: 10px 14px;
}

.volume-slider-inline input[type="range"] {
  width: 100px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Volume knop zelf: zelfde formaat als andere knoppen */
.volume-button.metal-btn {
  min-height: 44px;
  padding: 0 14px;
  gap: 0;
}

.volume-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   Community updates — v2
   ══════════════════════════════════════════════ */

.community-col .news-feed-section {
  margin: 20px 0 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* Verberg oude card wrapper */
.news-feed-card {
  display: none !important;
}

/* Sectie titel */
.community-col .news-feed-kicker {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.28) !important;
  margin-bottom: 14px !important;
  text-align: left !important;
  padding: 0 4px !important;
}

/* Viewport: toon alle items */
.community-col .news-feed-viewport {
  max-height: none !important;
  overflow: visible !important;
}

/* Lijst */
.community-col .news-feed-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* Item rij */
.community-col .news-feed-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: border-color 0.18s ease, background 0.18s ease !important;
  min-height: auto !important;
  cursor: default !important;
}

.community-col .news-feed-item:hover {
  border-color: rgba(212,175,55,0.22) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)) !important;
}

/* Avatar */
.community-col .news-feed-avatar,
.community-col .news-feed-avatar-fallback {
  width: 40px !important;
  height: 40px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.28) !important;
  object-fit: cover !important;
}

.community-col .news-feed-avatar-fallback {
  font-size: 14px !important;
  font-weight: 700 !important;
  background: linear-gradient(145deg, rgba(36,28,8,0.95), rgba(80,60,14,0.9)) !important;
  color: rgba(255,220,100,0.85) !important;
}

/* Tekst */
.community-col .news-feed-copy {
  flex: 1 !important;
  min-width: 0 !important;
  line-height: 1.45 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
  font-family: 'Manrope', sans-serif !important;
}

.community-col .news-feed-name {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600 !important;
}

.community-col .news-feed-tune {
  color: rgba(212,175,55,0.88) !important;
  font-weight: 600 !important;
}

/* Timestamp pill (indien aanwezig) */
.community-col .news-feed-time {
  font-size: 11px !important;
  color: rgba(255,255,255,0.22) !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* ============================================================
   v32 safe UI polish
   Scope only: community updates visual polish + featured artist content styling.
   No layout/grid/HTML/JS changes.
   ============================================================ */

/* Community updates: richer title and item polish without changing layout */
.community-col .news-feed-kicker {
  color: rgba(255,255,255,.92) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 2.8px !important;
  text-shadow:
    0 0 18px rgba(245,200,75,.20),
    0 1px 18px rgba(0,0,0,.55) !important;
}

.community-col .news-feed-kicker::before {
  display: none;
}

.community-col .news-feed-item {
  border-color: rgba(255,255,255,0.07) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 20px rgba(0,0,0,.22) !important;
}

.community-col .news-feed-item:hover {
  border-color: rgba(245,200,75,.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 16px 38px rgba(0,0,0,.31),
    0 0 32px rgba(245,200,75,.10) !important;
}

.community-col .news-feed-avatar,
.community-col .news-feed-avatar-fallback {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border: none !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  object-fit: cover !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.28) !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.community-col .news-feed-copy {
  font-weight: 700 !important;
  color: rgba(255,255,255,.66) !important;
}

.community-col .news-feed-name {
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
}

.community-col .news-feed-tune {
  color: #f5c84b !important;
  font-weight: 900 !important;
  text-shadow: 0 0 14px rgba(245,200,75,.22) !important;
}

.community-col .news-feed-time {
  color: rgba(255,255,255,.38) !important;
  font-weight: 700 !important;
}

/* Featured artist: stronger content hierarchy and larger profile image */
.fa-kicker {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: 2.9px !important;
  text-shadow:
    0 0 22px rgba(245,200,75,.20),
    0 1px 18px rgba(0,0,0,.55) !important;
}

.fa-name {
  color: #fff !important;
  font-size: clamp(30px, 3.3vw, 48px) !important;
  font-weight: 950 !important;
  letter-spacing: -.045em !important;
  line-height: .98 !important;
  text-shadow:
    0 2px 18px rgba(0,0,0,.72),
    0 0 24px rgba(245,200,75,.12) !important;
}

.fa-role {
  color: #f5c84b !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 2.4px !important;
  text-shadow: 0 0 16px rgba(245,200,75,.24) !important;
}

.fa-meta {
  font-weight: 850 !important;
}

.fa-pill {
  color: rgba(255,255,255,.88) !important;
  font-weight: 850 !important;
  border-color: rgba(245,200,75,.18) !important;
  background: rgba(255,255,255,.075) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.fa-tune {
  color: rgba(255,255,255,.92) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: -.015em !important;
}

.fa-bio {
  color: rgba(255,255,255,.74) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.6 !important;
}

.fa-link {
  font-weight: 950 !important;
  letter-spacing: .01em !important;
  color: #fff !important;
  border-color: rgba(245,200,75,.46) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 24px rgba(245,200,75,.13) !important;
}

.fa-link:hover {
  color: #fff !important;
  border-color: rgba(245,200,75,.74) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 0 34px rgba(245,200,75,.24),
    0 14px 32px rgba(0,0,0,.28) !important;
}

.fa-photo-wrap {
  border-radius: 50% !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
}

.fa-photo {
  transform: scale(1.015) !important;
}

@media (max-width: 520px) {
  .fa-photo-wrap {
    width: 72px !important;
    height: 72px !important;
  }

  .fa-name {
    font-size: 30px !important;
  }
}



/* ══ Community updates: geen gele borders ══════════════════ */

/* Section en wrapper: geen border */
.community-col .news-feed-section,
.community-col .news-feed-card,
.community-col .news-feed-viewport,
.community-col .news-feed-list,
.community-col .news-feed-kicker {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Item: subtiele neutrale border, geen geel */
.community-col .news-feed-item {
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Verwijder gele ::after lijn */
.community-col .news-feed-item::after {
  display: none !important;
}

/* Avatar: perfecte cirkel */
.community-col .news-feed-item-avatar {
  width: 40px !important;
  flex-shrink: 0 !important;
}

.community-col .news-feed-avatar {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border: none !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  object-fit: cover !important;
  box-shadow: none !important;
  display: block !important;
}

.community-col .news-feed-avatar-fallback {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border: none !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

/* Geen gele dot voor kicker */
.community-col .news-feed-kicker::before {
  display: none !important;
}

/* ══ Featured artist: grote foto, tekst rechts ══════════════ */
#featuredArtistCard .fa-body {
  display: grid !important;
  grid-template-columns: 160px 1fr !important;
  gap: 24px !important;
  align-items: flex-start !important;
  text-align: left !important;
  padding: 24px !important;
}

#featuredArtistCard .fa-photo-wrap {
  width: 160px !important;
  height: 160px !important;
  grid-row: 1 !important;
  grid-column: 1 !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
}

#featuredArtistCard .fa-info {
  grid-row: 1 !important;
  grid-column: 2 !important;
  min-width: 0 !important;
  text-align: left !important;
}

#featuredArtistCard .fa-name,
#featuredArtistCard .fa-role,
#featuredArtistCard .fa-tune,
#featuredArtistCard .fa-bio,
#featuredArtistCard .fa-meta {
  text-align: left !important;
}

#featuredArtistCard .fa-meta {
  justify-content: flex-start !important;
}

/* news-feed avatar link: nooit een border */
.news-feed-item-avatar,
.community-col .news-feed-item-avatar {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  flex-shrink: 0 !important;
}

/* ============================================================
   v34 safe radio/community/featured refinement
   Scope: index page only. No functional changes.
   ============================================================ */

/* Radio controls: consistent sizing and visible white icons */
#radioShell .player-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

#radioShell .player-actions > .metal-btn,
#radioShell .volume-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(17, 17, 20, 0.78) !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 14px 30px rgba(0,0,0,0.36),
    0 0 18px rgba(245,200,75,0.08) !important;
}

#radioShell .player-actions > .metal-btn:hover,
#radioShell .volume-button:hover,
#radioShell .volume-control.open .volume-button {
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(25, 25, 29, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 16px 34px rgba(0,0,0,0.42),
    0 0 28px rgba(245,200,75,0.24) !important;
}

#radioShell #pauseBtn {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  border-color: rgba(245,200,75,0.82) !important;
  background: rgba(245,200,75,0.20) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 18px 42px rgba(0,0,0,0.46),
    0 0 34px rgba(245,200,75,0.48) !important;
}

#radioShell #pauseBtn .icon {
  font-size: 30px !important;
  line-height: 1 !important;
  margin: 0 !important;
  color: #fff !important;
}

#radioShell .player-actions .icon,
#radioShell .player-actions svg,
#radioShell .volume-button svg,
#radioShell .btn-icon-img {
  color: #fff !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.18)) !important;
}

#radioShell .btn-icon-img.like-icon {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
}

#radioShell .skip-button-content {
  gap: 4px !important;
  align-items: center !important;
  justify-content: center !important;
}

#radioShell .skip-coin-icon {
  width: 16px !important;
  height: 16px !important;
}

#radioShell .skip-cost {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.86) !important;
}

/* Volume slider: clickable again, premium styling */
#radioShell .volume-control {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#radioShell .volume-slider-inline {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 12px) !important;
  transform: translateX(-50%) translateY(4px) !important;
  width: 152px !important;
  height: 44px !important;
  padding: 0 14px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(245,200,75,0.28) !important;
  background: rgba(10,10,13,0.94) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 40px rgba(0,0,0,0.44),
    0 0 26px rgba(245,200,75,0.12) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease !important;
  z-index: 30 !important;
}

#radioShell .volume-control.open .volume-slider-inline {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

#radioShell .volume-slider-inline input[type="range"] {
  width: 122px !important;
  height: 18px !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  cursor: pointer !important;
  accent-color: #f5c84b !important;
}

#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  height: 5px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(245,200,75,0.96), rgba(245,200,75,0.34)) !important;
  box-shadow: 0 0 14px rgba(245,200,75,0.30) !important;
}

#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: -5.5px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid #f5c84b !important;
  box-shadow: 0 0 16px rgba(245,200,75,0.52) !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-track {
  height: 5px !important;
  border-radius: 999px !important;
  background: rgba(245,200,75,0.82) !important;
  box-shadow: 0 0 14px rgba(245,200,75,0.30) !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-thumb {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid #f5c84b !important;
  box-shadow: 0 0 16px rgba(245,200,75,0.52) !important;
}

/* Featured artist: stronger content design without overlap */
#featuredArtistSection .fa-kicker,
.community-col .news-feed-kicker {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 20px rgba(245,200,75,0.18) !important;
}

#featuredArtistCard.fa-card {
  border-color: rgba(255,255,255,0.12) !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(245,200,75,0.12), transparent 32%),
    linear-gradient(135deg, rgba(17,17,21,0.86), rgba(8,8,11,0.92)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 22px 64px rgba(0,0,0,0.44),
    0 0 42px rgba(245,200,75,0.10) !important;
}

#featuredArtistCard.fa-card.has-fa-bg::before {
  opacity: 0.49 !important;
  filter: blur(1px) saturate(1.14) contrast(1.06) !important;
}

#featuredArtistCard.fa-card::after {
  background:
    linear-gradient(90deg, rgba(5,5,7,0.92) 0%, rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.42) 100%),
    radial-gradient(circle at 23% 30%, rgba(245,200,75,0.13), transparent 34%) !important;
}

#featuredArtistCard .fa-body {
  display: grid !important;
  grid-template-columns: minmax(132px, 168px) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: center !important;
  text-align: left !important;
}

#featuredArtistCard .fa-photo-wrap {
  width: clamp(132px, 17vw, 168px) !important;
  height: clamp(132px, 17vw, 168px) !important;
  border: 1px solid rgba(245,200,75,0.74) !important;
  box-shadow:
    0 0 0 3px rgba(245,200,75,0.10),
    0 20px 44px rgba(0,0,0,0.48),
    0 0 38px rgba(245,200,75,0.30) !important;
}

#featuredArtistCard .fa-info {
  min-width: 0 !important;
  text-align: left !important;
}

#featuredArtistCard .fa-name {
  color: #fff !important;
  font-size: clamp(30px, 3.8vw, 46px) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: -0.04em !important;
  text-shadow: 0 0 22px rgba(255,255,255,0.12) !important;
}

#featuredArtistCard .fa-role,
#featuredArtistCard .fa-meta,
#featuredArtistCard .fa-tune,
#featuredArtistCard .fa-bio {
  font-weight: 800 !important;
}

#featuredArtistCard .fa-meta {
  justify-content: flex-start !important;
  color: rgba(255,255,255,0.78) !important;
}

#featuredArtistCard .fa-link {
  margin-top: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  color: #fff !important;
  border-color: rgba(245,200,75,0.50) !important;
  background: rgba(255,255,255,0.055) !important;
  box-shadow: 0 0 24px rgba(245,200,75,0.13), inset 0 1px 0 rgba(255,255,255,0.09) !important;
}

#featuredArtistCard .fa-link:hover {
  border-color: rgba(245,200,75,0.78) !important;
  box-shadow: 0 0 34px rgba(245,200,75,0.26), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}

/* Community updates: premium but no layout change */
.community-col .news-feed-section {
  border: 1px solid rgba(255,255,255,0.10) !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(245,200,75,0.08), transparent 34%),
    linear-gradient(180deg, rgba(18,18,22,0.78), rgba(7,7,10,0.82)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 22px 56px rgba(0,0,0,0.40),
    0 0 34px rgba(245,200,75,0.07) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.community-col .news-feed-viewport,
.community-col .news-feed-list {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.community-col .news-feed-item {
  border: 1px solid rgba(255,255,255,0.075) !important;
  border-bottom-color: rgba(255,255,255,0.075) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.035) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055) !important;
  padding: 13px 14px !important;
}

.community-col .news-feed-item::after,
.community-col .news-feed-kicker::before {
  display: none !important;
}

.community-col .news-feed-item-avatar,
.community-col .news-feed-avatar,
.community-col .news-feed-avatar-fallback {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
}

.community-col .news-feed-avatar,
.community-col .news-feed-avatar-fallback {
  border: 1px solid rgba(245,200,75,0.34) !important;
  box-shadow: 0 0 18px rgba(245,200,75,0.14), 0 10px 22px rgba(0,0,0,0.26) !important;
}

.community-col .news-feed-copy,
.community-col .news-feed-name,
.community-col .news-feed-track {
  font-weight: 850 !important;
}

.community-col .news-feed-copy {
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.35 !important;
}

.community-col .news-feed-name,
.community-col .news-feed-track {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(255,255,255,0.10) !important;
}

@media (max-width: 760px) {
  #featuredArtistCard .fa-body {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #featuredArtistCard .fa-info,
  #featuredArtistCard .fa-meta,
  #featuredArtistCard .fa-name,
  #featuredArtistCard .fa-role,
  #featuredArtistCard .fa-tune,
  #featuredArtistCard .fa-bio {
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ============================================================
   v33 requested polish: horizontal volume drawer + premium radio/community/artist states
   Scope: homepage player controls, community updates, featured artist typography only.
   ============================================================ */

.radio-shell:not(.pre-live) .player-actions {
  gap: 12px !important;
  align-items: center !important;
}

.radio-shell:not(.pre-live) .metal-btn,
.radio-shell:not(.pre-live) .volume-button.metal-btn {
  position: relative !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -14px 28px rgba(0,0,0,.24),
    0 14px 30px rgba(0,0,0,.32) !important;
  color: #fff !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease !important;
}

.radio-shell:not(.pre-live) .metal-btn:hover,
.radio-shell:not(.pre-live) .volume-button.metal-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,.42) !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(145deg, rgba(245,200,75,.16), rgba(255,255,255,.05)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 18px 38px rgba(0,0,0,.40),
    0 0 28px rgba(245,200,75,.16) !important;
}

.radio-shell:not(.pre-live) .metal-btn:active,
.radio-shell:not(.pre-live) .volume-button.metal-btn:active {
  transform: translateY(0) scale(.98) !important;
}

.radio-shell:not(.pre-live) #pauseBtn {
  border-color: rgba(255,230,151,.92) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.36), transparent 25%),
    linear-gradient(145deg, rgba(245,200,75,.34), rgba(145,94,12,.30)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.36),
    inset 0 -18px 28px rgba(75,48,0,.34),
    0 16px 36px rgba(0,0,0,.44),
    0 0 0 7px rgba(245,200,75,.05),
    0 0 42px rgba(245,200,75,.52) !important;
}

.radio-shell:not(.pre-live) #likeBtn.is-liked,
.radio-shell:not(.pre-live) #likeBtn.liked {
  border-color: rgba(245,200,75,.72) !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(145deg, rgba(245,200,75,.30), rgba(100,72,14,.22)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 0 0 5px rgba(245,200,75,.055),
    0 0 34px rgba(245,200,75,.30),
    0 14px 30px rgba(0,0,0,.34) !important;
}

.radio-shell:not(.pre-live) #likeBtn.is-liked .like-icon,
.radio-shell:not(.pre-live) #likeBtn.liked .like-icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(59%) saturate(569%) hue-rotate(354deg) brightness(104%) contrast(98%) !important;
  opacity: 1 !important;
  transform: scale(1.18) !important;
}

.radio-shell:not(.pre-live) #likeBtn:not(.is-liked):not(.liked) .like-icon {
  filter: brightness(0) invert(1) !important;
  opacity: .70 !important;
  transform: scale(1) !important;
}

.radio-shell:not(.pre-live) #likeBtn.like-feedback {
  animation: likeFeedbackPulse .32s ease;
}

@keyframes likeFeedbackPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.10); }
  100% { transform: scale(1); }
}

.volume-control {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  isolation: isolate !important;
}

.volume-control .volume-slider-inline {
  position: absolute !important;
  left: calc(100% + 10px) !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) translateX(-8px) !important;
  width: 0 !important;
  max-width: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(245,200,75,.18) !important;
  background:
    linear-gradient(145deg, rgba(17,17,22,.94), rgba(9,9,13,.90)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 16px 34px rgba(0,0,0,.38),
    0 0 24px rgba(245,200,75,.10) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition: width .24s ease, max-width .24s ease, opacity .18s ease, transform .24s ease, padding .24s ease !important;
  z-index: 5 !important;
}

.volume-control.open .volume-slider-inline {
  width: 142px !important;
  max-width: 142px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  padding: 10px 16px !important;
  transform: translateY(-50%) translateX(0) !important;
}

.volume-control.open .volume-button.metal-btn {
  border-color: rgba(245,200,75,.58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 0 0 5px rgba(245,200,75,.045),
    0 0 30px rgba(245,200,75,.22),
    0 14px 30px rgba(0,0,0,.34) !important;
}

.volume-slider-inline input[type="range"] {
  width: 110px !important;
  min-width: 110px !important;
}

.community-col .news-feed-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 18px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(245,200,75,.16) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(245,200,75,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.022)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 24px 60px rgba(0,0,0,.30),
    0 0 44px rgba(245,200,75,.07) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.community-col .news-feed-section::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 38%, rgba(245,200,75,.08));
  opacity: .65;
}

.community-col .news-feed-section > * {
  position: relative !important;
  z-index: 1 !important;
}

.community-col .news-feed-kicker,
.fa-kicker {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 24px rgba(245,200,75,.23), 0 1px 18px rgba(0,0,0,.55) !important;
}

.community-col .news-feed-item {
  border-color: rgba(255,255,255,.09) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(245,200,75,.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.022)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.085),
    0 12px 24px rgba(0,0,0,.24) !important;
}

.fa-card {
  font-family: 'Manrope', 'Space Grotesk', system-ui, sans-serif !important;
}

.fa-name {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif !important;
  font-size: clamp(32px, 3.6vw, 50px) !important;
  font-weight: 950 !important;
  letter-spacing: -.055em !important;
}

.fa-meta,
.fa-tune,
.fa-bio,
.fa-link {
  font-family: 'Manrope', system-ui, sans-serif !important;
}


#radioShell,
#radioShell .radio-shell-content,
#radioShell .player-actions {
  overflow: visible !important;
}

/* ============================================================
   v25 refinements
   - skip button content fits cleanly inside its own premium pill
   - volume slider expands inline to the right from the volume button
   - featured artist card background is lighter
   ============================================================ */

.player-actions #skip {
  min-width: 96px !important;
  min-height: 54px !important;
  height: 54px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.player-actions #skip .skip-button-content {
  width: 100% !important;
  max-width: 100% !important;
  display: inline-grid !important;
  grid-template-columns: auto auto auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.player-actions #skip .icon {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transform: translateY(1px) !important;
}

.player-actions #skip .skip-coin-icon {
  width: 17px !important;
  height: 17px !important;
  margin: 0 !important;
}

.player-actions #skip .skip-cost {
  min-width: 18px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.player-actions .volume-control {
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.052) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 30px rgba(0,0,0,.32),
    0 0 22px rgba(245,200,75,.08) !important;
  transition:
    width .32s cubic-bezier(.2,.8,.2,1),
    min-width .32s cubic-bezier(.2,.8,.2,1),
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease !important;
}

.player-actions .volume-control.open {
  width: 196px !important;
  min-width: 196px !important;
  border-color: rgba(245,200,75,.46) !important;
  background: rgba(20,20,24,.82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 18px 42px rgba(0,0,0,.42),
    0 0 34px rgba(245,200,75,.18) !important;
}

.player-actions .volume-button {
  width: 52px !important;
  min-width: 52px !important;
  height: 52px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 2 !important;
}

.player-actions .volume-slider-inline {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  width: 0 !important;
  max-width: 0 !important;
  height: 100% !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  transition:
    width .32s cubic-bezier(.2,.8,.2,1),
    max-width .32s cubic-bezier(.2,.8,.2,1),
    opacity .18s ease .08s !important;
}

.player-actions .volume-control.open .volume-slider-inline {
  width: 132px !important;
  max-width: 132px !important;
  opacity: 1 !important;
  padding-right: 16px !important;
}

.player-actions .volume-slider-inline input[type="range"] {
  width: 112px !important;
  min-width: 112px !important;
}

.fa-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(245,200,75,.16), transparent 38%),
    linear-gradient(145deg, rgba(38,38,45,.88), rgba(20,20,25,.84)) !important;
  border-color: rgba(245,200,75,.30) !important;
}

.fa-card::after {
  background: rgba(16,16,20,.56) !important;
}

.fa-card.has-fa-bg::before {
  opacity: 0.44 !important;
  filter: grayscale(.02) blur(.7px) saturate(1.10) brightness(1.08) !important;
}

@media (max-width: 900px) {
  .player-actions #skip {
    min-width: 0 !important;
    padding: 0 10px !important;
  }

  .player-actions #skip .skip-button-content {
    gap: 5px !important;
  }

  .player-actions #skip .icon {
    font-size: 16px !important;
  }

  .player-actions #skip .skip-coin-icon {
    width: 15px !important;
    height: 15px !important;
  }

  .player-actions #skip .skip-cost {
    font-size: 12px !important;
    min-width: 15px !important;
  }

  .player-actions .volume-control.open {
    width: 158px !important;
    min-width: 158px !important;
  }

  .player-actions .volume-control.open .volume-slider-inline {
    width: 100px !important;
    max-width: 100px !important;
    padding-right: 12px !important;
  }

  .player-actions .volume-slider-inline input[type="range"] {
    width: 86px !important;
    min-width: 86px !important;
  }
}

/* ============================================================
   v34 volume drawer fix
   Click the volume button: slider expands horizontally to the right
   from the same control. No floating pop-up.
   ============================================================ */
#radioShell .player-actions #volumeControl.volume-control {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 54px !important;
  gap: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.052) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 30px rgba(0,0,0,.32),
    0 0 22px rgba(245,200,75,.08) !important;
  transition:
    width .34s cubic-bezier(.2,.8,.2,1),
    min-width .34s cubic-bezier(.2,.8,.2,1),
    max-width .34s cubic-bezier(.2,.8,.2,1),
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease !important;
}

#radioShell .player-actions #volumeControl.volume-control.open {
  width: 198px !important;
  min-width: 198px !important;
  max-width: 198px !important;
  border-color: rgba(245,200,75,.46) !important;
  background: rgba(20,20,24,.86) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 18px 42px rgba(0,0,0,.42),
    0 0 34px rgba(245,200,75,.18) !important;
}

#radioShell .player-actions #volumeControl .volume-button,
#radioShell .player-actions #volumeControl .volume-button.metal-btn {
  position: relative !important;
  width: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 2 !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: visible !important;
  pointer-events: none !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 1 !important;
  transition:
    width .34s cubic-bezier(.2,.8,.2,1),
    min-width .34s cubic-bezier(.2,.8,.2,1),
    max-width .34s cubic-bezier(.2,.8,.2,1),
    opacity .18s ease .08s !important;
}

#radioShell .player-actions #volumeControl.volume-control.open .volume-slider-inline {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  padding-right: 16px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"] {
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 18px !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  cursor: pointer !important;
  accent-color: #f5c84b !important;
}


/* Skip button: icon + -1 coin, scoped to the index radio controls only. */
#radioShell .player-actions #skip {
  width: auto !important;
  min-width: 128px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 22px !important;
  flex: 0 0 auto !important;
}

#radioShell .player-actions #skip .skip-button-content {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
}

#radioShell .player-actions #skip .skip-icon {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  flex: 0 0 24px !important;
}

#radioShell .player-actions #skip .skip-cost {
  min-width: auto !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

#radioShell .player-actions #skip .skip-coin-icon {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  flex: 0 0 22px !important;
}

@media (max-width: 900px) {
  #radioShell .player-actions #skip {
    min-width: 112px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 16px !important;
  }

  #radioShell .player-actions #skip .skip-icon {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px !important;
  }

  #radioShell .player-actions #skip .skip-cost {
    font-size: 14px !important;
  }

  #radioShell .player-actions #skip .skip-coin-icon {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
  }
}

/* ── Profielfoto in radio player ────────────────────────────── */
.artist-link,
.artist-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.artist-player-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212,175,55,0.35);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.artist-player-photo--fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(50,38,8,0.9), rgba(130,96,18,0.8));
  color: rgba(212,175,55,0.9);
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(212,175,55,0.35);
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

/* Start overlay vult de volledige radio-stage hoogte */
.start-overlay {
  min-height: 380px;
}

/* Start radio locked preview state: show the radio player blurred behind the start button */
.radio-stage {
  display: grid !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}

.radio-stage > .radio-shell,
.radio-stage > .start-overlay {
  grid-area: 1 / 1 !important;
}

.radio-shell.pre-live {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  pointer-events: none !important;
  filter: blur(12px) saturate(0.72) brightness(0.62) !important;
}

.radio-shell.pre-live .radio-shell-content {
  user-select: none !important;
}

.start-overlay {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 100% !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(26px, 4vw, 44px) clamp(18px, 4vw, 48px) !important;
  border-radius: 30px !important;
  z-index: 6 !important;
  pointer-events: auto !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.18), transparent 38%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.34)) !important;
}

.start-overlay .overlay-content {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.start-overlay .overlay-title,
.start-overlay .overlay-subcopy {
  display: none !important;
}

.start-overlay .start-btn-wrap {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.start-overlay .start-btn {
  min-width: min(320px, 72%) !important;
  min-height: 68px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(244,215,122,0.42) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(244,215,122,0.22), transparent 48%),
    linear-gradient(180deg, rgba(46,46,48,0.96), rgba(12,12,14,0.96)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.72),
    0 18px 46px rgba(0,0,0,0.44),
    0 0 38px rgba(212,175,55,0.18) !important;
}


/* ============================================================
   Width restore: locked/blurred radio player matches Featured Artist width
   ============================================================ */
.radio-col,
.radio-col .radio-stage,
.radio-stage {
  width: 100% !important;
  max-width: 100% !important;
}

.radio-stage {
  justify-content: stretch !important;
  justify-items: stretch !important;
}

.radio-stage > .radio-shell,
.radio-stage > .start-overlay,
#radioShell {
  width: 100% !important;
  max-width: 100% !important;
  justify-self: stretch !important;
}

.radio-shell:not(.pre-live),
.radio-shell.pre-live {
  width: 100% !important;
  max-width: 100% !important;
}

.start-overlay {
  width: 100% !important;
  max-width: 100% !important;
}

.start-overlay .overlay-content {
  width: 100% !important;
  max-width: 100% !important;
}

/* ============================================================
   What is 60 Seconds: match radio/featured column width
   The radio player and Featured Artists live in .radio-col inside
   .content-layout (1fr + 420px community column). This section sits
   outside that grid, so it needs the same calculated left-column width.
   ============================================================ */
.site-shell > #conceptSection.concept-section {
  width: calc(100% - 420px) !important;
  max-width: none !important;
  margin: 28px auto 0 0 !important;
  padding: 0 !important;
}

.site-shell > #conceptSection.concept-section .concept-card {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 860px) {
  .site-shell > #conceptSection.concept-section {
    width: 100% !important;
    max-width: none !important;
    margin: 24px 0 0 !important;
    padding: 0 12px !important;
  }
}

/* ============================================================
   What is 60 Seconds: always hidden
   ============================================================ */
#conceptSection {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ── Artist foto in radio player ──────────────────── */
.artist-link, .artist-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.artist-player-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border: 1.5px solid rgba(212,175,55,0.35);
  flex-shrink: 0;
}
.artist-player-photo--fallback {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(50,38,8,0.9), rgba(130,96,18,0.8));
  color: rgba(212,175,55,0.9);
  font-size: 17px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(212,175,55,0.35);
  flex-shrink: 0;
}
.tune-nationality { font-size: 16px; line-height: 1; }

/* ── Top Supporters ────────────────────────────────── */
.top-supporters-section { margin-top: 18px !important; }
.top-supporter-item .news-feed-item-body {
  display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0;
}
.top-supporter-rank {
  font-size: 11px; font-weight: 700;
  color: #ffffff;
  display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.top-supporter-medal {
  font-size: 14px;
  line-height: 1;
}
.top-supporter-coins {
  margin-left: auto; font-size: 11px; font-weight: 600;
  color: #FFD76A; flex-shrink: 0; white-space: nowrap;
}
.top-supporter-item .news-feed-name {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.88); text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}

/* ── Artiestnaam kleur = earn-seconds goud ──────── */
.artist-name-text {
  color: #f5c84b;
}

.artist-link:hover .artist-name-text {
  color: #fff8dc;
}

/* ══════════════════════════════════════════════════════════════
   Radio shell — glass container, geen glow
   ══════════════════════════════════════════════════════════════ */
.radio-shell:not(.pre-live),
.radio-shell:not(.pre-live):hover {
  background: rgba(255,255,255,0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-top: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 32px rgba(0,0,0,0.28) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  border-radius: 20px !important;
  isolation: isolate !important;
}

.radio-shell:not(.pre-live)::before,
.radio-shell:not(.pre-live)::after {
  display: none !important;
  content: none !important;
}

/* ── Logo positie afgehandeld via global.css ─────────────── */
.header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.header-right {
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Player icon knoppen — zelfde stijl als like knop ───────── */
.icon-btn {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.055) !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease !important;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.icon-btn:hover,
.volume-button.icon-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
}

.icon-btn:active {
  transform: scale(0.95) !important;
}

.player-icon-img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Play knop: zelfde grootte maar met gouden ring */
.radio-icon-btn {
  border-color: rgba(245,200,75,0.35) !important;
  background: rgba(245,200,75,0.08) !important;
}

.radio-icon-btn.is-playing {
  border-color: rgba(245,200,75,0.55) !important;
}

.radio-icon-btn .player-icon-img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(85%) sepia(40%) saturate(500%) hue-rotate(5deg);
}

/* ── Featured card: geen glow ──────────────────────────────── */
.fa-card,
.fa-card:hover,
#featuredArtistCard,
#featuredArtistCard:hover {
  box-shadow: none !important;
}

.fa-card::before,
.fa-card::after,
#featuredArtistCard::before,
#featuredArtistCard::after {
  box-shadow: none !important;
}

/* ── Pagina achtergrond: zwart ──────────────────────────────── */

body {
  background-color: #000000 !important;
}

/* ── Volume button: zelfde stijl als icon-btn ───────────────── */
#radioShell .volume-button.icon-btn,
.player-actions .volume-button.icon-btn {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.055) !important;
  padding: 0 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease !important;
}

#radioShell .volume-button.icon-btn:hover,
.player-actions .volume-button.icon-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
}

/* ── Volume slider: geen glow ────────────────────────────────── */
#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  box-shadow: none !important;
  background: #ffffff !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-track {
  background: rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-thumb {
  box-shadow: none !important;
  background: #ffffff !important;
}

.volume-slider-inline input[type="range"] {
  accent-color: rgba(255,255,255,0.8) !important;
}

/* ════════════════════════════════════════════════════════════════
   FINALE OVERRIDES — wint van alles
   ════════════════════════════════════════════════════════════════ */

/* 1. Achtergrond volledig zwart — geen gradients, geen glow */
body {
  background-color: #000000 !important;
  background-image: url("../../icons/background-radio.jpg") !important;
  background-size: 100% 580px !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

body::before,
body::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* 2. Featured card: geen glow, geen radiale gloed links */
.fa-card,
#featuredArtistCard,
.fa-card:hover,
#featuredArtistCard:hover {
  background:
    linear-gradient(135deg, rgba(20,18,10,0.92) 0%, rgba(12,10,5,0.96) 100%) !important;
  border-color: rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
}

.fa-card::before,
.fa-card::after,
#featuredArtistCard::before,
#featuredArtistCard::after {
  /* foto via ::before werkt — alleen glow uitzetten */
  box-shadow: none !important;
}

/* 3. Iconen radiospeler: wavetable goudkleur */
.player-icon-img {
  filter: none !important;
  /* Goud gradient via drop-shadow is niet mogelijk op img
     Gebruik een CSS filter die de kleur naar goud verschuift */
  filter:
    brightness(0)
    saturate(100%)
    invert(75%)
    sepia(60%)
    saturate(400%)
    hue-rotate(5deg)
    brightness(105%) !important;
  opacity: 1 !important;
}

/* 4. Volume knop hover — gouden rand zoals skip/like */
#radioShell .volume-button.icon-btn,
.player-actions .volume-button.icon-btn,
.volume-button.icon-btn {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease !important;
  transform: none !important;
}

#radioShell .volume-button.icon-btn:hover,
.player-actions .volume-button.icon-btn:hover,
.volume-button.icon-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 14px rgba(245,200,75,0.18) !important;
}

/* 5. Volume slider: goud gevuld, geen glow */
input[type="range"] {
  accent-color: #d4af37;
}

#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  background: #d4af37 !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-thumb {
  background: #d4af37 !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-progress {
  background: linear-gradient(90deg, rgba(180,130,30,0.9), #d4af37, rgba(244,215,122,1)) !important;
  box-shadow: none !important;
}

/* ════════════════════════════════════════════════════════════════
   DEFINITIEVE OVERRIDES v2 — hoogste specificiteit
   ════════════════════════════════════════════════════════════════ */

/* 1. Achtergrond: zwart onderaan, foto bovenaan */
html, body {
  background-color: #000000 !important;
}

body {
  background-image: url("../../icons/background-radio.jpg") !important;
  background-size: 100% 580px !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

body::before, body::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* 2. Featured card: geen glow/radiale gloed */
.fa-card, #featuredArtistCard,
.fa-card:hover, #featuredArtistCard:hover {
  background: linear-gradient(135deg, rgba(20,18,10,0.94) 0%, rgba(12,10,5,0.97) 100%) !important;
  border-color: rgba(255,255,255,0.10) !important;
  box-shadow: none !important;
}

.fa-card::before, .fa-card::after,
#featuredArtistCard::before, #featuredArtistCard::after {
  /* Foto via ::before hersteld — alleen box-shadow uitzetten */
  box-shadow: none !important;
}

/* 3. Radio iconen: wavetable gradient */
.player-icon-img {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Gebruik background-clip trick op de knop zelf als overlay */
#pauseBtn .player-icon-img,
#skip .player-icon-img,
#volumeBtn .player-icon-img {
  filter:
    brightness(0)
    saturate(100%)
    invert(85%)
    sepia(55%)
    saturate(450%)
    hue-rotate(2deg)
    brightness(108%) !important;
  opacity: 1 !important;
}

/* 4. Volume knop: ALTIJD container stijl (ook als .player-actions .volume-button) */
#radioShell .player-actions .volume-button,
#radioShell .player-actions #volumeControl .volume-button,
body .volume-button.icon-btn,
.icon-btn.volume-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease !important;
  transform: none !important;
  padding: 0 !important;
  cursor: pointer !important;
}

#radioShell .player-actions .volume-button:hover,
#radioShell .player-actions #volumeControl .volume-button:hover,
body .volume-button.icon-btn:hover,
.icon-btn.volume-button:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 14px rgba(245,200,75,0.20) !important;
}

/* 5. Volume slider: goud gevuld, geen glow */
input[type="range"] {
  accent-color: #d4af37 !important;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

input[type="range"]::-webkit-slider-thumb {
  background: #d4af37 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  border: none !important;
}

input[type="range"]::-moz-range-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

input[type="range"]::-moz-range-thumb {
  background: #d4af37 !important;
  box-shadow: none !important;
  border: none !important;
}

input[type="range"]::-moz-range-progress {
  background: linear-gradient(90deg,
    rgba(180,130,30,0.9) 0%,
    #d4af37 50%,
    rgba(244,215,122,1) 100%) !important;
  box-shadow: none !important;
}

/* ════════════════════════════════════════════════════════════════
   FINALE OVERRIDES v3
   ════════════════════════════════════════════════════════════════ */

/* 1. Background: volle hoogte met fade naar zwart */
html, body {
  background-color: #000000 !important;
}

body {
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 45%,
      rgba(0,0,0,0.6) 65%,
      rgba(0,0,0,1) 85%
    ),
    url("../../icons/background-radio.jpg") !important;
  background-size: 100% 100vh, 100% 100vh !important;
  background-position: top center, top center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-attachment: scroll, scroll !important;
}

body::before, body::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* 2. Alle radio player knoppen: exact stijl als like knop */
#radioShell .player-actions > .metal-btn,
#radioShell .player-actions .icon-btn,
#radioShell .player-actions .volume-button,
#radioShell .player-actions #volumeControl .volume-button,
#pauseBtn,
#skip,
#likeBtn {
  background: rgba(255,255,255,0.055) !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 20px rgba(0,0,0,0.28) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease !important;
}

#radioShell .player-actions > .metal-btn:hover,
#radioShell .player-actions .icon-btn:hover,
#radioShell .player-actions .volume-button:hover,
#radioShell .player-actions #volumeControl .volume-button:hover,
#pauseBtn:hover,
#skip:hover,
#likeBtn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 18px rgba(245,200,75,0.22),
    0 8px 20px rgba(0,0,0,0.28) !important;
}

/* 3. Icoon kleur: wit (zoals like knop icoon) */
#pauseBtn .player-icon-img,
#skip .player-icon-img,
#volumeBtn .player-icon-img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.85 !important;
}

/* 4. Volume knop grootte consistent */
#radioShell .player-actions .volume-button,
#radioShell .player-actions #volumeControl .volume-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* 5. Volume slider: goud gevuld, geen glow */
input[type="range"] {
  accent-color: #d4af37 !important;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #d4af37 !important;
  box-shadow: none !important;
  border: none !important;
}

input[type="range"]::-moz-range-track {
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

input[type="range"]::-moz-range-progress {
  background: #d4af37 !important;
  box-shadow: none !important;
}

input[type="range"]::-moz-range-thumb {
  background: #d4af37 !important;
  box-shadow: none !important;
  border: none !important;
  width: 14px !important;
  height: 14px !important;
}

/* ── Tune-genre en nationality badge = fa-pill stijl ───────── */
.tune-genre,
.tune-nationality {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.70) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  box-shadow: none !important;
  min-height: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

/* ── Volume slider: premium kleur lijn ─────────────────────── */
#radioShell .volume-slider-inline input[type="range"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 4px !important;
  background: transparent !important;
  outline: none !important;
}

/* Track achtergrond */
#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  height: 4px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
}

/* Thumb */
#radioShell .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #d4af37 !important;
  box-shadow: 0 0 6px rgba(212,175,55,0.4) !important;
  border: none !important;
  margin-top: -5px !important;
  cursor: pointer !important;
}

/* Gevuld gedeelte via JS inline style op de slider */
#radioShell .volume-slider-inline input[type="range"]::-moz-range-track {
  height: 4px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-progress {
  height: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(180,130,30,0.9), #d4af37) !important;
  box-shadow: none !important;
}

#radioShell .volume-slider-inline input[type="range"]::-moz-range-thumb {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #d4af37 !important;
  box-shadow: 0 0 6px rgba(212,175,55,0.4) !important;
  border: none !important;
  cursor: pointer !important;
}

/* ── Currency plus knop: radio knop stijl ──────────────────── */
.currency-store-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.currency-store-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(245,200,75,0.58) !important;
  background: rgba(245,200,75,0.09) !important;
}

.currency-plus-icon {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.85 !important;
}

/* ============================================================
   Featured artist photo ring — exact statistics avatar enclosure
   Scope: index featured artist photo only.
   ============================================================ */
#featuredArtistCard .fa-photo-wrap {
  padding: 3px !important;
  border: 0 !important;
  outline: 0 !important;
  background: linear-gradient(180deg, #f5d876 0%, #d4af37 45%, #6e5212 100%) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.42) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

#featuredArtistCard .fa-photo {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  background: #0e0e0e !important;
}

/* === 60S UPDATE: minimalist volume slider, no glass rectangle === */
#radioShell .player-actions #volumeControl.volume-control,
#radioShell .player-actions #volumeControl.volume-control.open,
.player-actions #volumeControl.volume-control,
.player-actions #volumeControl.volume-control.open {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
}

#radioShell .player-actions #volumeControl.volume-control::before,
#radioShell .player-actions #volumeControl.volume-control::after,
#radioShell .player-actions #volumeControl .volume-slider-inline::before,
#radioShell .player-actions #volumeControl .volume-slider-inline::after {
  content: none !important;
  display: none !important;
}

#radioShell .player-actions #volumeControl.volume-control.open {
  width: 176px !important;
  min-width: 176px !important;
  max-width: 176px !important;
}

#radioShell .player-actions #volumeControl .volume-button,
#radioShell .player-actions #volumeControl .volume-button.icon-btn,
#radioShell .player-actions #volumeControl .volume-button.metal-btn {
  background: rgba(255,255,255,0.045) !important;
  border: 1px solid rgba(245,200,75,0.45) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 18px rgba(0,0,0,0.22) !important;
}

#radioShell .player-actions #volumeControl.volume-control.open .volume-button,
#radioShell .player-actions #volumeControl .volume-button:hover {
  background: rgba(255,255,255,0.055) !important;
  border-color: rgba(245,200,75,0.58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 18px rgba(0,0,0,0.24),
    0 0 14px rgba(245,200,75,0.13) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline,
#radioShell .player-actions #volumeControl.volume-control.open .volume-slider-inline,
.player-actions #volumeControl .volume-slider-inline,
.player-actions #volumeControl.volume-control.open .volume-slider-inline {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  height: 52px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

#radioShell .player-actions #volumeControl.volume-control.open .volume-slider-inline {
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  padding: 0 0 0 8px !important;
  opacity: 1 !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"] {
  --volume-pct: 30%;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 96px !important;
  min-width: 96px !important;
  max-width: 96px !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  cursor: pointer !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  height: 8px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background:
    linear-gradient(90deg,
      #c69422 0%,
      #f2c44c calc(var(--volume-pct) * 0.60),
      #ffe38a var(--volume-pct),
      rgba(255,255,255,0.10) var(--volume-pct),
      rgba(255,255,255,0.10) 100%) !important;
  box-shadow:
    inset 0 1px 1px rgba(0,0,0,0.45),
    0 0 10px rgba(245,200,75,0.13) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: -7px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.58) !important;
  background: radial-gradient(circle at 35% 30%, #fff0b0 0%, #ffd966 36%, #d8a22c 100%) !important;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.42),
    0 0 10px rgba(245,200,75,0.42) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-track {
  height: 8px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.10) !important;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.45) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-progress {
  height: 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #c69422 0%, #f2c44c 60%, #ffe38a 100%) !important;
  box-shadow: 0 0 10px rgba(245,200,75,0.13) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-thumb {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.58) !important;
  background: radial-gradient(circle at 35% 30%, #fff0b0 0%, #ffd966 36%, #d8a22c 100%) !important;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.42),
    0 0 10px rgba(245,200,75,0.42) !important;
}

@media (max-width: 900px) {
  #radioShell .player-actions #volumeControl.volume-control.open {
    width: 158px !important;
    min-width: 158px !important;
    max-width: 158px !important;
  }

  #radioShell .player-actions #volumeControl.volume-control.open .volume-slider-inline {
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    padding-left: 6px !important;
  }

  #radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"] {
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
  }
}
/* === END 60S UPDATE === */

/* Community/top supporters item cleanup: remove dark item plates and match hover to site style */
.community-col .news-feed-item,
.community-col .top-supporters-section .news-feed-item,
#newsFeedList .news-feed-item,
#topSupportersList .news-feed-item {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: rgba(255,255,255,0.13) !important;
}

.community-col .news-feed-item:hover,
.community-col .top-supporters-section .news-feed-item:hover,
#newsFeedList .news-feed-item:hover,
#topSupportersList .news-feed-item:hover {
  background:
    radial-gradient(circle at 18% 50%, rgba(245,200,75,0.10), transparent 42%),
    linear-gradient(90deg, rgba(245,200,75,0.075), rgba(255,255,255,0.025)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 22px rgba(245,200,75,0.10) !important;
  border-color: rgba(245,200,75,0.28) !important;
}

.community-col .news-feed-item a,
.community-col .news-feed-item button,
.community-col .news-feed-name,
.community-col .news-feed-track,
.community-col .news-feed-tune {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.community-col .news-feed-item a:hover,
.community-col .news-feed-item button:hover,
.community-col .news-feed-name:hover,
.community-col .news-feed-track:hover,
.community-col .news-feed-tune:hover {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
  color: #f5c84b !important;
  text-shadow:
    0 0 10px rgba(245,200,75,0.42),
    0 0 22px rgba(245,200,75,0.18) !important;
}

.community-col .news-feed-name::selection,
.community-col .news-feed-track::selection,
.community-col .news-feed-tune::selection,
.community-col .news-feed-copy::selection {
  color: #ffffff !important;
  background: rgba(245,200,75,0.28) !important;
}

/* ================================================================
   Coins badge: altijd verborgen als niet ingelogd
   ================================================================ */
body:not(.is-authenticated) #currencyBadge,
body.is-logged-out #currencyBadge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ================================================================
   PCB — Player Controls Bar (glass pill, all equal height)
   ================================================================ */

/* The glass container */
.pcb {
  display: inline-flex;
  align-items: center;
  height: 52px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 28px rgba(0,0,0,0.28);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  overflow: hidden;
  position: relative;
}

/* Thin vertical dividers */
.pcb-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

/* All buttons — equal height, compact */
.pcb-btn,
.pcb .pcb-btn,
.pcb #likeBtn,
.pcb #pauseBtn,
.pcb #skip,
.pcb #volumeBtn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 52px !important;
  min-width: 44px !important;
  padding: 0 16px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  color: rgba(255,255,255,0.80) !important;
  transition: background 0.15s ease !important;
  transform: none !important;
  filter: none !important;
  vertical-align: middle !important;
}

.pcb #likeBtn { border-radius: 999px 0 0 999px !important; }
.pcb #volumeBtn { border-radius: 0 999px 999px 0 !important; }

.pcb-btn:hover,
.pcb #likeBtn:hover,
.pcb #pauseBtn:hover,
.pcb #skip:hover,
.pcb #volumeBtn:hover {
  background: rgba(255,255,255,0.07) !important;
}

/* Play button: white color only, no yellow, no background, no glow */
.pcb .pcb-play,
.pcb #pauseBtn {
  color: rgba(255,255,255,0.90) !important;
  min-width: 52px !important;
  padding: 0 16px !important;
  filter: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  width: auto !important;
  height: 52px !important;
  border-radius: 0 !important;
}

.pcb #pauseBtn:hover { background: rgba(255,255,255,0.07) !important; }

/* Images inside buttons */
.pcb img {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  object-fit: contain !important;
  filter: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Volume: slider pops above, no rounding on control div */
.pcb .pcb-vol {
  position: relative;
  height: 52px;
}

.pcb .volume-slider-inline {
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}

/* Center bar */
.player-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 14px !important;
  gap: 0 !important;
}

@media (max-width: 768px) {
  .pcb { height: 48px; }
  .pcb-btn, .pcb #likeBtn, .pcb #pauseBtn, .pcb #skip, .pcb #volumeBtn {
    height: 48px !important;
    min-width: 48px !important;
    padding: 0 14px !important;
  }
  .pcb .pcb-play, .pcb #pauseBtn { height: 48px !important; }
  .pcb .pcb-vol { height: 48px !important; }
  .pcb img { width: 18px !important; height: 18px !important; }
}

/* Kill any residual yellow/gold background on pauseBtn inside pcb */
.pcb #pauseBtn,
.pcb .pcb-play {
  background-color: transparent !important;
  background-image: none !important;
}
.pcb #pauseBtn:hover,
.pcb .pcb-play:hover {
  background-color: rgba(255,255,255,0.07) !important;
  background-image: none !important;
}

/* Volume control div: no background, flush inside bar */
.pcb .pcb-vol,
.pcb .volume-control {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 52px !important;
  background: transparent !important;
  position: relative !important;
  overflow: visible !important;
}

/* ================================================================
   PCB final fixes — skip padding 0, play no yellow bg
   ================================================================ */
.pcb #skip {
  padding: 0 12px !important;
  min-width: 44px !important;
}

/* Remove ALL yellow/gold background from play button — any state */
.pcb #pauseBtn,
.pcb .pcb-play,
.pcb #pauseBtn:hover,
.pcb #pauseBtn:focus,
.pcb #pauseBtn:active,
.pcb .pcb-play:hover {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Kill ALL old pauseBtn gold/glow — highest specificity needed */
div.pcb > button#pauseBtn,
div.pcb button#pauseBtn,
.pcb button#pauseBtn {
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  width: auto !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: unset !important;
  padding: 0 16px !important;
  color: rgba(255,255,255,0.88) !important;
}

div.pcb > button#pauseBtn:hover,
div.pcb button#pauseBtn:hover {
  background: rgba(255,255,255,0.07) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Skip: truly zero padding */
div.pcb > button#skip,
div.pcb button#skip,
.pcb button#skip {
  padding: 0 10px !important;
  min-width: 40px !important;
}

/* ABSOLUTE FINAL: element+id specificity to beat all old rules */
button#skip { padding: 0 !important; min-width: 44px !important; }
button#pauseBtn { 
  padding: 0 16px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}
button#likeBtn { padding: 0 16px !important; }
button#volumeBtn { padding: 0 16px !important; }

/* ================================================================
   PCB final: correct padding + kill all glows
   ================================================================ */

/* Skip: 16px padding */
button#skip,
.pcb button#skip,
#radioShell .player-actions #skip {
  padding: 0 16px !important;
  min-width: auto !important;
}

/* Volume: 16px padding */
button#volumeBtn,
.pcb button#volumeBtn {
  padding: 0 16px !important;
}

/* Kill ALL glow/shadow on ALL pcb buttons */
.pcb button,
.pcb #likeBtn,
.pcb #pauseBtn,
.pcb #skip,
.pcb #volumeBtn,
.pcb .pcb-btn,
.pcb .metal-btn,
.pcb .icon-btn {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.pcb button:hover,
.pcb #likeBtn:hover,
.pcb #pauseBtn:hover,
.pcb #skip:hover,
.pcb #volumeBtn:hover {
  box-shadow: none !important;
  filter: none !important;
}



/* === radio controls final visual reset === */

/*
  Scope: only the main radio player buttons.
  Requested:
  - glass container extends through the full volume button
  - like and play/pause icons 10% smaller
  - skip and volume icon sizes unchanged
  - volume slider fill/track/thumb follows the backup progress-style look
*/

/* Outer glass capsule extends through volume */
#radioShell .player-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin-top: 14px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-top-color: rgba(255,255,255,0.28) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    linear-gradient(90deg, rgba(38,38,38,0.74), rgba(18,18,18,0.76), rgba(48,38,24,0.62)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 10px 26px rgba(0,0,0,0.28) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Neutralize optional pcb wrapper if present */
#radioShell .player-actions .pcb {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden !important;
}

/* Hide dividers completely */
#radioShell .player-actions .pcb-divider {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  flex: 0 0 0 !important;
}

/* Base controls */
#radioShell .player-actions #likeBtn,
#radioShell .player-actions #pauseBtn,
#radioShell .player-actions #skip,
#radioShell .player-actions #volumeBtn,
#radioShell .player-actions .metal-btn,
#radioShell .player-actions .icon-btn,
#radioShell .player-actions .radio-icon-btn,
#radioShell .player-actions .volume-button,
#radioShell .player-actions .pcb-btn,
#radioShell .player-actions .pcb-play {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  flex: 0 0 68px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  transform: none !important;
  color: rgba(255,255,255,0.88) !important;
  cursor: pointer !important;
  transition: background 0.15s ease, transform 0.12s ease, opacity 0.15s ease !important;
}

/* Remove pseudo dividers/highlights */
#radioShell .player-actions #likeBtn::before,
#radioShell .player-actions #likeBtn::after,
#radioShell .player-actions #pauseBtn::before,
#radioShell .player-actions #pauseBtn::after,
#radioShell .player-actions #skip::before,
#radioShell .player-actions #skip::after,
#radioShell .player-actions #volumeBtn::before,
#radioShell .player-actions #volumeBtn::after,
#radioShell .player-actions .metal-btn::before,
#radioShell .player-actions .metal-btn::after,
#radioShell .player-actions .icon-btn::before,
#radioShell .player-actions .icon-btn::after,
#radioShell .player-actions .radio-icon-btn::before,
#radioShell .player-actions .radio-icon-btn::after,
#radioShell .player-actions .volume-control::before,
#radioShell .player-actions .volume-control::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Play/pause no unique container */
#radioShell .player-actions #pauseBtn,
#radioShell .player-actions #pauseBtn:hover,
#radioShell .player-actions #pauseBtn:focus,
#radioShell .player-actions #pauseBtn:active,
#radioShell .player-actions #pauseBtn.is-playing,
#radioShell .player-actions #pauseBtn.pause-btn-playing,
#radioShell .player-actions .pause-btn-playing,
#radioShell .player-actions .radio-icon-btn {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Default icons: skip and volume stay unchanged at 30px */
#radioShell .player-actions img,
#radioShell .player-actions .btn-icon-img,
#radioShell .player-actions .player-icon-img,
#radioShell .player-actions svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  display: block !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.82 !important;
}

/* Like and play/pause icons 10% smaller */
#radioShell .player-actions #likeBtn img,
#radioShell .player-actions #likeBtn .btn-icon-img,
#radioShell .player-actions #likeBtn .like-icon,
#radioShell .player-actions #pauseBtn img,
#radioShell .player-actions #pauseBtn #playPauseIcon {
  width: 27px !important;
  height: 27px !important;
  max-width: 27px !important;
  max-height: 27px !important;
}

/* Hover/active: no glow */
#radioShell .player-actions #likeBtn:hover,
#radioShell .player-actions #pauseBtn:hover,
#radioShell .player-actions #skip:hover,
#radioShell .player-actions #volumeBtn:hover {
  background: rgba(255,255,255,0.045) !important;
  box-shadow: none !important;
  filter: none !important;
}

#radioShell .player-actions #likeBtn:active,
#radioShell .player-actions #pauseBtn:active,
#radioShell .player-actions #skip:active,
#radioShell .player-actions #volumeBtn:active {
  transform: scale(0.96) !important;
}

/* Volume segment is part of the capsule and reaches the end */
#radioShell .player-actions #volumeControl.volume-control {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 78px !important;
  min-width: 78px !important;
  max-width: 78px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  flex: 0 0 78px !important;
  padding: 0 10px 0 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 999px 999px 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: visible !important;
  position: relative !important;
}

#radioShell .player-actions #volumeBtn.volume-button {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  flex: 0 0 68px !important;
}

/* No dark background/container when volume opens */
#radioShell .player-actions #volumeControl.volume-control.open {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Volume slider: backup-like fill/track styling, no dark rectangle */
#radioShell .player-actions #volumeControl .volume-slider-inline {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 10px) !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: width 0.22s ease, opacity 0.16s ease !important;
  z-index: 500 !important;
}

#radioShell .player-actions #volumeControl.volume-control.open .volume-slider-inline {
  width: 122px !important;
  min-width: 122px !important;
  max-width: 122px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 112px !important;
  height: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #f4d77a var(--volume-fill, 100%),
    rgba(20,20,20,0.92) var(--volume-fill, 100%),
    rgba(10,10,10,0.96) 100%
  ) !important;
  border-radius: 999px !important;
  outline: none !important;
  border: 1px solid rgba(244,215,122,0.22) !important;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.05),
    inset 0 -2px 4px rgba(0,0,0,0.42),
    0 0 12px rgba(212,175,55,0.12) !important;
}

/* WebKit range track transparent so input background is the fill */
#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  height: 6px !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Small circular WebKit thumb */
#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,245,200,0.85) !important;
  background:
    radial-gradient(circle at 35% 30%, #fff7ce 0%, #f4d77a 38%, #d4af37 72%, #8f6b13 100%) !important;
  box-shadow:
    0 0 10px rgba(244,215,122,0.34),
    0 0 18px rgba(212,175,55,0.18) !important;
  margin-top: -5px !important;
}

/* Firefox range */
#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-track {
  height: 6px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-progress {
  height: 6px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #d4af37, #f4d77a) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-thumb {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,245,200,0.85) !important;
  background:
    radial-gradient(circle at 35% 30%, #fff7ce 0%, #f4d77a 38%, #d4af37 72%, #8f6b13 100%) !important;
  box-shadow:
    0 0 10px rgba(244,215,122,0.34),
    0 0 18px rgba(212,175,55,0.18) !important;
}

/* Mobile proportional */
@media (max-width: 900px) {
  #radioShell .player-actions #likeBtn,
  #radioShell .player-actions #pauseBtn,
  #radioShell .player-actions #skip,
  #radioShell .player-actions #volumeBtn,
  #radioShell .player-actions .metal-btn,
  #radioShell .player-actions .icon-btn,
  #radioShell .player-actions .radio-icon-btn,
  #radioShell .player-actions .volume-button {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    flex-basis: 60px !important;
  }

  #radioShell .player-actions #volumeControl.volume-control {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    flex-basis: 70px !important;
    padding-right: 10px !important;
  }

  #radioShell .player-actions img,
  #radioShell .player-actions .btn-icon-img,
  #radioShell .player-actions .player-icon-img {
    width: 27px !important;
    height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }

  #radioShell .player-actions #likeBtn img,
  #radioShell .player-actions #pauseBtn img,
  #radioShell .player-actions #pauseBtn #playPauseIcon {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }
}
/* === end radio controls final visual reset === */



/* === volume actual fill and glass controls refinement === */

/* Make the complete radio button capsule more clearly glass */
#radioShell .player-actions {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(90deg, rgba(42,42,42,0.62), rgba(18,18,18,0.58), rgba(78,58,30,0.46)) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-top-color: rgba(255,255,255,0.34) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    0 16px 36px rgba(0,0,0,0.30) !important;
  backdrop-filter: blur(26px) saturate(165%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(165%) !important;
}

/* Keep optional nested pcb wrapper transparent so the parent is the only glass layer */
#radioShell .player-actions .pcb {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Volume slider fill is driven by JS through --volume-fill */
#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"] {
  background:
    linear-gradient(
      90deg,
      #8f6b13 0%,
      #d4af37 calc(var(--volume-fill, 100%) * 0.55),
      #f4d77a var(--volume-fill, 100%),
      rgba(20,20,20,0.92) var(--volume-fill, 100%),
      rgba(10,10,10,0.96) 100%
    ) !important;
}

/* Make sure browser-native range fill does not fight the custom fill */
#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-webkit-slider-runnable-track {
  background: transparent !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-track {
  background: rgba(10,10,10,0.96) !important;
}

#radioShell .player-actions #volumeControl .volume-slider-inline input[type="range"]::-moz-range-progress {
  background: linear-gradient(90deg, #8f6b13, #d4af37, #f4d77a) !important;
}
/* === end volume actual fill and glass controls refinement === */

