: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: relative;        /* of fixed; zie verderop */
  z-index: 9999;
        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); }
}
.day-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding:18px;
    border-radius:14px;
    position:relative;
    transition:.2s;
}
.day-card:hover {
    transform: translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}

/* LIVE Highlight */
.now-highlight {
    border:2px solid #ffcc00;
    box-shadow:0 0 15px rgba(255,204,0,0.6);
    animation: glow 1.6s infinite alternate;
    background: rgba(255,204,0,0.06);
}
@keyframes glow {
    0% { box-shadow:0 0 8px rgba(255,204,0,0.4); }
    100% { box-shadow:0 0 22px rgba(255,204,0,1); }
}

/* Labels bovenaan */
.day-labels {
    position:absolute;
    top:-12px;
    left:12px;
    display:flex;
    gap:8px;
}

.label-live{
    background:#ff1f1f;
    color:white;
    padding:3px 8px;
    font-size:11px;
    border-radius:4px;
    font-weight:700;
}

.label-next{
    background:#ffcc00;
    color:black;
    padding:3px 8px;
    font-size:11px;
    border-radius:4px;
    font-weight:700;
    text-align:center;
}
.label-next .countdown{
    font-size:11px;
    font-weight:600;
    margin-top:2px;
}

/* DJ foto en info */
.day-info{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:8px;
}
.day-dj{
    width:54px;
    height:54px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.15);
}
/* Geel bij < 10 minuten */
.countdown-warning {
    color: #ffeb3b;
}

/* Knipperend rood bij < 60 sec */
.countdown-low {
    color:#ff1f1f;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0% { opacity:1; }
    50% { opacity:.25; }
    100% { opacity:1; }
}

/* BIJNA LIVE! pulse animatie */
.countdown-bijna {
    color:#ffcc00;
    font-weight:900;
    animation: pulse 0.6s infinite;
}

@keyframes pulse {
    0% { transform:scale(1); opacity:1; }
    50% { transform:scale(1.15); opacity:.6; }
    100% { transform:scale(1); opacity:1; }
}
.player-overlay{
    position:fixed;
    left:0; top:0; width:100%; height:100%;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.player-box{
    background:#141414;
    border-radius:20px;
    padding:25px;
    width:90%;
    max-width:450px;
    color:white;
    text-align:center;
    animation:pop .3s ease;
}
@keyframes pop{
    0%{ transform:scale(.7); opacity:0; }
    100%{ transform:scale(1); opacity:1; }
}

.player-header{
    display:flex;
    justify-content:space-between;
    font-size:20px;
    margin-bottom:15px;
}
#player-close{
    cursor:pointer;
    opacity:.7;
    transition:.2s;
}
#player-close:hover{ opacity:1; }

.player-content img{
    width:180px;
    border-radius:14px;
    margin-bottom:15px;
}

.player-btn{
    margin-top:12px;
    padding:12px 30px;
    border:none;
    border-radius:30px;
    background:#ff1f62;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:.2s;
}

.player-btn:hover{
    transform:scale(1.05);
}

/* ===== GLASS + NEON CORE ===== */
:root{
  --glass-bg: rgba(255,255,255,0.08);
  --glass-stroke: rgba(255,255,255,0.16);
  --glass-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Glass card basis */
.glass-card{
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border:1px solid var(--glass-stroke);
  border-radius:20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

/* Neon rand (subtiele gradient-ring) */
.neon::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,0) 30%, var(--accent) 70%, rgba(255,255,255,.15));
  -webkit-mask: 
     linear-gradient(#000 0 0) content-box, 
     linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
}

/* Glow pulse utility */
.glow-pulse{
  animation: glowPulse 1.8s ease-in-out infinite alternate;
}
@keyframes glowPulse{
  0% { box-shadow: 0 0 10px rgba(255,204,0,.35); }
  100%{ box-shadow: 0 0 28px rgba(255,204,0,1); }
}

/* Header strip voor kaarten */
.card-strip{
  position:absolute; top:0; left:0; right:0; height:6px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.3), var(--accent));
  opacity:.8;
}

