body {
  margin: 0;
  font-family: sans-serif;
  background: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  width: 100%;
  max-width: 800px;
  padding: 1rem;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

video {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #000;
}

.hidden {
  display: none;
}

.controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

#chatInput {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  background: #333;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #444;
}

.bubble-wrap {
  background: #1e1e1e;
  border-radius: 6px;
  padding: 0.5rem;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.commentary {
  background: #262626;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 1rem;
  white-space: pre-wrap;
  min-height: 3rem;
}
