:root {
  --blue: #18223f;
  --yellow: #f5b01c;
  --ink: #0e1428;
  --mist: #e6ebf5;
}

.player {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #1c2950 0%, #131a34 45%, #0b1020 100%);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  font-family: "Epilogue", system-ui, -apple-system, sans-serif;
  box-shadow:
    0 35px 60px rgba(4, 7, 17, 0.6),
    inset 0 0 0 1px rgba(245, 176, 28, 0.12);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 18px;
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 176, 28, 0.25) 0%, rgba(245, 176, 28, 0) 70%);
  filter: blur(4px);
  pointer-events: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 12px;
  color:#fff;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(245, 176, 28, 0.25));
  padding:10px;
  background:#fff;
  border-radius:10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 176, 28, 0.7);
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  background: rgba(245, 176, 28, 0.15);
  color: var(--yellow);
  border-radius: 999px;
  border: 1px solid rgba(245, 176, 28, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.visual {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.ring {
  position: absolute;
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed rgba(245, 176, 28, 0.35);
  animation: spin 18s linear infinite;
}

.ring-2 {
  width: 46%;
  border-style: solid;
  opacity: 0.4;
  animation-duration: 14s;
  animation-direction: reverse;
}

.ring-3 {
  width: 32%;
  border-style: dotted;
  opacity: 0.7;
  animation-duration: 9s;
}

.core {
  width: 36%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(145deg, #22315e 0%, #121a34 100%);
  box-shadow:
    inset 0 0 0 1px rgba(245, 176, 28, 0.22),
    0 20px 35px rgba(8, 13, 30, 0.7);
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 14px 10px;
}

.freq {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 700;
  color: var(--mist);
}

.label {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 176, 28, 0.9);
}

.play-btn {
  margin-top: 6px;
  width: 46%;
  max-width: 70px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 22px rgba(245, 176, 28, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.play-btn[data-state="paused"]::before {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--blue);
  transform: translateX(2px);
}

.play-btn[data-state="playing"]::before,
.play-btn[data-state="playing"]::after {
  width: 6px;
  height: 18px;
  background: var(--blue);
  border-radius: 2px;
}

.play-btn[data-state="playing"]::before {
  transform: translateX(-6px);
}

.play-btn[data-state="playing"]::after {
  transform: translateX(6px);
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(245, 176, 28, 0.45);
}

.play-btn:active {
  transform: translateY(0);
}
.meta{
  color:#fff;
}
.meta h1 {
  margin: 0;
  font-size: clamp(20px, 3.5vw, 28px);
}

.meta p {
  margin: 6px 0 0;

  font-size: 16px;
}

.audio {
  display: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(230, 235, 245, 0.65);
}

.signal {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.signal .bar {
  width: 4px;
  height: 12px;
  background: rgba(245, 176, 28, 0.7);
  border-radius: 2px;
  animation: bounce 1.2s ease-in-out infinite;
}

.signal .bar:nth-child(2) {
  height: 18px;
  animation-delay: 0.15s;
}

.signal .bar:nth-child(3) {
  height: 9px;
  animation-delay: 0.3s;
}

.signal .bar:nth-child(4) {
  height: 15px;
  animation-delay: 0.45s;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

@media (max-width: 520px) {
  .player {
    padding: 22px;
    border-radius: 22px;
  }
}
