body {
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
  background: #121212;
  color: white;
}
h1 {
  margin-bottom: 20px;
  color: #00d1ff;
}
#busca {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 500px;
  margin-bottom: 20px;
  border-radius: 6px;
}
#canais {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.canal {
  background: #1e1e1e;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.canal:hover {
  background: #333;
}
.canal img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
video {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
