/* =========================================================
   RADIO-CHAOS - stylesheet
   Clean & donker thema: minimalistisch, kaarten-gebaseerd,
   één rustige accentkleur (violet), geen neon-gloed.
   ========================================================= */

:root{
  --color-text:        #ffffff;
  --color-background:  #121212;
  --color-accent1:     #181818;   /* kaart-achtergrond */
  --color-accent2:     #282828;   /* lichtere kaart / hover-status */
  --color-accent3:     #1ed760;   /* Spotify-groen (huidig primair), gebruikt voor accenten */
  --color-orange:      #1ed760;   /* zelfde groen i.p.v. felle CTA-kleur */
  --color-orange-dark: #1db954;   /* iets ingehouden groen voor actieve/pressed status */
  --text-muted:        #b3b3b3;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:'Lato', 'Segoe UI', Arial, sans-serif;
  background:var(--color-background);
  color:var(--color-text);
  position:relative;
  overflow-x:hidden;
}

/* ---------- Bewegende disco-achtergrond ---------- */
.disco-bg{
  display:none;
}

.ticker, .header-glow-line, .wrapper, footer{
  position:relative;
  z-index:1;
}
header{
  position:relative;
  z-index:50;
}

a{ color:inherit; text-decoration:none; }

/* ---------- APP SHELL (zijbalk / hoofdkolom) ---------- */
.rc-sidebar-toggle-input{ display:none; }

.app-shell{
  display:flex;
  align-items:stretch;
  min-height:100vh;
}

/* ---------- SIDEBAR ---------- */
.sidebar{
  width:230px;
  flex-shrink:0;
  position:sticky;
  top:0;
  height:100vh;
  overflow-y:auto;
  padding:22px 18px 24px;
  background:#000000;
  border-right:1px solid rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  gap:26px;
  z-index:50;
}
.sidebar-logo{
  font-size:22px;
  padding-left:6px;
}

.sidebar-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.sidebar-nav > ul > li > a{
  display:flex;
  align-items:center;
  gap:14px;
  padding:11px 12px;
  border-radius:6px;
  font-weight:700;
  font-family:'Overpass', sans-serif;
  font-size:14.5px;
  color:var(--text-muted);
  transition:background .15s, color .15s;
}
.sidebar-nav > ul > li > a:hover{
  color:var(--color-text);
  background:var(--color-accent2);
}
.sidebar-nav > ul > li > a.active{
  color:var(--color-text);
  background:var(--color-accent2);
}
.nav-icon{ font-size:17px; width:20px; text-align:center; flex-shrink:0; }

.sidebar-group-toggle{ display:none; }
.sidebar-group-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  padding:11px 12px;
  border-radius:6px;
  font-weight:700;
  font-family:'Overpass', sans-serif;
  font-size:14.5px;
  color:var(--text-muted);
  transition:background .15s, color .15s;
  user-select:none;
}
.sidebar-group-label:hover{
  color:var(--color-text);
  background:var(--color-accent2);
}
.sidebar-caret{
  font-size:10px;
  transition:transform .2s ease;
  opacity:.7;
}
.sidebar-group-toggle:checked ~ .sidebar-group-label .sidebar-caret{
  transform:rotate(180deg);
}
.sidebar-submenu{
  list-style:none;
  margin:0;
  padding:0;
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.sidebar-group-toggle:checked ~ .sidebar-submenu{
  max-height:260px;
}
.sidebar-submenu a{
  display:block;
  padding:8px 12px 8px 42px;
  font-size:13.5px;
  font-weight:600;
  color:var(--text-muted);
  border-radius:6px;
}
.sidebar-submenu a:hover{
  color:var(--color-text);
  background:var(--color-accent2);
}

.sidebar-scrim{
  display:none;
}

/* ---------- APP MAIN (hoofdkolom, volle breedte) ---------- */
.app-main{
  flex:1;
  min-width:0;
}

.mobile-topbar{
  display:none;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
}
.mobile-menu-btn{
  font-size:24px;
  cursor:pointer;
  color:var(--color-text);
  padding:4px 8px;
}

.header-glow-line{
  margin:0;
  height:1px;
  background:rgba(255,255,255,.08);
}

.logo{
  display:inline-block;
  font-family:'Overpass', 'Segoe UI', sans-serif;
  font-size:26px;
  font-weight:800;
  letter-spacing:.2px;
  color:var(--color-text);
}
.logo span{
  color:var(--color-accent3);
}

.ticker{
  margin:0;
  overflow:hidden;
  padding:10px 40px;
  background:rgba(131,25,150,.15);
  display:flex;
  align-items:center;
  gap:12px;
}
.daypart-clock{
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:1px;
  padding-left:16px;
  border-left:1px solid rgba(255,255,255,.12);
  line-height:1.25;
}
.daypart-label{
  font-weight:800;
  font-size:13px;
  color:var(--color-accent3);
  font-family:'Overpass', sans-serif;
  white-space:nowrap;
}
.daypart-datetime{
  font-size:12px;
  color:var(--text-muted);
  white-space:nowrap;
}
.ticker-label{
  flex-shrink:0;
  font-weight:700;
  font-size:14px;
  color:var(--color-orange);
  font-family:'Overpass', sans-serif;
  white-space:nowrap;
}
.marquee-mask{
  overflow:hidden;
  width:100%;
  height:32px;
  position:relative;
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
}
.marquee-scroll{
  display:flex;
  align-items:center;
  gap:60px;
  white-space:nowrap;
  width:max-content;
  animation:marquee-scroll 8s linear infinite;
}
.marquee-static{
  font-weight:600;
  font-size:14px;
  color:var(--color-text);
  
}
@keyframes marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(calc(-50% - 30px)); }
}

