:root {
  --bg: #020303;
  --text: #d3d7d6;
  --accent: #6ad98c;
  --link: #c6cbc9;
  --link-hover: #74e79a;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 58%, #050706 0%, var(--bg) 48%, #000 100%);
  color: var(--text);
  font-family: "JetBrains Mono", "Cascadia Code", "Consolas", monospace;
}

body {
  position: relative;
}

.hero {
  position: fixed;
  inset: 0;
}

#logo-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-links {
  position: fixed;
  left: 50%;
  bottom: 8.5vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.9rem);
  font-size: clamp(0.6rem, 1.05vw, 0.78rem);
  letter-spacing: 0.01em;
  text-transform: lowercase;
  z-index: 2;
}

.footer-links a {
  color: var(--link);
  text-decoration: none;
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease, text-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--link-hover);
  opacity: 1;
  text-shadow: 0 0 10px rgba(87, 230, 137, 0.42);
}

.footer-links .link-github:hover,
.footer-links .link-github:focus-visible {
  color: #f2f2f2;
  text-shadow: 0 0 10px rgba(242, 242, 242, 0.35);
}

.footer-links .link-telegram:hover,
.footer-links .link-telegram:focus-visible {
  color: #35baf6;
  text-shadow: 0 0 10px rgba(53, 186, 246, 0.45);
}

.footer-links .link-steam:hover,
.footer-links .link-steam:focus-visible {
  color: #2f6f9f;
  text-shadow: 0 0 10px rgba(47, 111, 159, 0.42);
}

.footer-links .link-discord:hover,
.footer-links .link-discord:focus-visible {
  color: #5865f2;
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.45);
}

.footer-links .link-lolz:hover,
.footer-links .link-lolz:focus-visible {
  color: #63df84;
  text-shadow: 0 0 10px rgba(99, 223, 132, 0.45);
}

@media (max-width: 680px) {
  .footer-links {
    width: calc(100% - 2rem);
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.3rem;
    bottom: 7.5vh;
  }
}