.dj-card{
  width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;              /* 👈 BELANGRIJK */
  position: relative;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.dj-media{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.dj-art{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.00);
  filter: saturate(1.05) contrast(1.05);
}

.dj-vinyl{
  position:absolute;
  width: 70%;
  height: 70%;
  border-radius:999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.25) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.75) 0 38%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.55) 100%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.08) 0 2px, transparent 2px 7px);
  opacity: .55;
  mix-blend-mode: overlay;
  animation: dj-spin 3.6s linear infinite;
}

@keyframes dj-spin{
  to { transform: rotate(360deg); }
}

.dj-eq{
  position:absolute;
  left: 14px;
  bottom: 74px;
  display:flex;
  gap:6px;
  align-items:flex-end;
  padding:8px 10px;
  border-radius:14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
}

.dj-eq span{
  width:7px;
  height:14px;
  border-radius:6px;
  background: rgba(255,255,255,.75);
  animation: dj-eq 900ms ease-in-out infinite;
  transform-origin: bottom;
}

.dj-eq span:nth-child(2){ animation-delay:120ms; }
.dj-eq span:nth-child(3){ animation-delay:240ms; }
.dj-eq span:nth-child(4){ animation-delay:360ms; }
.dj-eq span:nth-child(5){ animation-delay:480ms; }

@keyframes dj-eq{
  0%,100%{ transform: scaleY(.45); opacity:.6; }
  50%{ transform: scaleY(1.25); opacity:1; }
}

.dj-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:16px;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.30) 55%, rgba(0,0,0,0));
}

.dj-topline{
  font-size:22px;
  font-weight:900;
  color:#fff;
}

.dj-subline{
  margin-top:2px;
  font-size:18px;
  font-weight:800;
  color:#fb923c;
}

.dj-now{
  margin-top:8px;
  font-size:13px;
  color: rgba(255,255,255,.78);

  white-space: nowrap;
  overflow-x: auto;        /* horizontale scrollbar */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}



.dj-card.is-live .dj-subline{
  color:#34d399;
}
.dj-card.is-live .dj-vinyl{
  animation-duration:2.4s;
  opacity:.7;
}

@media (max-width:420px){
  .dj-card{ width:100%; max-width:340px; }
}
