/* ═══════════════════════════════════════════════════════════════
   Radio Station Template — Demo 3: Neon Red
   Stijl gebaseerd op SyntheticFM, accent: intense rood
   Stack: Bootstrap 5 + Orbitron + Bebas Neue + Share Tech Mono
   ═══════════════════════════════════════════════════════════════ */

/* ── FONTS ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'BebasNeue';
  src: url('../fonts/BebasNeue-webfont.woff') format('woff'),
       url('../fonts/BebasNeue-webfont.ttf')  format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── CUSTOM PROPERTIES ──────────────────────────────────────────── */
:root {
  --red:          #e85500;        /* Intense Radio oranje-rood */
  --red-dim:      rgba(232,85,0,0.30);
  --red-glow:     rgba(232,85,0,0.55);
  --red-light:    #ff8c30;
  --red-rgb:      232,85,0;

  --bg:           #0b0402;
  --bg-2:         #150800;
  --bg-3:         #1c0c02;
  --border:       rgba(232,85,0,0.20);
  --text:         #f2ece6;
  --text-muted:   rgba(242,236,230,0.45);
  --player-bg:    #070300;
  --player-h:     96px;         /* ticker (24px) + balk (72px) */
  --nav-h:        74px;

  --glow-sm: 0 0 6px  rgba(232,85,0,0.55);
  --glow-md: 0 0 14px rgba(232,85,0,0.45), 0 0 30px rgba(232,85,0,0.20);
  --glow-lg: 0 0 22px rgba(232,85,0,0.70), 0 0 55px rgba(232,85,0,0.35), 0 0 90px rgba(232,85,0,0.12);

  --scanlines: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(232,85,0,0.018) 2px,
    rgba(232,85,0,0.018) 4px
  );
}

/* ── RESET / BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: var(--player-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAVIGATIE ───────────────────────────────────────────────────── */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,6,6,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.navbar__logo:hover { transform: translateY(-1px); }

.navbar__logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 5px rgba(232,85,0,0.55));
  transition: filter 0.3s;
}
.navbar__logo:hover .navbar__logo-img {
  filter: drop-shadow(0 0 10px rgba(232,85,0,0.90)) drop-shadow(0 0 22px rgba(232,85,0,0.40));
}

/* Brede banner: zwarte achtergrond onzichtbaar via screen blend */
.navbar__logo-banner {
  height: 59px;
  width: auto;
  max-width: 352px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: none;
}
.navbar__logo:hover .navbar__logo-banner {
  filter: drop-shadow(0 0 8px rgba(232,85,0,0.6));
}

/* Desktop links */
.navbar__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.navbar__links a {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.90rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,236,230,0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--red);
  box-shadow: var(--glow-sm);
  transition: right 0.25s;
}
.navbar__links a:hover { color: var(--red-light); }
.navbar__links a:hover::after { right: 0; }

/* Rechts: social + burger */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.navbar__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.navbar__social-icon:hover {
  color: var(--red-light);
  background: var(--red-dim);
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.2s, width 0.2s;
  width: 100%;
}
.navbar__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger--open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 var(--player-h) 0;
  z-index: 205;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(12,6,6,0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
.mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__link {
  font-family: 'BebasNeue', 'Orbitron', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}
.mobile-menu__link:hover {
  color: var(--red);
  text-shadow: var(--glow-md);
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--player-h));
  min-height: calc(100dvh - var(--nav-h) - var(--player-h));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #080300;
}

/* Studio foto als eigen laag met hue-rotate: groen → oranje */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/studio.jpg') center / cover no-repeat;
  /* hue-rotate(-90deg): draait groen (120°) naar oranje (30°) */
  filter: hue-rotate(-90deg) saturate(0.9) brightness(0.54);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Donkere overlay + oranje glow vanuit het midden */
  background:
    radial-gradient(ellipse at 50% 38%, rgba(232,85,0,0.22) 0%,   transparent 55%),
    radial-gradient(ellipse at 22% 80%, rgba(180,50,0,0.12) 0%,   transparent 46%),
    radial-gradient(ellipse at 80% 75%, rgba(255,110,0,0.09) 0%,  transparent 40%),
    radial-gradient(ellipse at center,  transparent 35%, rgba(0,0,0,0.50) 100%);
  pointer-events: none;
}

.scanlines-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--scanlines);
  pointer-events: none;
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
  text-align: center;
}

/* ── GLOW BACKDROP (SyntheticFM-stijl frosted blob) ─────────────── */
.hero-logo-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(232,85,0,0.28) 0%,
    rgba(232,85,0,0.14) 35%,
    rgba(180,50,0,0.05) 60%,
    transparent 72%
  );
  filter: blur(55px);
  pointer-events: none;
  z-index: 2;
}