/* Labels (LIVE / STRAKS) als glass pill */
.day-labels{
  position:absolute; top:10px; left:12px; display:flex; gap:8px; z-index:2;
}
.label-live, .label-next{
  padding:4px 9px; border-radius:999px; font-size:12px; font-weight:800;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.label-live{ background:#ff2b5a; color:#fff; }
.label-next{ background:#ffd54a; color:#1a1a1a; }
.label-next .countdown{ display:block; font-size:11px; margin-top:2px; opacity:.9; }

/* Compacte dagkaarten met glass/neon */
.day-card{
  padding:16px 16px 14px 16px;
  border-radius:18px;
  transition:.25s ease;
}
.day-card:hover{ transform: translateY(-3px); }

/* Tijd + info */
.day-time{ font-size:14px; opacity:.85; margin-top:14px; }
.day-info{ display:flex; align-items:center; gap:12px; margin-top:10px; }
.day-dj{
  width:56px; height:56px; object-fit:cover; border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
}

/* Live highlight goud + pulse */
.now-highlight{
  border: 2px solid #ffcc00;
  background: linear-gradient(180deg, rgba(255,204,0,0.12), rgba(255,204,0,0.04));
  box-shadow: 0 0 22px rgba(255,204,0,.55);
  animation: glowPulse 1.6s ease-in-out infinite alternate;
}

/* Countdown kleuren */
.countdown-warning{ color:#ffeb3b; }
.countdown-low{ color:#ff3b3b; animation: blink .8s infinite; }
.countdown-bijna{ color:#ffcc00; font-weight:900; animation:pulse .6s infinite; }
@keyframes blink{ 0%{opacity:1} 50%{opacity:.25} 100%{opacity:1} }
@keyframes pulse{ 0%{transform:scale(1)} 50%{transform:scale(1.12)} 100%{transform:scale(1)} }

/* ===== PLAYER POPUP — Glass Neon ===== */
.player-wrap.glass-card{
  padding:24px 22px;
}
.player-topstrip{
  height:6px; border-radius:18px 18px 0 0; margin:-24px -22px 16px -22px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.3), var(--accent));
  opacity:.9;
}
.cover{
  width:210px; height:210px; border-radius:18px; object-fit:cover; margin:10px auto 16px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 28px rgba(0,0,0,.45), 0 0 28px var(--accent);
}
.btn-play{
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.btn-play:hover{ transform: translateY(-1px) scale(1.03); }

/* Visualizer in accentkleur */
.visualizer .bar{
  background: var(--accent);
}

/* Volume blok glas */
.volume-block{
  margin-top:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:10px 12px;
}

/* Range slider styling (breed ondersteund) */
.volume-slider{
  appearance:none; width:85%; height:6px; border-radius:999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.2));
  outline:none;
}
.volume-slider::-webkit-slider-thumb{
  appearance:none; width:18px; height:18px; border-radius:50%;
  background:#fff; border:2px solid var(--accent);
  box-shadow: 0 0 10px var(--accent);
  cursor:pointer;
}
.volume-slider::-moz-range-thumb{
  width:18px; height:18px; border-radius:50%;
  background:#fff; border:2px solid var(--accent);
  box-shadow: 0 0 10px var(--accent);
  cursor:pointer;
}
.dj-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:30px;
    padding:20px 0;
}

.dj-card{
    padding:25px;
    border-radius:18px;
    text-align:center;
    cursor:pointer;
    transition:.2s;
}
.dj-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(var(--accent-rgb),0.6);
}

.dj-photo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
    border:3px solid rgba(255,255,255,.2);
}

.dj-btn{
    margin-top:10px;
    padding:8px 18px;
    border-radius:20px;
    border:none;
    cursor:pointer;
    background:var(--accent);
    color:#fff;
    font-weight:600;
}

.dj-mini{
    opacity:.7;
    font-size:14px;
    min-height:40px;
}

/* POPUP */
.dj-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.dj-popup-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.2);
    padding:30px;
    border-radius:20px;
    width:90%;
    max-width:500px;
    text-align:center;
    animation:fadeIn .3s ease;
}
.dj-popup-close{
    float:right;
    cursor:pointer;
    font-size:20px;
    opacity:.7;
}
.dj-popup-close:hover{ opacity:1; }

