:root{
    --bg:#0c0c13;
    --text:#ffffff;
    --card:#151526;
    --accent:#ff4d4d;
    --radius:20px;
}

body{
    margin:0;
    padding:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter', Arial, sans-serif;
}

/* HEADER */
.site-header{
    background:#11121a;
    padding:20px 0;
    border-bottom:2px solid rgba(255,255,255,.05);
}
.nav-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    font-size:28px;
    font-weight:700;
}
nav a{
    margin-left:18px;
    color:#949aff;
    text-decoration:none;
    font-weight:500;
}
nav a:hover{
    opacity:.7;
}

/* HERO */
.hero{
    padding:120px 0;
    text-align:center;
    background:url('/assets/img/bg.jpg') center/cover no-repeat;
}
.hero-title{
    font-size:60px;
    margin:0;
}
.hero-sub{
    font-size:22px;
    margin-top:10px;
    opacity:.8;
}
.btn-listen{
    margin-top:20px;
    padding:14px 26px;
    font-size:18px;
    text-decoration:none;
    color:#fff;
    background:var(--accent);
    border-radius:var(--radius);
    display:inline-block;
}
.btn-listen:hover{ opacity:.7; }

/* SECTIONS */
.section{
    padding:70px 0;
}
.section.alt{
    background:#0f0f18;
}
.section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:32px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* DJ GRID */
.dj-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:30px;
}
.dj-card{
    background:var(--card);
    padding:20px;
    border-radius:var(--radius);
    box-shadow:0 8px 30px rgba(0,0,0,.25);
    text-align:center;
}
.dj-card img{
    width:100%;
    border-radius:var(--radius);
    margin-bottom:12px;
}

/* FOOTER */
.site-footer{
    text-align:center;
    padding:35px 0;
    opacity:.6;
    font-size:14px;
}
/* ---- MOOIE HERO MET KLEURVERLOOP & GLOW ---- */

.hero{
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg,#1a0036 0%, #40005e 45%, #ff0077 100%);
    overflow: hidden;
}

/* bewegende lichtvlek voor fancy effect */
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle, rgba(255,0,140,.4) 0%, transparent 70%);
    top:-150px;
    left:-200px;
    animation: float 8s infinite alternate ease-in-out;
    filter: blur(50px);
    opacity:.6;
}
@keyframes float{
    0%{ transform: translate(0,0) }
    100%{ transform: translate(180px,40px) }
}

.hero-overlay{
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.07);
    padding:60px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 15px 50px rgba(0,0,0,.4);
}

.hero-content h1{
    color:white;
    font-size:64px;
    margin:0 0 10px 0;
    text-shadow:0 0 25px rgba(255,255,255,.5);
}

.hero-content .sub{
    font-size:22px;
    opacity:.9;
    margin-bottom:25px;
}

.btn-listen{
    display:inline-block;
    padding:14px 34px;
    font-size:22px;
    border-radius:50px;
    background:#ff1f62;
    color:white;
    text-decoration:none;
    font-weight:700;
    box-shadow: 0 0 25px rgba(255,0,100,.6), 0 8px 25px rgba(0,0,0,.5);
    transition: .2s ease;
}

.btn-listen:hover{
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,0,100,.9), 0 12px 35px rgba(0,0,0,.6);
}
/* ---- MOOIE HERO MET KLEURVERLOOP & GLOW ---- */

.hero{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg,#1a0036 0%, #40005e 45%, #ff0077 100%);
    overflow: hidden;
}

/* bewegende lichtvlek voor fancy effect */
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle, rgba(255,0,140,.4) 0%, transparent 70%);
    top:-150px;
    left:-200px;
    animation: float 8s infinite alternate ease-in-out;
    filter: blur(50px);
    opacity:.6;
}
@keyframes float{
    0%{ transform: translate(0,0) }
    100%{ transform: translate(180px,40px) }
}

.hero-overlay{
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.07);
    padding:60px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 15px 50px rgba(0,0,0,.4);
}

.hero-content h1{
    color:white;
    font-size:64px;
    margin:0 0 10px 0;
    text-shadow:0 0 25px rgba(255,255,255,.5);
}