.news-bar-mask .marquee-scroll{
  animation-duration:26s;
}

/* ---------- SECTION BAR TITLES ---------- */
.bar-title{
  background:none;
  color:var(--color-text);
  text-align:left;
  font-weight:800;
  font-size:20px;
  font-family:'Overpass', sans-serif;
  letter-spacing:-.2px;
  padding:0;
  border-radius:0;
  border:none;
  margin-bottom:16px;
}
.bar-title-icon{
  margin-right:8px;
  opacity:.85;
  font-size:16px;
}

/* ---------- LAYOUT ---------- */
.wrapper{
  max-width:1600px;
  margin:0 auto;
  padding:30px 40px 60px;
  overflow-x:hidden;
}

/* ---------- NIEUWS / BERICHTENBALK ---------- */
.news-bar{
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--color-accent1);
  border:1px solid rgba(255,255,255,.06);
  border-radius:10px;
  padding:14px 20px;
  margin-bottom:28px;
  overflow:hidden;
}
.news-bar-label{
  flex-shrink:0;
  font-weight:800;
  font-size:13px;
  letter-spacing:.3px;
  color:var(--color-accent3);
  font-family:'Overpass', sans-serif;
  white-space:nowrap;
}
.news-bar-mask{
  flex:1;
  min-width:0;
}
.news-bar-text{
  font-size:14px;
  color:var(--text-muted);
}

/* ---------- HOMEPAGE: rij 1 = hero + LIVE Programma naast elkaar ---------- */
.home-toprow{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:28px;
  align-items:start;
}
.home-toprow .hero-player{
  margin-bottom:0;
  height:fit-content;
  align-self:start;
}
.home-rightpanel{ min-width:0; display:flex; flex-direction:column; }
.home-rightpanel .verzoek-panel{ padding:16px; flex:1; }

.home-row-title{ margin-top:36px; }

@media (max-width:1180px){
  .home-toprow{ grid-template-columns:1fr; }
}

.grid-3{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr) minmax(0,1fr);
  gap:24px;
  align-items:stretch;
}
.grid-3 > div{
  min-width:0;
  display:flex;
  flex-direction:column;
}
.grid-3 .panel{
  flex:1;
  display:flex;
  flex-direction:column;
}
.grid-3 .panel > .btn:last-child{
  margin-top:auto;
  margin-bottom:0;
}

.panel{
  background:var(--color-accent1);
  border:none;
  border-radius:12px;
  padding:16px;
  transition:background .2s ease;
}
.panel:hover{
  background:var(--color-accent2);
}

