#age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}
#age-verification-modal .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 500px;
  width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#age-verification-modal .modal-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
#age-verification-modal .modal-content label {
  font-size: 14px;
  color: #666;
  margin-left: 8px;
  margin-right: 15px;
  cursor: pointer;
}
#age-verification-modal .modal-content input[type=checkbox] {
  margin-right: 10px;
  transform: scale(1.2);
}
#age-verification-modal .modal-content button {
  background-color: orange;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}
#age-verification-modal .modal-content button:hover {
  background-color: rgb(219, 142, 0);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
  opacity: 1;
  z-index: 9999;
}
.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  font-size: 1.5rem;
  animation: pulse 1s infinite ease-in-out;
}

.loading-logo {
  max-width: 200px;
  background: white;
  padding: 10px;
  margin-bottom: 50px;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
