@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto&display=swap");

*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:  'Roboto', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.background {
  background-color: #000;
  background-image: url("../imgs/menuBack.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.content .splash {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.content .splash img {
  width: 500px;
  max-width: 100%;
  filter: drop-shadow(0 0 10px #0ff);
}

.content .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 30px 10px;
}

.content .hero h2 {
  color: #0ff;
  text-shadow: 0 0 8px #0ff, 0 0 12px #00f;
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.content .hero h2 span {
  font-size: 1.4em;
  color: #fff;
  display: block;
  text-shadow: 0 0 10px #f0f, 0 0 15px #f00;
}

.content .hero .playBtn {
  max-width: 180px;
  margin-top: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.content .hero .playBtn:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #0ff);
}

.content .hero video {
  margin: 20px auto;

  height: 315px;
  border: 3px solid #0ff;
  aspect-ratio: 1200 / 768;
  box-shadow: 0 0 15px #0ff;
}

@media (max-width: 560px) {
  .content .hero video {
    width: 100vw;
    aspect-ratio: 1200 / 768;
    height: calc(315 * 100vw / 560);
  }
}

.content .description {
  margin: 30px auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 15px;
  border: 2px solid #0ff;
  border-radius: 8px;
  box-shadow: 0 0 10px #0ff;
  text-align: center;
  max-width: 800px;
}

.content .description p {
  line-height: 1.8em;
  font-size: 0.9em;
}

.content .description ul {
  list-style: none;
  margin-top: 10px;
}

.content .description li {
  margin: 5px 0;
  color: #0ff;
  text-shadow: 0 0 8px #0ff;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  border-top: 3px solid #0ff;
  padding: 20px 10px;
  box-shadow: 0 0 10px #0ff;
  color: #fff;
  width: 100%;
}

.footer div {
  margin: 0 15px;
  text-align: center;
}

.footer h3 {
  margin-bottom: 10px;
  color: #0ff;
}

.footer a {
  text-decoration: none;
  color: #f0f;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-shadow: 0 0 10px #f0f;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer div {
    margin-bottom: 15px;
  }
}

@media (max-width: 900px) {
  .content .hero h2 {
    font-size: 1em;
  }
}
