/* =========================
   GLOBAL / BODY
========================= */
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at bottom, #020617 0, #000 55%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ----- Snow animation ----- */
.snow {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('images/snow.png');
  background-size: cover;
  opacity: 0.4;
  animation: snowfall 12s linear infinite;
}

@keyframes snowfall {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}

/* =========================
   CONTAINER / LAYOUT
========================= */
.container {
  min-height: 100vh;
  max-width: 680px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* =========================
   BADGE / LOGO / SUBTITLE
========================= */
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.logo-wrapper {
  margin-top: 30px;
  background: none; /* Ensure transparent */
}

.logo {
  width: 280px;
  max-width: 80%;
  display: block;
  margin: auto;
  filter:
    drop-shadow(0 0 30px rgba(96,182,255,0.95))
    drop-shadow(0 0 60px rgba(96,182,255,0.75))
    drop-shadow(0 0 90px rgba(96,182,255,0.5));
  background: none; /* Remove any background */
}

.subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #60b6ff;
  margin-top: 12px;
}

/* =========================
   FEATURES LIST
========================= */
.features {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* =========================
   CUSTOMER WAITLIST FORM
========================= */
.email-box {
  margin-top: 28px;
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 40px;
}

.email-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
}

.email-box ::placeholder {
  color: rgba(255,255,255,0.35);
}

.email-box button {
  background: #2196f3;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  color: black;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
.footer-text {
  margin-top: 50px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* =========================
   OPERATOR CTA
========================= */
.operator-cta {
  margin-top: 20px;
  text-align: center;
}

.operator-link {
  color: #00aaff;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
}

.operator-link:hover {
  text-decoration: underline;
}

/* =========================
   OPERATOR PAGE
========================= */
.operator-page .operator-title {
  font-size: 32px;
  font-weight: 600;
  color: #60b6ff;
  margin-bottom: 12px;
}

.operator-page .operator-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.operator-page .operator-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  color: rgba(255,255,255,0.8);
}

.operator-page .operator-features li {
  margin-bottom: 8px;
}

.operator-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 20px auto;
}

.operator-form input {
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.operator-form button {
  height: 46px;
  border-radius: 999px;
  border: none;
  background: #1e90ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   STATUS & BACK LINK
========================= */
.waitlist-status {
  text-align: center;
  margin-top: 12px;
  font-weight: bold;
}

.back-link {
  margin-top: 30px;
  text-align: center;
}

.back-link a {
  color: #00aaff;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:768px) {
  .container {
    padding: 56px 20px;
  }
  .subtitle {
    font-size: 28px;
  }
  .features {
    flex-direction: column;
    gap: 6px 0;
  }
  .logo {
    width: 220px;
  }
}
