/* Global styles */
* {
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
  background-size: cover;
}
/* Video Background */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
  background-size: cover;
  overflow: hidden;
}
/* Body flex for centering content */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* Navigation Bar Container */
.container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.navbar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.navbar li {
  margin-left: 10px;
}
.navbar li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}
.navbar li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* Main Content Area - Coming Soon Panel */
.content {
  width: 80%;
  max-width: 500px;
  padding: 30px 20px;
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #dcdcdc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 0;
}
/* Title within content */
.title {
  font-size: 48px;
  color: #dcdcdc;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
/* Button Container */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
  width: 100%;
}
/* Action Buttons */
.action-button {
  display: block;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}
/* Primary Button Style */
.action-button.primary {
  background-color: rgba(60, 60, 60, 0.8);
  color: #dcdcdc;
  border-color: rgba(255, 255, 255, 0.2);
}
.action-button.primary:hover {
  background: rgba(255, 199, 94, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 199, 94, 0.3);
}
/* Secondary Button Style */
.action-button.secondary {
  background-color: rgba(60, 60, 60, 0.8);
  color: #dcdcdc;
  border-color: rgba(255, 255, 255, 0.2);
}
.action-button.secondary:hover {
  background: rgba(255, 199, 94, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 199, 94, 0.3);
}
/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: white;
  font-size: 12px;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer p {
  margin: 0;
  padding: 0;
}
.content {
  display: flex;
  flex-direction: column;
  max-height: 70vh; /* Adjust based on your layout */
  margin: 20px auto;
  padding: 10px;
}

.title {
  transform: translate(0%, 15%);
  flex-shrink: 0; /* Prevents the title from shrinking */
  margin-bottom: 1px;
  /* Add any existing title styles here */
}

.button-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
}

/* Optional: Custom scrollbar styling */
.button-container::-webkit-scrollbar {
  width: 10px;
}

.button-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.button-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.button-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* Responsive Adjustments */
@media only screen and (max-device-width: 480px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .navbar {
    justify-content: center;
    flex-wrap: wrap;
  }
  .navbar li {
    margin: 8px 0;
  }
  .content {
    width: 90%;
    padding: 20px;
    margin-top: 100px;
  }
  .title {
    font-size: 32px;
  }
  .action-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  .footer {
    font-size: 10px;
  }
}