body {
  background: #0d1117;
  color: #f0f6fc;
  font-family: 'Comic Sans MS', sans-serif;
  margin: 0;
  padding: 2rem;
  text-align: center;
  overflow-x: hidden;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #161b22;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
h1 {
  font-size: 2.8rem;
  color: #58a6ff;
}
.video {
  margin: 1.5rem 0;
}
button {
  margin: 0.5rem;
  background: #2ea043;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #3fb950;
}
.reactions, .voice {
  margin-top: 1rem;
}
#emojiCloud span {
  position: absolute;
  font-size: 2rem;
  animation: floatUp 2s ease-out forwards;
}
@keyframes floatUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100px); }
}
.chatbox {
  margin-top: 2rem;
  background: #0e1117;
  border: 1px solid #30363d;
  padding: 1rem;
  text-align: left;
  border-radius: 8px;
  font-size: 0.9rem;
  max-height: 150px;
  overflow-y: auto;
}