.info-panel{ display:flex; flex-direction:column; justify-content:center; }
.info-text{
  font-size:15px;
  line-height:1.6;
  color:var(--color-text);
  margin:0 0 12px;
}
.info-note{
  font-size:12px;
  color:var(--text-muted);
  font-style:italic;
  margin:0;
}

/* ---------- LIVE RADIO PLAYER ---------- */
.player-panel{ text-align:center; }

/* ---------- HERO PLAYER (homepage) ---------- */
.hero-player{
  display:flex;
  align-items:center;
  gap:40px;
  background:var(--color-accent1);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
  padding:36px;
  margin-bottom:32px;
  position:relative;
  overflow:hidden;
}
.hero-cover-wrap{
  position:relative;
  flex-shrink:0;
  width:340px;
  height:340px;
  border-radius:16px;
  overflow:hidden;
  background:var(--color-accent1);
  box-shadow:0 10px 40px rgba(0,0,0,.5);
}
.hero-cover-wrap img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:opacity .25s ease;
}
.hero-play-btn{
  width:96px; height:96px;
  font-size:36px;
}
.hero-info{ flex:1; min-width:0; }
.hero-eyebrow{
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--color-accent3);
  margin-bottom:10px;
}
.hero-title{
  font-family:'Overpass', sans-serif;
  font-weight:800;
  font-size:40px;
  line-height:1.15;
  color:var(--color-text);
  margin:6px 0 8px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hero-artist{
  font-size:17px;
  color:var(--text-muted);
  margin-bottom:10px;
}
.hero-volume-row{
  max-width:320px;
  margin-top:14px;
}
.hero-buttons{
  display:flex;
  gap:14px;
  margin-top:18px;
  max-width:420px;
}
.hero-buttons .btn{ margin-bottom:0; }

@media (max-width: 900px){
  .hero-player{ flex-direction:column; text-align:center; padding:24px; }
  .hero-cover-wrap{ width:220px; height:220px; }
  .hero-title{ font-size:26px; white-space:normal; }
  .hero-buttons{ flex-direction:column; max-width:100%; }
}

.cover-wrap{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:14px;
  aspect-ratio:1/1;
  width:100%;
  max-width:100%;
  max-height:400px;
  background:var(--color-accent1);
}
.cover-wrap img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:opacity .25s ease;
}
.live-dot{
  position:absolute;
  top:10px; left:10px;
  width:12px; height:12px;
  border-radius:50%;
  background:#e0193f;
  box-shadow:0 0 0 0 rgba(224,25,63,.7);
  animation:pulse-dot 1.8s infinite;
}
@keyframes pulse-dot{
  0%   { box-shadow:0 0 0 0 rgba(224,25,63,.7); }
  70%  { box-shadow:0 0 0 10px rgba(224,25,63,0); }
  100% { box-shadow:0 0 0 0 rgba(224,25,63,0); }
}

.play-btn{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:64px; height:64px;
  background:var(--color-accent3);
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#000000;
  cursor:pointer;
  box-shadow:0 8px 16px rgba(0,0,0,.4);
  transition:transform .15s ease, background .15s ease;
}
.play-btn:hover{
  transform:translate(-50%,-50%) scale(1.06);
  filter:brightness(1.1);
}

