@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0d0d0d;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

.freq {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 18vw, 10rem);
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
}

.station-name {
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #5b7fa6;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid #1a56db;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: border-color 0.2s;
}

.play-btn:hover {
  border-color: #c9a227;
}

.play-btn svg { width: 22px; height: 22px; fill: #1a56db; }

.status {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.3s;
}

.status.live { color: #e03e3e; }

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e03e3e;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.dot.visible { opacity: 1; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.dj {
  margin-top: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a227;
}
