html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
  font-family: Arial, sans-serif;
}

.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mute-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 48px;
  height: 48px;
  font-size: 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box {
  position: fixed;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  width: 63%;
  max-width: 294px;
}

.email-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  outline: none;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.25);
}

.cta-button {
  width: 100%;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: black;
  cursor: pointer;
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: default;
}

.form-message {
  min-height: 18px;
  font-size: 13px;
  color: white;
  text-align: center;
}

.emails-page {
  background: #111;
  color: white;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.emails-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.emails-title {
  margin: 0 0 24px 0;
  font-size: 32px;
}

.emails-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.email-address {
  font-size: 16px;
  word-break: break-word;
}

.email-time {
  font-size: 14px;
  opacity: 0.8;
  white-space: nowrap;
}

.emails-empty {
  font-size: 16px;
  opacity: 0.8;
}

.email-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
