@import url('https://fonts.googleapis.com/css2?family=Bitcount:wght@100..900&family=Comfortaa:wght@300..700&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Bitcount", system-ui;
  background: #000;
  position: relative;
  color: #00ffff;
}

#visualizer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.radio-container {
  display: flex;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
}

.band {
  flex: 1;
  transition: background 0.5s ease;
}

.band:hover, .band.active {
  background: rgba(0, 255, 255, 0.1);
  cursor: pointer;
}

#station-name {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  pointer-events: none;
  z-index: 2;
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#station-name.visible {
  opacity: 1;
  transform: translateY(0);
}

#intro-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: cyan;
  font-size: 1.5rem;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 10;
}
#intro-message.hidden {
  opacity: 0;
}
