:root {
  color-scheme: dark;
  font-family: "Press Start 2P", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #03000c;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.splash {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 60, 172, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(8, 2, 20, 0.9), rgba(2, 0, 10, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.logo {
  font-size: clamp(1rem, 4vw, 1.7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0);
  transition: color 0.8s ease;
}

.logo.visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(80, 255, 226, 0.6);
}

@media (max-width: 600px) {
  body {
    padding: 1.25rem;
  }

  .splash {
    padding: 0 1rem;
    border-radius: 1rem;
  }

  .logo {
    font-size: clamp(0.9rem, 6vw, 1.2rem);
    letter-spacing: 0.12em;
    line-height: 1.7;
  }
}
