/* en-vivo.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: white;
  height: 100vh;
}

.navbar {
  background: #000;
  color: yellow;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-btn {
  color: yellow;
  border: 1px solid yellow;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover, .nav-btn.active {
  background: yellow;
  color: black;
}

.main-container {
  display: flex;
  margin-top: 100px;
  height: calc(100vh - 100px);
}

.stream-section {
  flex: 3;
  padding: 20px;
}

.side-panel {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #111;
}

.side-panel button {
  padding: 12px;
  background: yellow;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.side-panel button:hover {
  background: #ffcc00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }
  .stream-section, .side-panel {
    width: 100%;
    height: 50vh;
  }
}
