* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #12345a, #050914 70%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

a {
  color: inherit;
}

.home-wrapper {
  width: 100%;
  max-width: 880px;
}

.home-header {
  text-align: center;
  margin-bottom: 32px;
}

.home-header h1 {
  margin: 0;
  font-size: 42px;
}

.home-subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.station-card {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  min-height: 150px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, background 0.18s ease;
}

.station-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.station-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.station-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.station-card span {
  color: #42f5e9;
  font-weight: 700;
}

.station-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.station-dot.turquoise {
  background: #42f5e9;
  box-shadow: 0 0 0 8px rgba(66, 245, 233, 0.14);
}

.station-dot.orange {
  background: #f49d00;
  box-shadow: 0 0 0 8px rgba(244, 157, 0, 0.14);
}

.player-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
}

.back-link:hover {
  color: #42f5e9;
}

.label {
  margin: 0 0 6px;
  color: #42f5e9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  font-size: 30px;
}

.live-dot {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: #ff3355;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 51, 85, 0.18);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cover-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.cover-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-info {
  text-align: center;
}

.artist {
  margin: 0;
  color: #42f5e9;
  font-size: 18px;
  font-weight: 700;
}

.track-info h2 {
  margin: 8px 0 22px;
  font-size: 26px;
  line-height: 1.2;
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.meta-grid div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
}

.meta-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 4px;
}

.meta-grid strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.audio-section audio {
  width: 100%;
}

.status {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

@media (max-width: 760px) {
  .station-grid {
    grid-template-columns: 1fr;
  }

  .home-header h1 {
    font-size: 34px;
  }

  .station-card {
    grid-template-columns: auto 1fr;
  }

  .station-card span {
    grid-column: 2;
  }
}