.now-playing{ margin-bottom:12px; }
.np-status{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--color-orange);
  font-weight:700;
  margin-bottom:4px;
}
.np-title{
  font-weight:800;
  font-size:16px;
  font-family:'Overpass', sans-serif;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.np-artist{
  font-size:13px;
  color:var(--text-muted);
  margin-top:2px;
}
.np-listeners{
  font-size:12px;
  color:var(--text-muted);
  margin-top:6px;
}

.volume-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.mute-btn{
  background:none;
  border:none;
  color:var(--color-text);
  font-size:18px;
  cursor:pointer;
}
.volume-row input[type="range"]{
  flex:1;
  accent-color:var(--color-orange);
}

.btn{
  display:block;
  width:100%;
  text-align:center;
  background:transparent;
  border:1px solid #727272;
  color:var(--color-text);
  font-weight:700;
  font-family:'Overpass', sans-serif;
  letter-spacing:.2px;
  padding:11px;
  border-radius:24px;
  margin-bottom:12px;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover{
  background:var(--color-text);
  border-color:var(--color-text);
  color:#000000;
  transform:scale(1.02);
}
.btn:active{ transform:scale(1); }

.programma-panel{
  padding:16px;
  flex:1;
  display:flex;
  flex-direction:column;
}

/* ---------- TOP 10 WIDGET ---------- */
.top10-panel{
  padding:16px;
  display:flex;
  justify-content:center;
}
.top10-iframe{
  display:block;
  width:100%;
  max-width:100%;
  height:120px;
  border:none;
  border-radius:8px;
}
.programma-iframe{
  display:block;
  width:100%;
  height:100%;
  flex:1;
  min-height:400px;
  border:none;
  border-radius:8px;
}

/* ---------- Losse uitzendschema-pagina ---------- */
.schema-page-panel{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}
.programma-iframe-full{
  display:block;
  width:100%;
  height:900px;
  border:none;
  border-radius:8px;
}

/* ---------- Non-stop Verzoek ---------- */
.request-widget-panel{
  display:flex;
  justify-content:center;
  padding:28px;
}
/* ---------- Radioteam-pagina ---------- */
.team-page-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:1300px;
  margin:0 auto;
  padding:32px;
}
.team-intro{
  text-align:center;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.6;
  margin:0 0 24px;
}
.team-iframe-frame{
  padding:16px;
  border-radius:16px;
  background:rgba(0,0,0,.3);
  border:1px solid rgba(0,229,255,.3);
  box-shadow:0 4px 20px rgba(0,0,0,.4);
  overflow:hidden;
  width:1242px;
  max-width:100%;
  height:1495px;
}
.team-iframe{
  display:block;
  width:1080px;
  height:1300px;
  border:none;
  border-radius:8px;
  transform:scale(1.15);
  transform-origin:top left;
}

/* ---------- ZOJUIST GEDRAAID ---------- */
.track-list{ list-style:none; margin:0 0 14px; padding:0; }
.track-list li{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 8px;
  border-bottom:1px solid rgba(245,209,189,.1);
}
.track-thumb{
  width:52px; height:52px;
  border-radius:10px;
  background:var(--color-accent3);
  background-size:cover;
  background-position:center;
  flex-shrink:0;
  box-shadow:0 2px 6px rgba(0,0,0,.4);
}
.track-info{ flex:1; min-width:0; }
.track-title{
  font-weight:700;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.track-artist{ font-size:14px; color:var(--text-muted); }
.track-num{ font-size:22px; color:var(--text-muted); font-weight:300; }
.track-list-empty{
  padding:16px 6px;
  color:var(--text-muted);
  font-size:14px;
  text-align:center;
}

/* ---------- LIVE PROGRAMMA ---------- */
.live-photo{ position:relative; border-radius:8px; overflow:hidden; margin-bottom:12px; aspect-ratio:1/1; width:100%; }
.live-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.on-air{
  position:absolute; top:12px; right:12px;
  background:#e0193f; color:#fff;
  font-size:11px; font-weight:800;
  padding:4px 10px; border-radius:3px; letter-spacing:1px;
}
.whatsapp{
  position:absolute; bottom:12px; right:12px;
  width:38px; height:38px;
  background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
}
.dj-name{ font-weight:800; font-size:17px; font-family:'Overpass', sans-serif; }
.dj-studio{ color:var(--text-muted); font-size:13px; margin-bottom:14px; }
.dj-contact{ font-weight:700; font-size:13px; color:var(--color-orange); }

.djdisplay-fallback{
  margin-top:14px;
}
.djdisplay-fallback summary{
  cursor:pointer;
  font-size:12px;
  color:var(--text-muted);
  padding:6px 2px;
  list-style:none;
}
.djdisplay-fallback summary::-webkit-details-marker{ display:none; }
.djdisplay-fallback summary:hover{ color:var(--color-text); }
.djdisplay-fallback[open] summary{ margin-bottom:8px; }
.djdisplay-iframe{
  height:360px;
  max-width:100%;
  width:100%;
  border-radius:8px;
}

/* ---------- LIVE PROGRAMMA (verzoeksysteem iframe) ---------- */
.verzoek-panel{
  display:flex;
  flex-direction:column;
  gap:0;
  padding:16px;
}
.verzoek-panel iframe{
  max-width:100%;
  width:100%;
  border-radius:8px;
}

.listen-toggle{
  margin-bottom:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.listen-links{
  list-style:none;
  margin:0;
  padding:0;
  width:100%;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .3s ease, opacity .3s ease, margin-top .3s ease;
}
.listen-links.open{
  max-height:300px;
  opacity:1;
  margin-top:4px;
}
.listen-links li + li{ margin-top:6px; }
.listen-links a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border-radius:10px;
  background:rgba(245,209,189,.06);
  border:1px solid rgba(245,209,189,.12);
  color:var(--color-text);
  font-size:13px;
  font-weight:600;
  transition:background .2s, border-color .2s, transform .2s;
}
.listen-links a:hover{
  background:rgba(245,166,35,.15);
  border-color:var(--color-orange);
  color:var(--color-orange);
  transform:translateX(3px);
}
.listen-icon{ font-size:16px; flex-shrink:0; }

/* ---------- Luister mogelijkheden (eigen pagina) ---------- */
.listen-intro{
  color:var(--text-muted);
  font-size:15px;
  line-height:1.6;
  margin:0 0 28px;
  max-width:720px;
}
.listen-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  margin-bottom:32px;
}
.listen-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  background:var(--color-accent1);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:28px 24px;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.listen-card:hover{
  transform:translateY(-4px);
  background:var(--color-accent2);
  border-color:var(--color-accent3);
}
.listen-card-icon{
  font-size:36px;
  line-height:1;
}
.listen-card-label{
  font-family:'Overpass', sans-serif;
  font-weight:800;
  font-size:19px;
  color:var(--color-text);
}
.listen-card-desc{
  font-size:13.5px;
  color:var(--text-muted);
  line-height:1.5;
}
.listen-back-btn{
  display:inline-block;
  width:auto;
  padding:11px 26px;
}

/* ---------- Nieuwe Singles ---------- */
.inline-credit-link{
  color:var(--color-accent3);
  text-decoration:underline;
}
.release-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
  margin-bottom:32px;
}
.release-card{
  display:flex;
  flex-direction:column;
  background:var(--color-accent1);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease;
}
.release-card:hover{
  transform:translateY(-4px);
  border-color:var(--color-accent3);
}
.release-card-img{
  width:100%;
  aspect-ratio:1/1;
  background:var(--color-accent2);
  overflow:hidden;
}
.release-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.release-card-img-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  color:var(--text-muted);
}
.release-card-body{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px;
}
.release-card-title{
  font-family:'Overpass', sans-serif;
  font-weight:800;
  font-size:15px;
  color:var(--color-text);
  line-height:1.35;
}
.release-card-desc{
  font-size:12.5px;
  color:var(--text-muted);
  line-height:1.5;
}