#popup-photo{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}
.dj-card {
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:20px;
    text-align:center;
    transition:.3s;
    position:relative;
}

.dj-card:hover {
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(255,255,255,.15);
}

.dj-live {
    box-shadow:0 0 25px rgba(255,0,60,.75), 0 0 60px rgba(255,0,60,.35);
    animation: livePulse 1s infinite alternate;
    border-color: rgba(255,0,80,.7);
}

@keyframes livePulse {
    from { transform: scale(1); }
    to   { transform: scale(1.04); }
}

.dj-photo-wrap {
    position:relative;
    display:inline-block;
}

.dj-live-badge {
    position:absolute;
    bottom:6px;
    right:6px;
    background:#ff003c;
    padding:4px 8px;
    font-size:12px;
    border-radius:6px;
    font-weight:bold;
    color:white;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0%   { opacity: 0.4; }
    100% { opacity: 1; }
}
/* --- DJ CARD UPGRADE --- */
.dj-card {
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:14px;
    padding:20px;
    text-align:center;
    transition:.3s;
    position:relative;
    cursor:pointer;
}

.dj-card:hover {
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(255,255,255,.15);
}

.dj-live {
    box-shadow:0 0 35px rgba(255,0,60,.8), 0 0 70px rgba(255,0,60,.4);
    border-color:#ff003c;
    animation: djPulse 1.2s infinite alternate;
}

@keyframes djPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.dj-photo-wrap {
    position:relative;
    display:inline-block;
}

.dj-photo {
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid rgba(255,255,255,0.15);
    position:relative;
    z-index:3;
}

/* --- AUDIO WAVES ROND DE DJ FOTO --- */
.audio-waves {
    position:absolute;
    top:50%; left:50%;
    width:160px; height:160px;
    transform:translate(-50%, -50%);
    border-radius:50%;
    pointer-events:none;
    z-index:1;
    opacity:0;
}

.audio-waves.on {
    opacity:1;
    animation: waves 1.6s infinite ease-out;
    border:3px solid rgba(255,0,60,.4);
}

@keyframes waves {
    0% { transform:translate(-50%, -50%) scale(1); opacity:.9; }
    100% { transform:translate(-50%, -50%) scale(1.45); opacity:0; }
}

/* --- LIVE BADGE --- */
.dj-live-badge {
    position:absolute;
    bottom:6px;
    right:6px;
    background:#ff003c;
    padding:4px 8px;
    font-size:12px;
    border-radius:6px;
    font-weight:bold;
    color:white;
    z-index:5;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0%   { opacity: .45; }
    100% { opacity: 1; }
}

/* --- ON AIR LAMPJE --- */
.on-air-light {
    position:absolute;
    top:-4px;
    right:-4px;
    width:14px; height:14px;
    border-radius:50%;
    background:#ff003c;
    box-shadow:0 0 12px #ff003c, 0 0 28px rgba(255,0,60,.8);
    animation: lightblink 0.8s infinite alternate;
    z-index:9;
}

@keyframes lightblink{
    0% { opacity: .5; }
    100% { opacity: 1; }
}
.dj-player {
    margin-top:15px;
    text-align:center;
}

.player-btn {
    background:#ff003c;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    color:white;
    transition:.2s;
}
.player-btn:hover {
    background:#ff335c;
}

#popup-volume {
    width:140px;
    margin-top:10px;
}

/* ✅ DJ POPUP (EINDELIJKE, OVERSCHRIJVende STIJL) */
.dj-popup {
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.82);
    backdrop-filter: blur(10px);
    justify-content:center;
    align-items:center;
    z-index:10000;
}

.dj-popup-box {
    position:relative;
    background:#13131b;
    padding:30px;
    border-radius:20px;
    width:92%;
    max-width:420px;
    text-align:center;
    box-shadow:0 0 25px rgba(0,0,0,0.7);
    border:1px solid rgba(255,255,255,0.12);
    animation:fadeIn .3s ease;
}

.dj-popup-close {
    position:absolute;
    top:14px;
    right:14px;
    font-size:22px;
    cursor:pointer;
    opacity:.7;
}
.dj-popup-close:hover { opacity:1; }

