body {
  margin: 0;
  padding: 0;
  font-family: 'Play', sans-serif;
  font-weight: 700;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
}

video {
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header, .footer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.header {
  top: 0;
  font-size: clamp(2rem, 3vh, 4rem);
  letter-spacing: 0.1rem;
}

.logo {
  width: 1000px;
}

@media (max-width: 1024px) {
  .logo {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 60%;
    min-width: 330px;
  }
}

.subtitle {
  margin: -3rem 0 0 0;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.8),
               0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .subtitle {
    font-size: clamp(1rem, 0.1vw, 3rem);
    margin: -1rem 0 0 0;
  }
}

.footer {
  bottom: 8%;
  gap: 1.8em;
}

.footer-buttons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links {
  margin-top: 0.5rem;
}

.steam-btn, .gog-btn {
  padding: 1.2rem 2.5rem;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #75b022 5%, #588a1b 95%);
  color: #fff;
  text-decoration: none;
  border-radius: 10rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .footer {
    bottom: 9%;
    gap: 1.2em;
  }
  .footer-buttons {
    gap: 0.8rem;
  }
  .steam-btn, .gog-btn {
    padding: 0.8rem 1.4rem;
    font-size: 1.0rem;
  }
}

.steam-btn {
  background: linear-gradient(to bottom, #75b022 5%, #588a1b 95%);
}

.gog-btn {
  background: linear-gradient(to bottom, #5c2d91 5%, #46226e 95%);
}

.steam-btn:hover {
  transform: scale(1.02);
  background: linear-gradient(to bottom, #8ed629 5%, #6aa621 95%);
  box-shadow: 0 0 0.6rem rgba(117, 176, 34, 0.8);
}

.gog-btn:hover {
  transform: scale(1.02);
  background: linear-gradient(to bottom, #7237b3 5%, #5c2d91 95%);
  box-shadow: 0 0 0.6rem rgba(92, 45, 145, 0.8);
}

.press-kit-lnk {
  display: block;
  color: #a3a3a3;
  text-decoration: none;
  font-size: clamp(1rem, 0.7vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.8),
               0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.4);
}

.press-kit-lnk:hover {
  color: #fff;
}
