:root {
    --primary-font: "Dancing Script", cursive;
    --secondary-font: "Outfit", sans-serif;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --header-bg: rgba(255, 255, 255, 0.98);
    --transition-speed: 0.4s;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: var(--secondary-font); overflow-x: hidden; background: #000; }
  h1, h2, h3, .logo { font-family: var(--primary-font); }
  
  /* Lock scroll completely during intro animation */
  /* Lock scroll completely during intro animation */
    body.scroll-locked {
      overflow: hidden;
      height: 100dvh; /* Modern mobile height */
      width: 100vw;
      position: fixed; /* THIS hard-locks iOS Safari so it cannot scroll */
      top: 0;
      left: 0;
      touch-action: none; /* Completely disables swipe gestures during the lock */
    }
    .preloader-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Password sits above the video */
.password-container {
    position: relative;
    z-index: 2;
}
  
  .preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000;
    z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center;
  }
  /* Replace .preloader-text and pulse keyframes with this: */
.preloader-logo {
  width: 120px; /* Adjust this size as needed for your logo */
  height: auto;
  margin-bottom: 30px;
  animation: spinContinuous 6s linear infinite; /* Smooth infinite circle rotation */
}

@keyframes spinContinuous {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
  .progress-bar { width: 200px; height: 1px; background: rgba(255, 255, 255, 0.2); }
  .progress { width: 0%; height: 100%; background: var(--color-white); transition: width 0.3s ease; }
  
/* --- VIP PASSWORD LOCK --- */
.password-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}
.password-prompt {
  font-family: var(--secondary-font);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.4s ease;
}
.password-input-wrapper:focus-within {
  border-bottom-color: #ffffff;
}
#guest-password {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 1rem;
  letter-spacing: 6px;
  padding: 10px 40px 10px 10px;
  outline: none;
  text-align: center;
}
#guest-password::placeholder {
  color: rgba(255,255,255,0.15);
  letter-spacing: 6px;
}
#submit-password {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}
#submit-password:hover {
  opacity: 1;
  transform: translateX(4px);
}
#submit-password svg {
  width: 22px;
  height: 22px;
}
.password-error {
  color: #ff6b6b;
  font-family: var(--secondary-font);
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-top: 15px;
  text-transform: uppercase;
}