#popup-photo {
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid rgba(255,255,255,0.18);
    margin-bottom:15px;
}

.dj-player {
    margin-top:18px;
}

.player-btn {
    background:var(--accent);
    padding:12px 26px;
    border-radius:50px;
    color:white;
    font-size:18px;
    cursor:pointer;
    border:none;
    margin-bottom:10px;
    box-shadow:0 0 18px rgba(255,0,120,0.6);
}
.player-btn:hover {
    transform:scale(1.05);
}

#popup-volume {
    width:200px;
    margin-top:10px;
}
.dj-popup {
    z-index: 999999 !important;
}
.contact-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
    gap:30px;
    margin-top:30px;
}

.contact-card {
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 0 25px rgba(0,0,0,.25);
}

.contact-card input,
.contact-card textarea {
    width:100%;
    padding:12px;
    border-radius:12px;
    margin-bottom:12px;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,.05);
    color:white;
}

.btn-send {
    background:#ff1f62;
    color:white;
    border:none;
    padding:14px 22px;
    font-size:18px;
    border-radius:12px;
    cursor:pointer;
    transition:.2s;
}
.btn-send:hover {
    transform:scale(1.05);
}
/* --- CONTACT PAGE DARK GLASS STYLE --- */
.contact-section{
    padding:70px 0;
}

.contact-title{
    text-align:center;
    font-size:36px;
    margin-bottom:10px;
    color:#fff;
    text-shadow:0 0 12px rgba(255,0,100,.6);
    animation:fadeInDown .6s;
}

.contact-sub{
    text-align:center;
    opacity:.7;
    margin-bottom:40px;
    color:#fff;
}

.contact-wrapper{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
    justify-content:center;
}

/* ✅ Glass neon cards */
.contact-card, .contact-info{
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border-radius:16px;
    padding:28px;
    width:380px;
    color:#fff;
    box-shadow:0 0 25px rgba(0,0,0,0.5);
    animation:fadeInUp .7s;
}

.contact-card label span{
    color:#ff99d4;
    font-size:14px;
}

.contact-card input,
.contact-card textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
    margin-top:6px;
    font-size:15px;
}
.contact-card textarea{ height:120px; }

/* ✅ Neon send button */
.contact-btn{
    width:100%;
    background:var(--accent, #ff007c);
    border:none;
    padding:15px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    color:white;
    cursor:pointer;
    box-shadow:0 0 16px rgba(255,0,120,.6);
    transition:.25s;
}
.contact-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 25px rgba(255,0,120,1);
}

/* ✅ Contact info card details */
.contact-info h3{
    margin-top:0;
    font-size:22px;
    color:#ffd45a;
    text-shadow:0 0 12px rgba(255,200,0,.6);
}
.contact-info p{
    margin:6px 0;
    opacity:.9;
}
.social-icons img{
    width:30px;
    margin-right:6px;
    opacity:.8;
    transition:.2s;
}
.social-icons img:hover{
    opacity:1;
    filter:drop-shadow(0 0 6px var(--accent));
}

/* ✅ Neon loader */
.loader{
    margin:12px auto;
    border:4px solid rgba(255,255,255,0.1);
    border-top:4px solid var(--accent);
    border-radius:50%;
    width:28px;
    height:28px;
    animation:spin .8s linear infinite;
}
@keyframes spin{
    to{ transform:rotate(360deg); }
}

/* Animations */
@keyframes fadeInDown{
    from{opacity:0; transform:translateY(-20px);}
    to{opacity:1; transform:translateY(0);}
}
@keyframes fadeInUp{
    from{opacity:0; transform:translateY(20px);}
    to{opacity:1; transform:translateY(0);}
}
#confetti-canvas{
    position:fixed;
    top:0; left:0;
    width:100vw;
    height:100vh;
    pointer-events:none;
    z-index:9999;
}
/* Popup overlay */
.success-popup{
    position:fixed;
    top:0; left:0;
    width:100vw; height:100vh;
    background:rgba(0,0,0,0.75);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    pointer-events:none;
    transition:opacity .4s ease;
    z-index:10000;
}

.success-popup.show{
    opacity:1;
    pointer-events:all;
}

