@charset "UTF-8";

:root {
  --core-blue: rgba(150, 180, 255, 1);
  --deep-purple: rgba(80, 40, 160, 1);
  --hot-white: rgba(220, 230, 255, 1);
  --nebula-pink: rgba(180, 60, 120, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  cursor: crosshair;
}

canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.core-glow {
  position: fixed;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(180, 200, 255, 0.1) 15%,
    rgba(120, 140, 255, 0.06) 30%,
    rgba(80, 60, 200, 0.03) 50%,
    transparent 70%
  );
  animation: corePulse 4s ease-in-out infinite;
  pointer-events: none;
}

.nebula-wash {
  position: fixed;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(
    ellipse,
    rgba(80, 50, 160, 0.06) 0%,
    rgba(140, 50, 100, 0.03) 40%,
    transparent 70%
  );
  filter: blur(40px);
  animation: nebulaDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.ambient-flare {
  position: fixed;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 1px;
  z-index: 3;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(150, 180, 255, 0.03) 30%,
    rgba(200, 220, 255, 0.08) 48%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(200, 220, 255, 0.08) 52%,
    rgba(150, 180, 255, 0.03) 70%,
    transparent 100%
  );
  animation: flarePulse 5s ease-in-out infinite;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 0.35em;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(150, 180, 255, 0.5),
    0 0 60px rgba(100, 130, 255, 0.2),
    0 0 120px rgba(80, 80, 220, 0.1);
  margin-bottom: 0.15em;
  opacity: 0;
  animation: titleReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards, titlePulse 4s ease-in-out 2.5s infinite alternate;
}

.sep {
  width: clamp(60px, 12vw, 160px);
  height: 1px;
  margin: 0 auto 2em;
  background: linear-gradient(90deg, transparent, rgba(150, 180, 255, 0.4), transparent);
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.2s forwards;
}

.countdown {
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2.5em;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 1.5s forwards;
}

.countdown-unit {
  text-align: center;
  min-width: clamp(50px, 8vw, 90px);
}

.countdown-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  color: rgba(235, 242, 255, 1);
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(150, 180, 255, 0.6), 0 0 8px rgba(200, 220, 255, 0.4);
  position: relative;
  transition: transform 0.1s, text-shadow 0.1s;
}

.countdown-value .digit {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.countdown-value .digit.flip {
  transform: translateY(-8px);
  opacity: 0;
}

.countdown-value.glitching {
  animation: glitchShake 0.1s ease-in-out infinite;
}

.countdown-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(0.6rem, 1.3vw, 0.75rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(160, 180, 220, 0.75);
  margin-top: 0.8em;
}

.countdown-separator {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: rgba(150, 170, 220, 0.45);
  padding-top: 0.1em;
  animation: colonPulse 2s ease-in-out infinite;
}

.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1.5vw, 0.95rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(180, 200, 240, 0.7);
  opacity: 0;
  animation: fadeIn 2s ease-out 2s forwards;
  transition: color 0.3s, text-shadow 0.3s;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2.5em;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 2.5s forwards;
  pointer-events: none;
}

.bottom-left {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(160, 180, 220, 0.6);
  pointer-events: auto;
}

.bottom-left a {
  color: rgba(180, 200, 240, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 200, 240, 0.25);
  transition: all 0.3s;
}

.bottom-left a:hover {
  color: rgba(210, 225, 255, 0.95);
  border-color: rgba(210, 225, 255, 0.5);
}

.bottom-right {
  font-family: 'Orbitron', monospace;
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(160, 180, 220, 0.5);
  pointer-events: auto;
}

.bottom-right a {
  color: rgba(160, 180, 220, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(160, 180, 220, 0.2);
  transition: all 0.3s;
}

.bottom-right a:hover {
  color: rgba(200, 215, 255, 0.8);
  border-color: rgba(200, 215, 255, 0.4);
}

.notify-container {
  position: fixed;
  bottom: 4em;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 3s forwards;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glitch-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}

.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 15;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.4;
}

.vignette {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 14;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* Notify form elements (moved from inline styles) */
.notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notify-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
}

.notify-email {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  background: transparent;
  border: 1px solid rgba(150, 180, 255, 0.3);
  border-right: none;
  color: rgba(210, 225, 255, 0.9);
  padding: 0.7em 1.5em;
  outline: none;
  width: 220px;
  transition: border-color 0.3s;
}

.gdpr-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  border: 1px solid rgba(150, 180, 255, 0.3);
  border-right: none;
  border-left: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.gdpr-consent {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: rgba(150, 180, 255, 1);
  flex-shrink: 0;
}

.notify-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(190, 210, 245, 0.75);
  background: transparent;
  border: 1px solid rgba(150, 180, 255, 0.3);
  padding: 0.7em 2em;
  cursor: pointer;
  transition: all 0.3s;
}

.notify-btn.is-hover {
  color: rgba(220, 235, 255, 1);
  border-color: rgba(150, 180, 255, 0.7);
}

.privacy-row {
  margin-top: 0.5em;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(150, 180, 220, 0.5);
  text-transform: uppercase;
}

.privacy-row a {
  color: rgba(150, 180, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(150, 180, 255, 0.3);
}

.notify-msg {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-align: center;
  width: 100%;
  margin-top: 0.6em;
  min-height: 1em;
  color: transparent;
  transition: color 0.4s;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@keyframes titleReveal {
  0% { opacity: 0; transform: scale(0.95); letter-spacing: 0.6em; }
  100% { opacity: 1; transform: scale(1); letter-spacing: 0.35em; }
}
@keyframes titlePulse {
  0% { text-shadow: 0 0 20px rgba(150, 180, 255, 0.4), 0 0 60px rgba(100, 130, 255, 0.15); }
  100% { text-shadow: 0 0 30px rgba(150, 180, 255, 0.6), 0 0 80px rgba(100, 130, 255, 0.25), 0 0 140px rgba(80, 80, 220, 0.1); }
}
@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
@keyframes nebulaDrift {
  0% { transform: translate(-50%, -50%) rotate(-2deg) scale(1); }
  100% { transform: translate(-50%, -50%) rotate(2deg) scale(1.1); }
}
@keyframes flarePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes colonPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes glitchShake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-3px) skewX(-2deg); }
  40%  { transform: translateX(3px) skewX(1deg); }
  60%  { transform: translateX(-2px); }
  80%  { transform: translateX(2px) skewX(-1deg); }
  100% { transform: translateX(0); }
}

@media (max-width: 600px) {
  .countdown { gap: 0.8rem; }
  .countdown-separator { display: none; }
  .bottom-bar { padding: 1em 1.2em; flex-direction: column; gap: 0.5em; }
}
