.player-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 50%, rgba(230, 148, 15, .14), transparent 31%),
    linear-gradient(145deg, #171716, #040404 58%);
}

.player-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120%;
  left: -35%;
  width: 24%;
  height: 340%;
  background: linear-gradient(90deg, transparent, rgba(255, 188, 61, .13), transparent);
  transform: rotate(18deg);
  animation: player-shell-sweep 7s ease-in-out infinite;
}

.player-shell::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 20px;
  box-shadow: inset 0 0 24px rgba(241, 165, 30, .09);
  pointer-events: none;
}

.player-frame {
  border-radius: 52px;
  background: linear-gradient(180deg, #171717, #080808);
  box-shadow: 0 8px 24px #000, inset 0 0 0 1px rgba(255, 190, 67, .08);
}

.live-copy span {
  box-shadow: 0 0 15px rgba(218, 18, 14, .45);
  animation: live-badge 1.8s ease-in-out infinite;
}

@keyframes player-shell-sweep {
  0%, 55% { left: -35%; opacity: 0; }
  65% { opacity: 1; }
  90%, 100% { left: 120%; opacity: 0; }
}

@keyframes live-badge {
  50% { box-shadow: 0 0 24px rgba(255, 35, 25, .78); }
}

@media (max-width: 620px) {
  .player-shell {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    min-height: 170px;
    padding: 12px;
  }

  .player-copy {
    min-width: 0;
  }

  .player-copy strong {
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .player-copy small {
    font-size: 11px;
  }

  .on-air {
    padding: 5px 9px;
    font-size: 13px;
  }

  .live-copy {
    gap: 5px;
  }

  .live-copy span {
    padding: 5px 8px;
    font-size: 14px;
  }

  .live-copy small {
    font-size: 9px;
  }

  .player-frame {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .player-shell::before,
  .live-copy span {
    animation: none;
  }
}