/* ---------- Ons Team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
  gap:20px;
  margin-bottom:32px;
}
.team-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}
.team-card-avatar{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  background:var(--color-accent1);
  border:2px solid rgba(255,255,255,.08);
}
.team-card-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.team-card-avatar-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:var(--text-muted);
}
.team-card-live{
  position:absolute;
  bottom:4px;
  left:50%;
  transform:translateX(-50%);
  background:#e0193f;
  color:#fff;
  font-size:9px;
  font-weight:800;
  letter-spacing:.5px;
  padding:3px 8px;
  border-radius:20px;
}
.team-card-name{
  font-family:'Overpass', sans-serif;
  font-weight:800;
  font-size:14px;
  color:var(--color-text);
}

/* ---------- Programma Deze Week ---------- */
.schema-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.schema-tab-btn{
  background:var(--color-accent1);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  color:var(--text-muted);
  font-family:'Overpass', sans-serif;
  font-weight:700;
  font-size:13px;
  padding:9px 18px;
  cursor:pointer;
  transition:background .15s, color .15s;
  display:flex;
  align-items:center;
  gap:6px;
}
.schema-tab-btn:hover{ color:var(--color-text); background:var(--color-accent2); }
.schema-tab-btn.active{
  background:var(--color-accent3);
  color:#04140a;
  border-color:var(--color-accent3);
}
.schema-tab-today{
  font-size:9px;
  font-weight:800;
  background:rgba(0,0,0,.25);
  padding:2px 6px;
  border-radius:10px;
}
.schema-panel{ padding:14px 18px; }
.schema-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 4px;
  border-bottom:1px solid rgba(245,209,189,.1);
}
.schema-item:last-child{ border-bottom:none; }
.schema-item-time{
  flex-shrink:0;
  width:110px;
  font-weight:700;
  font-size:14px;
  color:var(--color-accent3);
}
.schema-item-avatar{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.schema-item-body{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:0;
}
.schema-item-title{
  font-weight:700;
  font-size:16px;
  color:var(--color-text);
}
.schema-item-dj{
  font-size:13.5px;
  color:var(--text-muted);
}

/* ---------- PROGRAMMA VANDAAG / MUZIEK PROMOTIE ---------- */
.grid-2{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:24px;
  margin-top:40px;
  align-items:stretch;
}
.grid-2 > div{
  min-width:0;
  display:flex;
  flex-direction:column;
}
.grid-2 .panel{
  flex:1;
  display:flex;
  flex-direction:column;
}

.schedule-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:12px 6px;
  border-bottom:1px solid rgba(245,209,189,.1);
}
.schedule-thumb{ width:46px; height:46px; border-radius:8px; background:var(--color-accent3); flex-shrink:0; }
.schedule-time{ font-size:12px; color:var(--text-muted); width:110px; flex-shrink:0; }
.schedule-title{ font-weight:700; font-family:'Overpass', sans-serif; }
.schedule-sub{ font-size:13px; color:var(--text-muted); }
.schedule-extra{ font-size:12px; color:var(--color-orange); font-weight:600; }