/* ── LOGO WRAP + RINGEN ─────────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  width: 322px;
  height: 322px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 3;
}

/* Pulserende ringen */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(232,85,0,0.55);
  animation: ring-pulse 3.5s ease-out infinite;
  pointer-events: none;
}
.ring--1 { width: 322px; height: 322px; animation-delay: 0s; }
.ring--2 { width: 322px; height: 322px; animation-delay: 1.15s; }
.ring--3 { width: 322px; height: 322px; animation-delay: 2.30s; }

@keyframes ring-pulse {
  0%   { width: 322px; height: 322px; opacity: 0.8; border-color: rgba(232,85,0,0.55); }
  60%  { border-color: rgba(255,140,0,0.20); }
  100% { width: 620px; height: 620px; opacity: 0;   border-color: rgba(255,140,0,0);   }
}

body.is-playing .ring { animation-duration: 2.2s; }

.hero-logo {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  box-shadow: var(--glow-md);
  transition: box-shadow 0.4s;
}

body.is-playing .hero-logo {
  box-shadow: var(--glow-lg);
}

/* Genre-tekst onder hero-logo */
.hero-genres {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--red-light);
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 3;
  text-shadow: var(--glow-md);
}

/* ── VISUALIZER (SyntheticFM-stijl) ──────────────────────────────── */
.visualizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 4px;
  pointer-events: none;
  z-index: 2;
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 100%
  );
}

.visualizer__bar {
  flex: 1;
  min-width: 3px;
  transform-origin: bottom center;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(
    to top,
    rgba(232,85,0,0.70)   0%,
    rgba(255,130,0,0.40)  50%,
    rgba(255,180,0,0.10)  100%
  );
  height: 100%;
  transform: scaleY(0.04);
  will-change: transform;
}

.visualizer--idle .visualizer__bar {
  animation: vis-idle var(--dur) ease-in-out var(--delay) infinite alternate;
}
.visualizer--playing .visualizer__bar {
  animation: vis-play var(--dur) ease-in-out var(--delay) infinite alternate;
  box-shadow: 0 0 5px rgba(232,80,10,0.30);
}

@keyframes vis-idle {
  0%   { transform: scaleY(0.03); }
  100% { transform: scaleY(calc(var(--max-scale) * 0.18)); }
}
@keyframes vis-play {
  0%   { transform: scaleY(0.05); }
  100% { transform: scaleY(var(--max-scale)); }
}

/* ── NOW PLAYING CARD ────────────────────────────────────────────── */
.np-card {
  background: rgba(12,6,6,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem 2.5rem;
  min-width: 300px;
  max-width: min(580px, 90vw);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,48,48,0.08);
}

.np-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--red-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
}

/* Wave bars */
.wave-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.wave-bar {
  display: inline-block;
  width: 2px;
  border-radius: 2px;
  background: var(--red-light);
  transform-origin: bottom;
  transform: scaleY(0.30);
}
.wave-bar:nth-child(1) { height: 8px; }
.wave-bar:nth-child(2) { height: 12px; }
.wave-bar:nth-child(3) { height: 10px; }
.wave-bar:nth-child(4) { height: 12px; }
.wave-bar:nth-child(5) { height: 7px; }

body.is-playing .wave-bar { animation: wave-anim 0.7s ease-in-out infinite; }
body.is-playing .wave-bar:nth-child(1) { animation-duration: 0.60s; animation-delay: 0.00s; }
body.is-playing .wave-bar:nth-child(2) { animation-duration: 0.80s; animation-delay: 0.10s; }
body.is-playing .wave-bar:nth-child(3) { animation-duration: 0.70s; animation-delay: 0.05s; }
body.is-playing .wave-bar:nth-child(4) { animation-duration: 0.90s; animation-delay: 0.15s; }
body.is-playing .wave-bar:nth-child(5) { animation-duration: 0.65s; animation-delay: 0.08s; }

@keyframes wave-anim {
  0%, 100% { transform: scaleY(0.25); }
  50%       { transform: scaleY(1);   }
}

.np-artist {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: var(--glow-sm);
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-track {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.35rem;
}

.np-artist:hover,
.np-track:hover { overflow: visible; cursor: default; }

/* ── MODALS ──────────────────────────────────────────────────────── */
.modal-content {
  background-color: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}
.modal-header { border-bottom: 1px solid var(--border); }
.modal-footer { border-top: 1px solid var(--border); }

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}

.modal-body p, .modal-body li {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(240,232,232,0.78);
}

.modal-body h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--red-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.stream-links li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.stream-links li:last-child { border-bottom: none; }

.stream-links strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.15rem;
}

