/* General Styling */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Dancing Script', cursive;
}

/* Fullscreen Background Video */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Keep it behind other content */
}

/* Menu Styling */
.menu {
  position: fixed;
  bottom: 60px; /* Position at the bottom */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  display: flex;
  justify-content: center;
  gap: 50px;
  z-index: 2;
}

.menu button {
  padding: 1px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.5em;
  cursor: pointer;
  text-shadow: 10px 2px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu button:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

/* Back Arrow */
.back-arrow {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 2em;
  color: white;
  display: none;
  cursor: pointer;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.back-arrow:hover {
  opacity: 0.8;
}

/* Sound Toggle Button */
.sound-toggle {
  position: fixed;
  bottom: 80px; /* Keep above the buttons */
  right: 20px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  z-index: 3;
}

.sound-toggle:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