.promo-image{
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--color-orange);
  flex:1;
  min-height:0;
}
.promo-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.grid-2 .btn{ margin-top:16px; }

.partners-wrapper{
  padding-top:0;
}
.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 320px));
  justify-content:center;
  gap:20px;
}
.partner-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a0a12;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(245,209,189,.15);
  transition:transform .2s, border-color .2s;
}
.partner-logo:hover{ transform:translateY(-3px); border-color:var(--color-orange); }
.partner-logo img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

footer{
  text-align:center;
  padding:30px 20px;
  color:var(--text-muted);
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* ---------- Verzoekplaat popup ---------- */
.modal-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(10,1,14,.75);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.modal-overlay.open{
  display:flex;
}
.modal-box{
  position:relative;
  background:var(--color-accent1);
  border:1px solid rgba(245,209,189,.15);
  border-radius:12px;
  padding:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
  max-width:680px;
  width:100%;
  max-height:92vh;
  overflow-y:auto;
  overflow-x:hidden;
}
.modal-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--color-orange);
  color:#2a0630;
  border:2px solid var(--color-accent1);
  font-size:20px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.modal-close:hover{ background:#fff; }
.modal-iframe{
  display:block;
  width:100%;
  height:1650px;
  max-height:none;
  border:none;
  border-radius:8px;
  overflow:hidden;
}

@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }

  /* Zijbalk wordt een uitschuifbaar paneel op mobiel */
  .mobile-topbar{ display:flex; }
  .ticker{ padding:8px 20px; flex-wrap:wrap; row-gap:4px; }
  .daypart-clock{ border-left:none; padding-left:0; align-items:flex-start; }
  .wrapper{ padding:24px 20px 50px; }

  .sidebar{
    position:fixed;
    top:0; left:0;
    height:100vh;
    transform:translateX(-100%);
    transition:transform .25s ease;
    box-shadow:0 0 40px rgba(0,0,0,.6);
  }
  .rc-sidebar-toggle-input:checked ~ .app-shell .sidebar,
  .rc-sidebar-toggle-input:checked + .app-shell .sidebar{
    transform:translateX(0);
  }
  .rc-sidebar-toggle-input:checked ~ .app-shell .sidebar-scrim,
  .rc-sidebar-toggle-input:checked + .app-shell .sidebar-scrim{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:40;
  }
}