.hero-content .sub{
    font-size:22px;
    opacity:.9;
    margin-bottom:25px;
}

.btn-listen{
    display:inline-block;
    padding:14px 34px;
    font-size:22px;
    border-radius:50px;
    background:#ff1f62;
    color:white;
    text-decoration:none;
    font-weight:700;
    box-shadow: 0 0 25px rgba(255,0,100,.6), 0 8px 25px rgba(0,0,0,.5);
    transition: .2s ease;
}

.btn-listen:hover{
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,0,100,.9), 0 12px 35px rgba(0,0,0,.6);
}
.dj-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    padding:20px 0;
}

.dj-card {
    background: rgba(255,255,255,0.05);
    border-radius:14px;
    padding:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 0 15px rgba(0,0,0,0.2);
    transition:0.2s;
}
.dj-card:hover {
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(0,0,0,0.3);
}

.dj-photo {
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}
.dj-photo {
    width:120px;         /* vaste breedte */
    height:120px;        /* vaste hoogte */
    object-fit:cover;    /* vult rond vlak zonder vervormen */
    border-radius:50%;   /* maakt hem rond */
    margin:0 auto 12px;  /* mooi gecentreerd met ruimte eronder */
    display:block;
    border:2px solid rgba(255,255,255,0.15);
}
/* --- DJ-foto fix: rond, klein, gecentreerd --- */
.dj-card img.dj-photo {
    width:120px !important;
    height:120px !important;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 12px;
    display:block;
    border:2px solid rgba(255,255,255,0.15);
}
.stream-card{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 0 25px rgba(0,0,0,.25);
    margin-top:30px;
}

.stream-indicator{
    font-size:22px;
    margin-bottom:10px;
    font-weight:600;
}
.stream-indicator.online{
    color:#00ff99;
    text-shadow:0 0 12px rgba(0,255,120,.6);
}
.stream-indicator.offline{
    color:#ff5d5d;
}

.stream-song{
    font-size:20px;
    font-weight:500;
    margin-bottom:10px;
}

.stream-meta{
    opacity:.8;
    font-size:15px;
}
.stream-card{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 0 25px rgba(0,0,0,.25);
    margin-top:30px;
}

.stream-indicator{
    font-size:22px;
    margin-bottom:10px;
    font-weight:600;
}
.stream-indicator.online{
    color:#00ff99;
    text-shadow:0 0 12px rgba(0,255,120,.6);
}
.stream-indicator.offline{
    color:#ff5d5d;
}

.stream-song{
    font-size:20px;
    font-weight:500;
    margin-bottom:10px;
}

.stream-meta{
    opacity:.8;
    font-size:15px;
    line-height:1.3em;
}
/* --- PREMIUM PLAYER --- */
.player-section{ padding:20px 0; }

.player-card{
    background: rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding:18px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 0 25px rgba(0,0,0,.3);
}

.player-cover{
    width:70px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
    box-shadow:0 0 15px rgba(255,0,100,.4);
}

.player-title{
    font-size:22px;
    font-weight:700;
    color:#fff;
    text-shadow:0 0 10px rgba(255,0,120,.5);
}

.player-meta{
    font-size:14px;
    opacity:.85;
    margin-top:4px;
}

/* --- PLAY BUTTON --- */
.player-btn{
    background:#ff1f62;
    color:white;
    border:none;
    border-radius:50%;
    width:60px;
    height:60px;
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 0 15px rgba(255,0,100,.5);
    transition:.2s;
}
.player-btn:hover{ transform:scale(1.08); }

/* --- VISUALIZER BARS --- */
.visualizer{
    display:flex;
    align-items:flex-end;
    gap:4px;
    margin-top:10px;
    height:26px;
}

.visualizer .bar{
    width:4px;
    height:8px;
    background:#ff1f62;
    border-radius:4px;
    animation: bounce 0.6s infinite;
    opacity:0.85;
}
.visualizer .bar:nth-child(odd){ animation-duration:0.45s; }

@keyframes bounce{
    0%{height:6px;}
    50%{height:24px;}
    100%{height:6px;}
}

