* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000;
  color: #fff;
  height: 100vh;
}

#container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

h1 {
  font-size: 20px;
  letter-spacing: 2px;
}

h1 span {
  font-size: 12px;
  color: #aaa;
}

h2 {
  font-size: 28px;
  color: #b30000;
  letter-spacing: 4px;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input {
  background: transparent;
  border: 1px solid #b30000;
  color: #fff;
  padding: 12px;
  width: 260px;
  text-align: center;
  letter-spacing: 3px;
}

input::placeholder {
  color: #777;
}

button {
  background: #b30000;
  border: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  letter-spacing: 2px;
}

button:hover {
  background: #800000;
}

.hidden {
  display: none;
}

#videoScreen,
#downloadScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  align-items: center;
  justify-content: center;
  display: none;
}

#videoScreen.active,
#downloadScreen.active {
  display: flex;
}

#revealVideo {
  width: 640px;
  height: 360px;
  object-fit: contain;
}

#downloadLink {
  color: #b30000;
  font-size: 22px;
  text-decoration: none;
  border: 1px solid #b30000;
  padding: 14px 24px;
}
