* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #fff;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: filter 0.4s ease;
}

.bg-video.dimmed {
  filter: brightness(0.2);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.hidden { display: none; }

.name {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.subtitle {
    font-size:2rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: lowercase;
}

#password-form {
  display: flex;
  gap: 0.5rem;
}

#password {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  outline: none;
}

#password::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#password-form button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

#password-form button:hover {
  opacity: 0.85;
}

.error {
  color: #ff6b6b;
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
}

.reel-video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
}

#back-btn {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

#back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
