/* Reset some default browser styles */
body, h1, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff; /* White text for readability on black background */
  background-color: #000; /* Black page background */
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

/* Language Menu */
.language-menu {
  position: fixed; /* Keep menu visible at the top */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  z-index: 10; /* Ensure it stays above the video */
  background-color: #000; /* Black background for menu */
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Add slight shadow for visibility */
}

.language-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.language-menu li {
  display: inline;
  margin: 0 15px;
}

.language-menu a {
  font-size: 1.1em;
  padding: 5px 10px;
  color: #fff; /* White text for menu links */
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.language-menu a:hover {
  color: #000;
  background-color: #fff;
}

.language-menu a.active {
  font-weight: bold;
  color: #fff;
  background-color: #007bff; /* Highlight active menu item */
}

.video-container {
  position: absolute;
  top: 50px; /* Space for the menu */
  left: 0;
  width: 100%; /* Full viewport width */
  height: calc(100vh - 50px); /* Full height minus the menu height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: calc((100vh - 50px) * 16 / 9); /* Adjust for the 4px gap */
  max-height: calc((100vw - 34px) * 9 / 16); /* Adjust for the 4px gap */
  border: 0;
}
