:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

.splash {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 64px) clamp(18px, 3vw, 34px);
  background: #000;
}

.hero {
  align-self: center;
  justify-self: center;
  width: min(900px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  transform: translateY(-3vh);
}

.game-logo {
  display: block;
  width: min(760px, 88vw);
  height: auto;
}

.coming-soon {
  margin: 0;
  font-family: "cheddar-gothic-rough", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-align: center;
  color: var(--fg);
  text-rendering: geometricPrecision;
}

.dots {
  display: inline-flex;
  width: 0.72em;
  justify-content: flex-start;
}

.dots span {
  opacity: 0;
  animation: dotPulse 1.35s infinite steps(1, end);
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.18s; }
.dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes dotPulse {
  0%, 18% { opacity: 0; }
  19%, 100% { opacity: 1; }
}

.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gemenii-logo {
  display: block;
  width: 110px;
  height: auto;
  padding-bottom: 20px; 
}

.legal {
  margin: 0;
  max-width: 780px;
  font-family: "acumin-pro-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .splash {
    padding-top: 44px;
  }

  .hero {
    gap: 50px;
    transform: translateY(-2vh);
  }

  .game-logo {
    width: 90%;
  }

  .legal {
    max-width: 320px;
  }
	
  .coming-soon {
  font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dots span {
    animation: none;
    opacity: 1;
  }
}
