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

body {
  font-family: Inter, sans-serif;
  color: white;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;

  background: radial-gradient(circle at center, #0f172a, #020617);
}

/* Matrix background */

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

/* Main container */

.container {
  text-align: center;
  max-width: 700px;
  padding: 40px;
}

/* Launch box */

.launch-box {
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.6);

  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;

  padding: 40px;
}

.launch-box:hover {
  box-shadow:
    0 0 40px rgba(56, 189, 248, 0.35),
    inset 0 0 25px rgba(56, 189, 248, 0.08);
}

/* Logo */

.logo {
  font-family: Orbitron, sans-serif;
  font-size: 64px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.logo span {
  color: #00e0ff;
  animation: logoPulse 5s ease-in-out infinite;
}

/* Coming soon */

.coming {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Contact button */

.button-wrapper {
  margin-top: 40px;
}

.cyber-button {
  display: inline-block;
  padding: 14px 32px;

  font-size: 16px;
  font-weight: 600;

  color: #67e8f9;
  text-decoration: none;

  border: 2px solid #06b6d4;
  border-radius: 8px;

  background: transparent;

  transition: all 0.25s ease;

  box-shadow:
    0 0 5px #06b6d4,
    0 0 15px #06b6d4,
    inset 0 0 5px #06b6d4;
}

.cyber-button:hover {
  color: white;
  background: #06b6d4;

  box-shadow:
    0 0 10px #22d3ee,
    0 0 40px #22d3ee,
    0 0 80px #22d3ee;

  transform: translateY(-2px);
}

/* Scanlines effect */

.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;
  z-index: 10;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );

  animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
  from { background-position: 0 0; }
  to { background-position: 0 100px; }
}

/* Footer */

.footer-box {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  padding: 12px 22px;

  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.6);

  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;

  color: white;
  font-size: 14px;
  text-align: center;

  opacity: 0;
  animation: footerFade 1.2s ease forwards;
  animation-delay: 1.5s;
}

@keyframes footerFade {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes logoPulse {
  0% {
    text-shadow: 0 0 6px #00e0ff;
  }

  50% {
    text-shadow:
      0 0 12px #00e0ff,
      0 0 25px #00e0ff,
      0 0 40px #22d3ee;
  }

  100% {
    text-shadow: 0 0 6px #00e0ff;
  }
}

footer {
  font-size: 13px;
  line-height: 1.4;
}