.station-selector {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 360px);
  margin: 24px 0 20px;
  padding: 4px;
  border: 1px solid #65503a;
  border-radius: 6px;
  background: #171b19;
  box-sizing: border-box;
}
.station-selector a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 3px;
  color: #e9e8e3;
  background: transparent;
  font: 600 16px/1.25 Arial, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
}
.station-selector a:hover { background: #303931; color: #fff; }
.station-selector a[aria-current="page"] { background: #edb566; color: #20170d; }
.station-selector a:focus-visible { outline: 2px solid #76c8a4; outline-offset: 2px; }
#dance-player, #classics-player { scroll-margin-top: 170px; }
.listening > .station-selector { margin-top: 0; }
@media (max-width: 600px) {
  .station-selector { width: 100%; }
}