/* ==== Spectacular Player ==== */
.player-section{ padding:20px 0; }
.player-card{
  position:relative;
  background: rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius:22px; padding:18px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  box-shadow:0 0 25px rgba(0,0,0,.3);
}
.player-card.fancy::before{
  content:""; position:absolute; top:-30px; left:-50px; width:320px; height:320px;
  background: radial-gradient(circle, rgba(255,0,120,.35) 0%, transparent 70%);
  filter: blur(60px); animation: floatGlow 8s infinite alternate ease-in-out; z-index:-1;
}
@keyframes floatGlow{ 0%{transform:translate(0,0)} 100%{transform:translate(60px,30px)} }

.player-left{ display:flex; flex-direction:column; gap:10px; align-items:center; }
.live-indicator{
  color:#ff5d5d; font-weight:800; font-size:14px; letter-spacing:.5px;
}
.live-indicator.live{
  color:#00ff92; text-shadow:0 0 12px #00ff92; animation:pulseLive 1.2s infinite;
}
@keyframes pulseLive{ 0%{opacity:1} 50%{opacity:.35} 100%{opacity:1} }

.player-cover{
  width:80px; height:80px; border-radius:12px; object-fit:cover;
  box-shadow:0 0 15px rgba(255,0,100,.4); transition:.3s;
}
.player-cover.spin{ animation: spin 6s linear infinite; }
@keyframes spin{ 100% { transform: rotate(360deg); } }

.player-title{ font-size:22px; font-weight:800; color:#fff; text-shadow:0 0 10px rgba(255,0,120,.5); }
.player-meta{ font-size:14px; opacity:.85; margin-top:6px; min-height:22px; }

.player-btn{
  background:#ff1f62; color:white; border:none; border-radius:50%;
  width:64px; height:64px; font-size:26px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:0 0 15px rgba(255,0,100,.5); transition:.2s;
}
.player-btn:hover{ transform:scale(1.08); }

.visualizer{ display:flex; align-items:flex-end; gap:5px; margin-top:14px; height:36px; }
.visualizer .bar{ width:5px; height:8px; background:#ff1f62; border-radius:4px; opacity:.9; }

/* Pulse bij nieuwe titel */
@keyframes pulseTitle{ 0%{transform:scale(1)} 50%{transform:scale(1.05)} 100%{transform:scale(1)} }

.schedule-cards{
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
}

.schedule-card{
  flex:1;
  max-width:380px;
  background:rgba(255,255,255,0.05);
  padding:25px;
  text-align:center;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 40px rgba(0,0,0,0.3);
  transition:.2s;
}

.schedule-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 50px rgba(0,0,0,0.4);
}

.schedule-card h3{
  margin:0 0 15px 0;
  color:#ffd57a;
  font-size:22px;
}

.dj-face{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,0.15);
  margin-bottom:10px;
}

.schedule-card h4{
  margin:10px 0 5px 0;
  font-size:22px;
}

.time-tag{
  display:inline-block;
  margin-top:8px;
  padding:6px 14px;
  background:#ffcc66;
  color:#000;
  border-radius:20px;
  font-weight:600;
}
.live-section{
    padding:70px 0;
}

.live-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.live-card{
    background:rgba(255,255,255,0.04);
    border-radius:20px;
    padding:30px;
    text-align:center;
    position:relative;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 0 25px rgba(0,0,0,.3);
    backdrop-filter:blur(6px);
    transition:.25s;
}

.live-card:hover{
    transform:translateY(-4px);
    box-shadow:0 0 35px rgba(255,0,0,.5);
}

.now-live{
    animation: pulseGlow 2.5s infinite alternate;
    border:1px solid rgba(255,0,50,.9);
    box-shadow:0 0 35px rgba(255,0,80,.9);
}

@keyframes pulseGlow{
    0% { box-shadow:0 0 10px rgba(255,0,80,.4); }
    100% { box-shadow:0 0 35px rgba(255,0,80,1); }
}

