/* =========================================================
   RADIO VERZOEKSYSTEEM – NEON.CSS (ULTIMATE CLEAN PRO)
   Auteur: RSCHOSTING.NL
   ========================================================= */

:root{
  --bg-dark:#020617;
  --bg-card:rgba(2,6,23,.82);
  --text-main:#e0f2fe;
  --neon:#38bdf8;
  --neon-2:#8b5cf6;
  --neon-3:#ec4899;
  --neon-soft:rgba(56,189,248,.45);
  --neon-glow:rgba(56,189,248,.65);
  --danger:#ef4444;
  --success:#22c55e;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:22px;
  --radius-xl:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100vh;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.13), transparent 30%),
    linear-gradient(135deg,#020617,#06111f,#020617);
  background-attachment:fixed;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:repeating-linear-gradient(90deg,rgba(255,255,255,.025),rgba(255,255,255,.025) 1px,transparent 1px,transparent 80px);
  animation:bgMove 10s linear infinite;
}

@keyframes bgMove{from{transform:translateX(0)}to{transform:translateX(80px)}}

img{max-width:100%;display:block}
a{color:var(--neon);text-decoration:none}
hr{border:0;border-top:1px solid rgba(56,189,248,.25);margin:16px 0}

input,textarea,select,button{font-family:inherit;outline:none}
input,textarea,select{
  width:100%;
  background:#020617;
  color:#fff;
  border-radius:var(--radius-sm);
  border:1px solid var(--neon-soft);
  padding:12px 14px;
}
textarea{resize:vertical}
button{cursor:pointer;border:none}

.container{
  width:min(1400px,95%);
  margin:0 auto;
  padding:24px 0;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:22px;
}

.card,.widget,.neon-card,.widget-card,.admin-iframe-card{
  background:var(--bg-card);
  border:1px solid rgba(56,189,248,.22);
  border-radius:var(--radius-lg);
  box-shadow:0 0 32px rgba(56,189,248,.22), inset 0 0 20px rgba(255,255,255,.025);
  backdrop-filter:blur(14px);
}

.card{padding:20px}

.btn,.neon-btn,.copy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:0;
  border-radius:14px;
  padding:10px 16px;
  cursor:pointer;
  font-weight:700;
  background:rgba(255,255,255,.08);
  color:#fff;
  transition:.22s;
  box-shadow:0 0 14px rgba(56,189,248,.18);
}

.btn:hover,.neon-btn:hover,.copy-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 24px rgba(56,189,248,.55);
}

