html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  min-height: 100vh;
}

/* Password screen */
#passwordScreen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#passwordScreen h1 {
  margin: 0 0 8px 0;
  color: #e0e0e0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.03em;
}

#passwordInput {
  width: 240px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

#passwordInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#passwordInput:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

#passwordSubmit {
  width: 272px;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  background: #444;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

#passwordSubmit:hover {
  background: #555;
}

#passwordError {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 14px;
}

/* Video — force black background regardless of body gradient */
.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

body:has(.video-container:not([style*="display:none"])) {
  background: #000;
}

video {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
}

/* Big overlay play button */
.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 96px;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.5);
}
#videoTitle {
  text-align: center;
  padding: 16px 0 8px 0;
}

#videoTitle h1 {
  margin: 0;
  color: #ccc;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.03em;
}

#videoTitle p {
  margin: 4px 0 0 0;
  color: #999;
  font-family: Georgia, serif;
  font-size: 14px;
}