.live-badge{
    position:absolute;
    top:10px;
    left:10px;
    padding:6px 12px;
    background:#ff0040;
    color:#fff;
    border-radius:50px;
    font-size:12px;
    font-weight:bold;
    animation: blink 1s infinite;
}

.upcoming{
    background:#008cff;
    animation:none;
}

@keyframes blink{
    0%{opacity:1;}
    50%{opacity:.4;}
    100%{opacity:1;}
}

.live-dj-photo{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid rgba(255,255,255,.2);
    box-shadow:0 0 25px rgba(255,255,255,.2);
    margin-bottom:15px;
}

.bars{
    height:20px;
    display:flex;
    justify-content:center;
    margin-top:15px;
}
.bars span{
    display:block;
    width:4px;
    margin:0 2px;
    background:#ff0040;
    animation: beat 1s infinite ease-in-out;
}
.bars span:nth-child(odd){ animation-delay:.2s; }

@keyframes beat{
    0%{height:2px;}
    50%{height:18px;}
    100%{height:2px;}
}

.countdown{
    margin-top:12px;
    font-size:15px;
    color:#fff;
    opacity:.8;
}
.track-cover-wrap{
    width:160px;
    height:160px;
    border-radius:12px;
    overflow:hidden;
    margin:10px auto;
    box-shadow:0 0 25px rgba(255,255,255,.2);
}

.track-cover{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
    border-radius:12px;
}

.track-title{
    margin-top:8px;
    font-size:18px;
    font-weight:600;
    animation: scrollText 12s linear infinite;
}

@keyframes scrollText{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}
.live-topbar{
    width:100%;
    background:#ff0040;
    color:white;
    padding:6px 0;
    font-size:14px;
    font-weight:600;
    text-align:center;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    box-shadow:0 0 15px rgba(255,0,0,.6);
}

.topbar-inner{
    animation: ticker 12s linear infinite;
    white-space: nowrap;
    display:inline-block;
}

.divider{
    margin:0 8px;
    opacity:.7;
}

@keyframes ticker{
    0%{ transform:translateX(20%); }
    100%{ transform:translateX(-20%); }
}

/* Schuif de rest van de site omlaag omdat topbar fixed is */
body{ margin-top:34px; }
.live-topbar{
    width:100%;
    background:linear-gradient(90deg, #ff0040, #b3005c);
    color:white;
    padding:6px 0;
    font-size:14px;
    font-weight:600;
    text-align:center;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    box-shadow:0 0 15px rgba(255,0,80,.6);
    text-shadow:0 0 6px rgba(255,255,255,.8);
}

.live-topbar span{
    animation: glowText 1.6s infinite alternate;
}

@keyframes glowText{
    0%   { opacity:1; text-shadow:0 0 6px rgba(255,255,255,.9); }
    50%  { opacity:.82; text-shadow:0 0 10px rgba(255,0,100,1); }
    100% { opacity:1; text-shadow:0 0 6px rgba(255,255,255,.9); }
}

.divider{
    margin:0 8px;
    opacity:.5;
}

/* duwt hele site een stukje omlaag omdat topbar fixed is */
body { margin-top:34px; }
.main-nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:10px 0;
    position:relative;
}

.main-nav ul{
    list-style:none;
    display:flex;
    gap:28px;
    margin:0;
    padding:0;
}

.main-nav a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    position:relative;
    padding:6px 2px;
    transition:.25s;
}

/* Onderstreep met neon glow animatie */
.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff0077;
    box-shadow:0 0 8px rgba(255,0,100,.9);
    transition:.25s;
}

.main-nav a:hover::after{
    width:100%;
}

.main-nav a:hover{
    color:#ff80c0;
}

/* ACTIVE pagina highlight */
.main-nav a.active,
.main-nav a.active:hover{
    color:#ff0077;
    text-shadow:0 0 10px rgba(255,0,100,1);
}
.main-nav a.active::after{
    width:100%;
}

/* ✅ Mobiel menu */
.nav-toggle{
    display:none;
    font-size:24px;
    color:white;
    cursor:pointer;
    margin-left:15px;
}