.btn.play{background:linear-gradient(135deg,#22c55e,#16a34a);color:#fff}
.btn.reject,.btn.danger,.btn-danger{background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff}
.btn.ghost{background:transparent;border:1px solid rgba(56,189,248,.45);color:#38bdf8}

.neon-btn{
  width:100%;
  padding:18px;
  font-size:18px;
  border-radius:20px;
  background:var(--neon);
  color:#020617;
  box-shadow:0 0 30px var(--neon-glow);
}

.neon-request-page,.neon-login{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.neon-request-card{
  width:100%;
  max-width:500px;
  padding:32px;
  text-align:center;
}

.dj-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:20px;
}

.dj-photo,.dj-placeholder{
  width:110px;
  height:110px;
  border-radius:50%;
  flex-shrink:0;
}

.dj-photo{
  object-fit:cover;
  border:3px solid var(--neon);
  box-shadow:0 0 18px rgba(56,189,248,.75),0 0 48px rgba(56,189,248,.35);
  animation:photoPulse 3s infinite ease-in-out;
}

.dj-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  background:#020617;
  border:1px solid var(--neon-soft);
}

.dj-photo-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.neon-title{margin:10px 0 4px;font-size:28px}
.neon-sub{font-size:14px;opacity:.85}

.neon-error{
  margin-top:20px;
  padding:14px;
  border-radius:var(--radius-md);
  border:1px solid var(--neon-soft);
  box-shadow:0 0 20px var(--neon-glow);
}

.neon-form{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:24px;
}

.neon-form input,.neon-form textarea,.neon-form select{
  width:100%;
  padding:18px 20px;
  font-size:18px;
  min-height:60px;
  border-radius:18px;
  background:#020617;
  color:#e0f2fe;
  border:2px solid var(--neon);
  box-shadow:0 0 24px rgba(56,189,248,.45);
}

.neon-form textarea{min-height:150px}
.neon-form input:focus,.neon-form textarea:focus,.neon-form select:focus{box-shadow:0 0 32px var(--neon-glow)}

.neon-card{
  width:100%;
  max-width:430px;
  padding:32px;
  text-align:center;
}

.neon-logo{max-width:120px;margin:0 auto 16px}

.main-header,.dj-header{
  width:min(1400px,95%);
  margin:24px auto 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 26px;
  background:rgba(2,6,23,.78);
  backdrop-filter:blur(18px);
  border:1px solid rgba(56,189,248,.25);
  border-radius:var(--radius-xl);
  box-shadow:0 0 42px rgba(56,189,248,.28), inset 0 0 20px rgba(255,255,255,.03);
}

.header-left,.header-right,.dj-info,.dj-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.logo{max-width:80px}
.dj-meta h1,.main-header h1{margin:0;font-size:24px;font-weight:800}
.dj-status{font-size:13px;opacity:.72}

.live-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left:6px;
  padding:6px 12px;
  font-size:13px;
  font-weight:800;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  box-shadow:0 0 16px rgba(239,68,68,.75);
}

.live-badge.mic{animation:livePulse 1.15s infinite}

.admin-widgets{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.widget{padding:20px}

.widget-card{padding:24px;margin-bottom:32px}
.widget-card h3{margin:0 0 16px;color:#38bdf8;font-size:20px}
.widget-row{display:flex;gap:24px}
.widget-preview{flex:1;background:#000;border-radius:18px;padding:12px;box-shadow:inset 0 0 20px rgba(56,189,248,.12)}
.widget-preview iframe{width:100%;border:0;border-radius:14px}
.widget-embed{flex:1}
.widget-embed textarea{
  width:100%;
  min-height:200px;
  background:#020617;
  color:#38bdf8;
  border:1px solid var(--neon-soft);
  border-radius:14px;
  padding:12px;
  resize:none;
  font-family:monospace;
  font-size:13px;
}
.widget-actions{display:flex;justify-content:flex-end;margin-top:10px}

.request-card{
  position:relative;
  background:rgba(2,6,23,.74);
  backdrop-filter:blur(14px);
  border-radius:24px;
  padding:22px;
  border:1px solid rgba(56,189,248,.2);
  box-shadow:0 0 30px rgba(56,189,248,.18);
  transition:.25s;
  margin-bottom:18px;
}

.request-card:hover{
  transform:translateY(-4px);
  box-shadow:0 0 42px rgba(56,189,248,.38);
}

.request-card::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#38bdf8,#8b5cf6,#ec4899);
  border-radius:24px 24px 0 0;
}

.request-card b{font-size:16px}
.request-card small{opacity:.72}
.request-card .btn{margin-right:6px;margin-top:10px}
.req-ip{color:#38bdf8;font-size:12px;opacity:.8}

.request-new{
  animation:newRequestGlow .65s ease-out;
  border:2px solid #38bdf8;
}

.schedule-dj{display:flex;align-items:center;gap:12px}
.schedule-dj .dj-photo{
  width:42px;
  height:42px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 14px rgba(56,189,248,.6);
  animation:none;
}
.schedule-dj .dj-placeholder{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;
  border:1px solid rgba(56,189,248,.4);
  font-size:18px;
}
.schedule-dj .dj-name{font-size:14px;font-weight:600}

.vu-meter{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:5px;
  height:34px;
}

.vu-meter span{
  width:6px;
  height:8px;
  background:#38bdf8;
  border-radius:4px;
  box-shadow:0 0 10px rgba(56,189,248,.8);
  animation:vuPulse 1.2s infinite ease-in-out;
  transform-origin:bottom;
}

.vu-meter span:nth-child(1){animation-delay:.0s}
.vu-meter span:nth-child(2){animation-delay:.15s}
.vu-meter span:nth-child(3){animation-delay:.3s}
.vu-meter span:nth-child(4){animation-delay:.45s}
.vu-meter span:nth-child(5){animation-delay:.3s}
.vu-meter span:nth-child(6){animation-delay:.15s}
.vu-meter span:nth-child(7){animation-delay:.0s}

.neon-success{
  margin-top:20px;
  padding:22px;
  text-align:center;
  border-radius:22px;
  background:#020617;
  box-shadow:0 0 40px rgba(56,189,248,.55);
  animation:fadeIn .45s ease;
}

.rs-footer{
  margin-top:40px;
  padding:14px;
  text-align:center;
  font-size:12px;
  opacity:.85;
}

@keyframes pulse{0%{box-shadow:0 0 10px var(--neon)}50%{box-shadow:0 0 26px var(--neon)}100%{box-shadow:0 0 10px var(--neon)}}
@keyframes livePulse{0%,100%{box-shadow:0 0 8px rgba(239,68,68,.65)}50%{box-shadow:0 0 28px rgba(239,68,68,1)}}
@keyframes photoPulse{0%,100%{box-shadow:0 0 18px rgba(56,189,248,.75),0 0 48px rgba(56,189,248,.35)}50%{box-shadow:0 0 35px rgba(56,189,248,1),0 0 90px rgba(56,189,248,.58)}}
@keyframes vuPulse{0%{height:6px;opacity:.6}25%{height:16px;opacity:1}50%{height:28px}75%{height:14px}100%{height:6px;opacity:.6}}
@keyframes newRequestGlow{0%{box-shadow:0 0 0 rgba(56,189,248,0);transform:translateY(10px);opacity:0}50%{box-shadow:0 0 44px rgba(56,189,248,.85)}100%{box-shadow:0 0 30px rgba(56,189,248,.35);transform:translateY(0);opacity:1}}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

@media (max-width:900px){
  .main-header,.dj-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .header-right,.dj-actions{
    width:100%;
  }

  .header-right .btn,
  .dj-actions .btn,
  .header-right .logout{
    width:100%;
  }

  .widget-row{
    flex-direction:column;
  }

  .dj-photo,.dj-placeholder{
    width:86px;
    height:86px;
  }

  .grid{
    grid-template-columns:1fr;
  }
}
