/* Basic Reset */
body, html {
  margin: 0;
  padding: 0;
  background: black;
  font-family: 'Press Start 2P', cursive;
}

/* Header Section */
.header {
  padding: 20px;
  color: #0F0;
}

.header-controls {
  text-align: right;
}

.now-playing {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.header-title {
  text-align: center;
  margin-top: 10px;
}

/* Responsive Logo */
.logo {
  font-size: clamp(18px, 8vw, 72px);
  color: #0F0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Both buttons */
.music-toggle {
  background: rgba(255,255,255,0.1);
  border: 2px solid #0F0;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  color: #0F0;
  font-family: 'Press Start 2P', cursive;
  margin-left: 10px;
}

/* Canvas for the waveform and YouTube frames */
#matrixCanvas {
  display: block;
  margin: 0 auto;
  position: relative;
}
