/* ==========================================================================
   SCONCE — Clean Splash & Coming Soon
   ========================================================================== */
:root {
  --bg-color: #000000;
  --cyan: #00f0ff;
  --cyan-bright: #22d3ee;
  --cyan-glow: rgba(0, 240, 255, 0.25);
  --text-white: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Radial Cyan Glow */
.ambient-glow {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(6, 78, 119, 0.04) 50%, transparent 75%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.page-container {
  width: 100%;
  max-width: 860px;
  padding: 20px 20px 40px;
  position: relative;
  z-index: 1;
}

.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Seamless Splash Video */
.splash-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

#splash-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000000;
}

/* Text Content & Form */
.content-block {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -8px;
}

.slogan {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Notify Form */
.notify-form {
  width: 100%;
  max-width: 480px;
}

.input-row {
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 8px;
  padding: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-row:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.input-row input::placeholder {
  color: var(--text-muted);
}

.btn-notify {
  background: var(--cyan);
  color: #030712;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px var(--cyan-glow);
}

.btn-notify:hover {
  background: #38bdf8;
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.feedback-msg {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--cyan-bright);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
}

.hidden {
  display: none !important;
}

/* Replay Button */
.btn-replay {
  margin-top: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-replay:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
  background: rgba(0, 240, 255, 0.08);
}

/* Footer */
.footer {
  margin-top: 36px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer strong {
  color: var(--text-secondary);
}

.footer a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer a:hover {
  color: var(--cyan-bright);
  text-shadow: 0 0 8px var(--cyan-glow);
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .page-container {
    padding: 16px;
  }
  .tagline {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .input-row {
    flex-direction: column;
    padding: 8px;
  }
  .btn-notify {
    justify-content: center;
    padding: 12px;
  }
}