/* De box zelf */
.success-box{
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;
    padding:30px 40px;
    color:white;
    text-align:center;
    box-shadow:0 0 30px rgba(255,0,80,.6);
    animation: popIn .4s ease;
}

@keyframes popIn{
    0%{ transform:scale(.7); opacity:0; }
    100%{ transform:scale(1); opacity:1; }
}
.contact-right {
    padding:25px;
    border-radius:18px;
    margin-left:20px;
    color:white;
    animation: fadeIn .5s ease-out;
width: 30%;
}

.contact-right-title {
    font-size:22px;
    margin-bottom:12px;
    color:#ffd8ff;
    text-shadow:0 0 10px rgba(255,0,120,.6);
}

.contact-info-row {
    margin-bottom:18px;
    line-height:1.5em;
    background:rgba(255,255,255,0.05);
    padding:10px 14px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-info-row .icon {
    font-size:22px;
    margin-right:6px;
}

/* Social buttons */
.social-buttons {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
}

.social-btn {
    padding:10px 14px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    color:white;
    display:block;
    transition:.25s;
    text-align:center;
}

.fb { background:#4267B2; }
.ig { background:#C13584; }
.tk { background:#000;    color:#fff; }
.yt { background:#FF0000; }

.social-btn:hover {
    transform:scale(1.05);
    box-shadow:0 0 18px rgba(255,255,255,.4);
}

/* Glass effect from your theme */
.glass-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.neon::before {
    content:"";
    position:absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,0,100,1));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    pointer-events:none;
}
.contact-right {
    color: #fff;
}
.contact-right a {
    color: #fff !important;
    text-decoration: none;
}

.contact-right a:hover {
    text-decoration: underline;
}

/* Social buttons wit laten */
.social-btn {
    padding:10px 14px;
    border-radius:10px;
    font-weight:600;
    display:block;
    transition:.25s;
    text-align:center;
    color:#fff !important; /* ✅ wit */
}
.contact-popup{
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.contact-popup-box{
    background:#111;
    padding:30px;
    border-radius:12px;
    color:#fff;
    text-align:center;
    font-size:18px;
    animation: fadeIn .3s ease;
}

.contact-popup-box button{
    margin-top:15px;
    background:#ff005a;
    border:none;
    padding:10px 18px;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

@keyframes fadeIn{
    from {opacity:0;transform:scale(.92)}
    to   {opacity:1;transform:scale(1)}
}
/* ===== Nieuws: grid & cards (matcht programmering look) ===== */
.news-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:22px;
}

/* shared glass/neon bestaat al; we tunen nieuws elementen */
.news-card{
  padding:0;
  overflow:hidden;
  background: var(--card, #151526);
  color: var(--foreground, #ffffff);
  border: 1px solid color-mix(in oklab, var(--accent, #ff4d4d) 22%, transparent);
}
.news-card .news-thumb-wrap { display:block; aspect-ratio: 16/9; background:#000; }
.news-card .news-thumb{ width:100%; height:100%; object-fit:cover; display:block; }

.news-card .news-body{ padding:16px; }
.news-title { margin:0 0 8px; font-size:1.1rem; }
.news-title a{ color:inherit; text-decoration:none; }
.news-title a:hover{ color: var(--accent, #ff4d4d); }

.news-excerpt{ margin:0 0 12px; color: var(--text-muted, #a7a7b3); }
.news-meta{ display:flex; gap:10px; font-size:.9rem; opacity:.8; margin-bottom:12px; }
.news-read{ display:inline-block; margin-top:6px; color: var(--accent, #ff4d4d); text-decoration:none; }
.news-read:hover{ text-decoration:underline; }

/* detailpagina */
.news-article{ padding:18px; }
.news-hero h1{ margin:0 0 4px; }
.news-cover-wrap{ margin:14px 0; border-radius:12px; overflow:hidden; }
.news-cover{ width:100%; height:auto; display:block; }
.news-content{ line-height:1.7; }
.news-content img{ max-width:100%; height:auto; border-radius:10px; }
.news-content h2, .news-content h3{ margin-top:1.2em; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.news-thumb-wrap {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 2px solid rgba(0,255,255,0.1);
}

.news-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.news-card:hover .news-thumb {
  transform: scale(1.05);
}

/* --- MINI PLAYER BAR --- */
.hero-mini {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 10px 0;
}

.player-mini-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 920px;
  margin: auto;
  color: white;
}

/* cover linkser */
.mini-cover {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink:0;
}

/* titel / artiest */
.mini-info {
  flex: 1;
  overflow: hidden;
}
#mini-title {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#mini-artist {
  font-size: 13px;
  opacity: .8;
}

/* speler-knoppen + volume */
.mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-play {
  background: #ffd93d;
  border: none;
  padding: 6px 10px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}
.mini-play:hover {
  filter: brightness(1.2);
}
.mini-volume {
  width: 90px;
  accent-color: #ffd93d;
}

/* rechts: DJ */
.mini-dj {
  white-space: nowrap;
  font-size: 14px;
}
.mini-dj strong {
  color: #ffd93d;
}
.player-section { padding:40px 0; }
.player-card {
  display:flex;
  align-items:center;
  background: rgba(0,0,0,0.6);
  padding:20px;
  border-radius:12px;
  gap:20px;
  box-shadow:0 0 18px rgba(255,255,255,0.06);
}

.player-left { text-align:center; }
.live-indicator {
  font-size:14px;
  margin-bottom:6px;
  opacity:0.8;
}
.live-indicator.live { color:#00ff87; }

.player-cover {
  width:95px;
  height:95px;
  border-radius:6px;
  object-fit:cover;
  box-shadow:0 0 12px rgba(0,0,0,0.4);
}
.player-cover.spin {
  animation:spin 6s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

.player-center { flex:1; }

.player-title { font-size:20px; font-weight:600; }
.player-meta  { font-size:14px; opacity:0.7; }

.dj-info {
  display:flex;
  align-items:center;
  margin-top:12px;
  gap:10px;
  background:rgba(255,255,255,0.05);
  border-radius:8px;
  padding:6px 12px;
}
.upcoming {
  background:rgba(255,210,0,0.08);
}

.dj-photo-small {
  width:38px; height:38px;
  border-radius:50%;
  object-fit:cover;
}

.visualizer {
  display:flex; gap:3px; height:40px; margin-top:14px;
}
.visualizer .bar {
  width:3px;
  background:#00ffa6;
  opacity:0.5;
  height:6px;
  transition:height .08s linear;
}

.player-right { text-align:center; display:flex; flex-direction:column; gap:10px; }

.player-btn {
  padding:10px 18px;
  background:#00ffa6;
  border:none;
  font-size:18px;
  border-radius:6px;
  cursor:pointer;
}

.volume-slider { width:100px; }

.mini-dj-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:5px;
}

.mini-dj-photo{
  width:35px;
  height:35px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
}
.mini-wave {
  display: flex;
  gap: 3px;
  height: 20px;
  align-items: flex-end;
  opacity: .2; /* dimmed when paused/offline */
  transition: opacity .3s;
  margin-top: 5px;
}

.mini-wave div {
  width: 3px;
  height: 5px;
  background: #00ffea;
  border-radius: 2px;
  animation: waveBounce .4s infinite ease-in-out;
}

@keyframes waveBounce {
  0%   { transform: scaleY(0.2); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.3); }
}

.mini-wave div:nth-child(odd)  { animation-delay: .1s; }
.mini-wave div:nth-child(3n)   { animation-delay: .2s; }
.mini-wave div:nth-child(4n)   { animation-delay: .3s; }

.netflix-row {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 15px 0;
    scroll-snap-type: x mandatory;
}

.netflix-card {
    min-width: 220px;
    background: rgba(0,0,0,0.25);
    border-radius: 14px;
    padding: 0;
    scroll-snap-align: start;
    transition: transform .25s;
}

.netflix-card:hover {
    transform: scale(1.06);
}

.netflix-img {
    width: 100%;
    height: 160px;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.netflix-info {
    padding: 10px 12px;
    color: #fff;
}

.live-card .netflix-info .live-tag {
    background: red;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 6px;
}

.next-tag {
    background: #00d4ff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 6px;
}

.hover-zoom:hover img {
    transform: scale(1.1);
    transition: .3s;
}

