:root {
  --title-yellow: #FFD84D;
  --body-green: #8FFEDF;
  --neon-red: #FF6173;
  --bg-dark: #050507;
}

html {
  overflow-y: scroll;
}

body {
  margin: 0;
  min-height: 100vh;

  background:
    linear-gradient(rgba(5,5,7,0.65), rgba(5,5,7,0.65)),
    url("bg.png") center / cover no-repeat fixed;

  background-color: var(--bg-dark);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--body-green);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(
      circle at top,
      rgba(255,97,115,0.2),
      transparent 75%
    ),
    radial-gradient(
      circle at bottom,
      rgba(143,254,223,0.1),
      transparent 75%
    );
}

.taglineBlock {
  margin-top: -75px; 
}

.tagline {
  color: var(--neon-red);
}

/* ---------- Shared elements ---------- */

.companyLogo {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: auto;
  pointer-events: none;
}

footer {
  position: absolute;
  bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

footer a {
  color: var(--body-green);
  text-decoration: none;
  margin: 0 10px;
  opacity: 1.0;
  transition: all 0.2s ease;
}

footer a:hover {
  opacity: 1;
  color: var(--neon-red);
}

footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-separator {
  color: var(--neon-red);
  opacity: 1.0;
}

/* ---------- Index ---------- */

.index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.index img.gameLogo {
  width: min(900px, 90vw);
  height: auto;
  margin-bottom: 1.4em;
}

.index p {
  font-size: 1.0rem;
  letter-spacing: 0.08em;
  opacity: 1;
}

/* ---------- Legal pages ---------- */

.content {
  max-width: 900px;
  margin: 80px auto 140px;
  padding: 0 24px;
  text-align: left;
}

h1,
h2 {
  color: var(--neon-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin-bottom: 1.5em;
  letter-spacing: 0.05em;
}

h2 {
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
}

ul {
  margin: 0.8em 0 1.2em 1.2em;
  padding: 0;
  list-style: none;
  letter-spacing: 0.05em;
}

ul li::before {
  content: "> ";
}

ul li {
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ---------- Social Links ---------- */

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}

.socials a {
  position: relative;
  width: 48px;
  height: 48px;

  display: block;
}

.socials .icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: opacity 0.12s ease;
}

.socials .hover {
  opacity: 0;
}

.socials a:hover .normal {
  opacity: 0;
}

.socials a:hover .hover {
  opacity: 1;
}
