/* ---------- Global ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Press Start 2P', monospace;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  background: url('./background.png') center/cover no-repeat;
}

/* ---------- Panels ---------- */
.panel {
  background: rgba(0,0,0,0.75);
  border: 2px solid #00ffff;
  border-radius: 8px;
  padding: 20px;
  width: 360px;
  text-align: center;
}

/* ---------- Inputs / Buttons ---------- */
input, button {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  margin-top: 10px;
  padding: 8px;
  width: 80%;
  border: 2px solid #00ffff;
  border-radius: 4px;
  background: #111;
  color: #0ff;
  text-align: center;
  cursor: pointer;
}

button:hover {
  background: #0ff;
  color: #111;
  transition: 0.15s;
}

/* controls row */
.top-row { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.controls { display:flex; gap:8px; }
.controls button { width: 100px; padding: 6px; font-size: 11px; }

/* ---------- Users List ---------- */
#users ul { list-style: none; margin-top: 10px; text-align:left; padding-left: 8px; }
#users li {
  padding: 4px 0;
  border-bottom: 1px solid #0ff;
}

/* ---------- Audio Container ---------- */
#audio-container audio {
  display: block;
  margin: 10px auto;
  border: 2px solid #0ff;
  border-radius: 4px;
  width: 90%;
}

/* ---------- Pixel Glow ---------- */
h2, h3, li { text-shadow: 0 0 4px #0ff; }

/* ---------- small text ---------- */
.small { font-family: monospace; font-size: 10px; color: #aaa; margin-top:8px; }

/* ---------- Hidden ---------- */
.hidden { display: none; }