@media(max-width:768px){
    .main-nav ul{
        position:absolute;
        top:45px;
        right:0;
        background:rgba(0,0,0,0.8);
        backdrop-filter: blur(6px);
        display:none;
        flex-direction:column;
        padding:20px;
        border-radius:12px;
        box-shadow:0 0 12px rgba(0,0,0,.5);
        width:200px;
        text-align:right;
    }
    .main-nav ul.show{
        display:flex;
    }
    .nav-toggle{
        display:block;
    }
}
.day-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:25px;
}

.day-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    padding:15px 20px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.25s;
}
.day-card:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,255,255,.1);
}

.day-dj{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.2);
}

.day-time{
    font-size:14px;
    color:#ff77b8;
    min-width:90px;
    font-weight:600;
}

.day-title{
    font-size:13px;
    opacity:.8;
}

/* ✅ Highlight voor NU LIVE */
.now-highlight{
    border:1px solid rgba(255,0,80,1);
    box-shadow:0 0 25px rgba(255,0,80,.7);
    animation: pulseDay 2s infinite alternate;
}
@keyframes pulseDay{
    0%{ background:rgba(255,0,100,.10); }
    100%{ background:rgba(255,0,100,.25); }
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:18px;
    margin-top:15px;
}

.program-card{
    background:rgba(255,255,255,0.05);
    border-radius:14px;
    padding:15px 20px;
    border:1px solid rgba(255,255,255,0.07);
    transition:.25s;
}
.program-card:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(255,255,255,0.12);
}

.program-card .time{
    color:#ff80c0;
    font-weight:600;
    margin-bottom:8px;
}

.dj-block{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.dj-block img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.2);
}

Program-card .desc{
    font-size:13px;
    opacity:.75;
}
.program-day {
    margin: 25px 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.program-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 18px;
}

.program-compact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    transition: .2s;
}

.program-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.p-time {
    font-size: 14px;
    opacity: .7;
    margin-bottom: 8px;
}

.p-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-dj {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.no-show {
    opacity: .5;
    font-style: italic;
}
/* ⚡ Glow effect voor nu live */
.now-live {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 12px rgba(255,204,0,0.6);
    animation: glowpulse 1.6s infinite alternate;
    background: rgba(255,204,0,0.08);
}

@keyframes glowpulse {
    0% { box-shadow: 0 0 10px rgba(255,204,0,0.5); }
    100% { box-shadow: 0 0 24px rgba(255,204,0,1); }
}
.live-tag {
    background:#ff1f1f;
    color:white;
    padding:2px 8px;
    font-size:11px;
    border-radius:6px;
    font-weight:700;
    margin-left:6px;
    display:inline-block;
}

.next-tag {
    display:block;
    margin-top:6px;
    font-size:12px;
    color:#ffd200;
    font-weight:600;
}

.program-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 18px;
}

.program-compact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    transition: .2s;
}

.program-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.now-live {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 20px rgba(255,204,0,0.7);
    animation: glowpulse 1.6s infinite alternate;
    background: rgba(255,204,0,0.08);
}

@keyframes glowpulse {
    0% { box-shadow: 0 0 10px rgba(255,204,0,0.5); }
    100% { box-shadow: 0 0 25px rgba(255,204,0,1); }
}

.p-dj {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border:2px solid rgba(255,255,255,0.15);
}
/* Per-dag kleuraccent */
.day-maandag    { background: rgba(77,171,255,0.08); }
.day-dinsdag    { background: rgba(255,77,77,0.08); }
.day-woensdag   { background: rgba(255,219,77,0.08); }
.day-donderdag  { background: rgba(255,154,61,0.08); }
.day-vrijdag    { background: rgba(99,255,99,0.08); }
.day-zaterdag   { background: rgba(192,77,255,0.08); }
.day-zondag     { background: rgba(255,102,200,0.08); }
.now-live {
    border-left: 4px solid #ffcc00 !important;
    background: rgba(255,204,0,0.08);
    animation: goldpulse 1.4s infinite alternate;
}

@keyframes goldpulse {
    0%   { box-shadow:0 0 8px rgba(255,204,0,0.4); }
    100% { box-shadow:0 0 20px rgba(255,204,0,1); }
}

