.player-loading {
  gap: 0 !important;
  background: rgba(3, 3, 10, .72) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.stream-spinner {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  border-top-color: var(--accent-bright, #a78bfa);
  border-right-color: var(--cyan, #22d3ee);
  filter: drop-shadow(0 0 10px var(--accent-glow, rgba(139,92,246,.35)));
  animation: stream-spin .72s linear infinite;
}

.stream-spinner::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px var(--accent-bright, #a78bfa);
  transform: translate(-50%, -50%);
}

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

@media (max-width: 600px) {
  .stream-spinner { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .stream-spinner { animation-duration: 1.4s; }
}
