/* Base styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: white;
}

a {
  color: #00bfff;
  text-decoration: none;
}

header {
  background-color: #000;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5em;
  font-weight: bold;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  border-bottom: 2px solid transparent;
}

.nav-links li:hover {
  border-bottom: 2px solid #00bfff;
}

/* Hamburger menu (mobile only) */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

/* Live Stream Section */
.live-stream {
  text-align: center;
  background-color: #fff;
  color: #000;
  padding: 20px;
}

.live-stream h1 {
  margin-bottom: 15px;
}

.video-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9em;
}

footer a {
  color: #00bfff;
}

/* Responsive design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }
}
