:root {
  --bg-color: #1800AD;
  --accent-color: #0CC0DF;
  --footer-bg: #000000;
  --text-color: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-soft: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --footer-muted: rgba(255, 255, 255, 0.64);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease, color 160ms ease;
}

a:hover {
  opacity: 0.84;
}

.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: rise 700ms ease both;
}

.brand__name {
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.brand__name .suf {
  font-weight: 600;
}

.brand__name .dot {
  font-weight: 700;
  color: var(--accent-color);
}

.brand__name .games {
  font-weight: 400;
}

.brand__tagline {
  font-size: clamp(0.62rem, 1vw, 0.82rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__tagline .strong {
  color: var(--accent-color);
  font-weight: 700;
}

.footer {
  background: var(--footer-bg);
  padding: 4.2rem 1.5rem 2.5rem;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(190px, 1fr));
  gap: 2.6rem 2rem;
}

.footer__brand {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer__brand .dot {
  color: var(--accent-color);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  max-width: 32ch;
  line-height: 1.75;
}

.footer__title {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__links a:hover {
  color: var(--text-color);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@keyframes rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 85vh;
    padding-top: 6rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 80vh;
    padding: 5rem 1rem 4.5rem;
  }

  .brand {
    gap: 1rem;
  }

  .footer {
    padding: 3.3rem 1rem 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__about {
    grid-column: auto;
  }
}