/* ---------- Formulieren (Contact / DJ Aanmelden) ---------- */
.contact-panel{
  max-width:640px;
  margin:0 auto;
  padding:28px;
}
.form-intro{
  color:var(--text-muted);
  font-size:15px;
  line-height:1.6;
  margin:0 0 20px;
}
.rc-form .form-row{
  margin-bottom:16px;
}
.rc-form label{
  display:block;
  font-weight:700;
  font-size:13px;
  letter-spacing:.3px;
  color:var(--color-orange);
  margin-bottom:6px;
  
}
.rc-form input[type="text"],
.rc-form input[type="email"],
.rc-form textarea{
  width:100%;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(0,229,255,.3);
  border-radius:10px;
  padding:11px 14px;
  color:var(--color-text);
  font-family:'Lato', sans-serif;
  font-size:14px;
  transition:border-color .2s, box-shadow .2s;
}
.rc-form input[type="text"]:focus,
.rc-form input[type="email"]:focus,
.rc-form textarea:focus{
  outline:none;
  border-color:var(--color-orange);
  box-shadow:0 0 0 3px rgba(139,92,246,.2);
}
.rc-form textarea{ resize:vertical; min-height:120px; }
.form-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.form-submit{
  margin-top:8px;
  margin-bottom:0;
}
.form-success{
  background:rgba(212,255,0,.1);
  border:1px solid rgba(212,255,0,.4);
  color:var(--color-accent2);
  padding:16px;
  border-radius:10px;
  font-weight:600;
}
.form-error{
  background:rgba(255,43,214,.1);
  border:1px solid rgba(255,43,214,.4);
  color:#ff6fe0;
  padding:12px 16px;
  border-radius:10px;
  font-weight:600;
  margin-bottom:16px;
}

/* ---------- DJ Aanmelden (twee-koloms layout) ---------- */
.dj-apply-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:48px;
  align-items:start;
}
.onair-badge{
  display:block;
  width:200px;
  max-width:60%;
  margin-bottom:20px;
  filter:drop-shadow(0 0 12px rgba(255,43,214,.4));
}
.dj-apply-intro h1{
  font-family:'Overpass', sans-serif;
  font-weight:900;
  font-style:italic;
  font-size:32px;
  line-height:1.2;
  margin:0 0 18px;
  color:var(--color-orange);
  
}
.dj-apply-intro p{
  font-size:15px;
  line-height:1.65;
  color:var(--color-text);
  margin:0 0 14px;
}
.dj-apply-links{
  list-style:none;
  margin:20px 0 0;
  padding:0;
}
.dj-apply-links a{
  color:var(--color-accent3);
  font-weight:700;
  text-decoration:underline;
  
}
.dj-apply-links a:hover{ color:var(--color-orange); }

.dj-apply-form{
  background:rgba(28,15,56,.5);
  border:1px solid rgba(0,229,255,.18);
  border-radius:14px;
  padding:28px;
  box-shadow:0 4px 20px rgba(0,0,0,.35);
}
.rc-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 20px;
}
.form-row-full{ grid-column:1 / -1; }
.form-check-row{ margin-top:4px; }
.form-checkbox{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:14px;
  color:var(--color-text);
  cursor:pointer;
}
.form-checkbox input{
  width:18px;
  height:18px;
  accent-color:var(--color-accent3);
  cursor:pointer;
}
.form-note{
  grid-column:1 / -1;
  font-size:12px;
  color:var(--text-muted);
  margin:10px 0 0;
}

@media (max-width: 900px){
  .dj-apply-grid{ grid-template-columns:1fr; }
  .rc-form-grid{ grid-template-columns:1fr; }
}

/* ---------- Chatregels ---------- */
.rules-panel{
  max-width:760px;
  margin:0 auto;
  padding:28px;
}
.rules-list{
  margin:20px 0;
  padding-left:22px;
  color:var(--color-text);
}
.rules-list li{
  margin-bottom:14px;
  line-height:1.6;
  font-size:15px;
}
.rules-list strong{
  color:var(--color-orange);
  
}
.rules-panel .info-note a{
  color:var(--color-accent3);
  text-decoration:underline;
}
.rules-panel .info-note a:hover{ color:var(--color-orange); }
.rules-panel .btn{ margin-top:20px; }
