* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.bg-gif {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000 url("cheesepre.gif") center center / cover no-repeat;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}
.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
h1 {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}
.tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}
.actions {
  margin-top: 2.5rem;
  width: min(100%, 26rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.waitlist {
  width: 100%;
}
.waitlist-row {
  display: flex;
  gap: 0.5rem;
}
.waitlist input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font: inherit;
}
.waitlist input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.waitlist input[type="email"]:focus {
  outline: none;
  border-color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  background: #f2f2f2;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: wait;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
.btn-preorder {
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-status {
  min-height: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}
.form-status.error {
  color: #ff8a8a;
}
.discord-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}
.discord-link:hover {
  color: #fff;
}
.discord-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  flex-shrink: 0;
}
.back-link {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.back-link:hover {
  color: #fff;
}
@media (max-width: 520px) {
  .waitlist-row {
    flex-direction: column;
  }
  .waitlist-row .btn {
    width: 100%;
  }
}