.stream-links a {
  color: #ff9f9f;
  word-break: break-all;
  font-size: 0.82rem;
  display: block;
  transition: color 0.2s;
}
.stream-links a:hover { color: #fff; }

.lastplayed-info {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(240,232,232,0.75);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.form-control {
  background-color: rgba(232,48,48,0.05);
  border-color: var(--border);
  color: var(--text);
  border-radius: 0.4rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.88rem;
}
.form-control:focus {
  background-color: rgba(232,48,48,0.10);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0.2rem var(--red-dim);
}
.form-control::placeholder { color: rgba(240,232,232,0.22); }

.form-label {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--red);
  border-color: var(--red);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.6rem 1.5rem;
  border-radius: 0.4rem;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #c91e1e;
  border-color: #c91e1e;
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(232,48,48,0.07);
  border-color: var(--border);
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-secondary:hover {
  background-color: rgba(232,48,48,0.14);
  color: #fff;
  border-color: var(--red);
}

/* ── BOTTOM PLAYER ───────────────────────────────────────────────── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--player-bg);
  border-top: 1px solid var(--red);
}

/* Glow-lijn bovenaan player */
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  box-shadow: var(--glow-md);
}

/* Ticker */
.player__ticker {
  overflow: hidden;
  white-space: nowrap;
  height: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
}

.player__ticker-track {
  display: inline-flex;
  gap: 6rem;
  animation: ticker 60s linear infinite;
  will-change: transform;
}

.player__ticker-track span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 3rem;
}

.player__ticker-label {
  color: var(--red);
  font-weight: 700;
  margin-right: 0.6rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Player balk */
.player-wrapper {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 1.25rem;
  gap: 1rem;
}

/* Play button */
.play-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  padding: 0;
  box-shadow: var(--glow-sm);
  animation: neon-pulse 2.8s ease-in-out infinite;
}
.play-btn:hover, .play-btn:focus {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-lg);
  transform: scale(1.1);
  outline: none;
  animation: none;
}
.play-btn.is-playing {
  background: var(--red);
  color: #fff;
  box-shadow: var(--glow-md);
  animation: none;
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: var(--glow-sm); }
  50%       { box-shadow: var(--glow-md); }
}

.play-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

/* Track meta */
.player-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
  gap: 1px;
}

.live-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  line-height: 1;
  text-shadow: var(--glow-sm);
}

.player-artist {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.player-track {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.70rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* Equalizer bars */
.player__eq {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
  flex-shrink: 0;
}

.eq-bar {
  width: 5px;
  height: 24px;
  background: rgba(var(--red-rgb), 0.4);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 4px rgba(var(--red-rgb), 0.25);
  transform-origin: bottom center;
  transform: scaleY(0.2);
  transition: background 0.3s;
}

body.is-playing .eq-bar {
  background: var(--red);
  box-shadow: var(--glow-sm);
}

.eq-bar--1 { animation: eq-bounce 0.65s ease-in-out 0.00s  infinite alternate; }
.eq-bar--2 { animation: eq-bounce 0.48s ease-in-out 0.10s  infinite alternate; }
.eq-bar--3 { animation: eq-bounce 0.85s ease-in-out 0.05s  infinite alternate; }
.eq-bar--4 { animation: eq-bounce 0.55s ease-in-out 0.18s  infinite alternate; }
.eq-bar--5 { animation: eq-bounce 0.72s ease-in-out 0.08s  infinite alternate; }

@keyframes eq-bounce {
  from { transform: scaleY(0.15); opacity: 0.5; }
  to   { transform: scaleY(1);    opacity: 1;   }
}

/* Volume */
.player-vol {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.vol-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: rgba(var(--red-rgb), 0.22);
  outline: none;
  cursor: pointer;
  accent-color: var(--red);
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red-light);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 6px var(--red-dim);
}
.vol-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red-light);
  cursor: pointer;
  border: 2px solid #fff;
}

/* Copyright */
.footer-meta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.3;
}

.copyright,
.powered-by {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 1px;
  color: rgba(240,232,232,0.35);
  text-transform: uppercase;
}
.copyright a, .powered-by a {
  color: rgba(240,232,232,0.26);
  text-decoration: none;
  transition: color 0.2s;
}
.copyright a:hover, .powered-by a:hover { color: var(--red-light); }

/* ── NP-CARD extra glow bij afspelen ─────────────────────────────── */
body.is-playing .np-card {
  border-color: rgba(232,80,10,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 30px rgba(232,60,0,0.12);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar__links   { display: none; }
  .navbar__burger  { display: flex; }
  .mobile-menu     { display: flex; }

  /* backdrop-filter + animaties: iOS Safari renderingbug voorkomen */
  .navbar-wrap {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12,6,6,0.97);
  }

  .play-btn:not(:hover) { animation: none; box-shadow: var(--glow-sm); }
}

@media (max-width: 575px) {
  .footer-meta   { display: none; }
  .vol-slider    { width: 60px; }
  .np-card       { padding: 1.25rem 1.5rem; min-width: unset; }
  .hero-logo      { width: 180px; height: 180px; }
  .hero-logo-wrap { width: 192px; height: 192px; }
  .ring--1, .ring--2, .ring--3 { width: 192px; height: 192px; }
  .hero-logo-glow { width: 360px; height: 360px; }
  .visualizer    { height: 100px; }
}

@media (max-width: 400px) {
  .player-vol    { display: none; }
  .player__eq    { display: none; }
}
