:root {
  --darkest: #12111C;
  --dark: #120F25;
  --dark-2: #16122B;
  --dark-3: #1B182D;
  --dark-4: #302C4B;
  --dark-5: #413A6D;
  --primary: #6E5BCE;
  --secondary: #3274CA;
  --tertiary: #1EAF7E;
  --white: #fff;
  --white-tint: #5c5a6b;
  --white-tint-light: #252330;
  --logo-gray: #989CA8;
  --light-red: #da8677;
  --link-color: #27dda0;
}

main.front-page {
  padding-top: 100px;
  background-image: url("/wp-content/uploads/2025/03/frontpage-raiden-tiny.jpg");
  background-position: center 0%;
  background-repeat: no-repeat;
}
main.front-page .front-page-header {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 767.98px) {
  main.front-page .front-page-header {
    min-height: 280px;
  }
}
main.front-page .front-page-header h1 {
  font-size: 50px;
}
main.front-page .front-page-header h1 span {
  padding-left: 0.6rem;
  font-size: 32px;
  color: var(--logo-gray);
}
@media screen and (max-width: 991.98px) {
  main.front-page .front-page-header h1 {
    font-size: 40px;
  }
  main.front-page .front-page-header h1 span {
    font-size: 25px;
  }
}
@media screen and (max-width: 767.98px) {
  main.front-page .front-page-header h1 {
    font-size: 30px;
  }
  main.front-page .front-page-header h1 span {
    font-size: 19px;
  }
}
main.front-page section.game-list ul.games {
  padding-left: 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767.98px) {
  main.front-page section.game-list ul.games {
    grid-template-columns: repeat(2, 1fr);
  }
}
main.front-page section.game-list ul.games li.game {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
main.front-page section.game-list ul.games li.game, main.front-page section.game-list ul.games li.game a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
}
main.front-page section.game-list ul.games li.game .img-wrap, main.front-page section.game-list ul.games li.game a .img-wrap {
  position: relative;
}
main.front-page section.game-list ul.games li.game .img-wrap img, main.front-page section.game-list ul.games li.game a .img-wrap img {
  width: 100%;
  height: auto;
}
main.front-page section.game-list ul.games li.game .img-wrap::before, main.front-page section.game-list ul.games li.game a .img-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: var(--white);
  transition: 0.2s;
}
main.front-page section.game-list ul.games li.game:hover, main.front-page section.game-list ul.games li.game a:hover {
  color: var(--tertiary);
}
main.front-page section.game-list ul.games li.game:hover .img-wrap::before, main.front-page section.game-list ul.games li.game a:hover .img-wrap::before {
  opacity: 0.1;
}
main.front-page section.game-list ul.games li.game.is-coming-soon {
  opacity: 0.4;
  pointer-events: none;
}
main.front-page section.game-list ul.games li.game div.coming-soon {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background-color: var(--light-red);
  padding: 10px 20px;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  main.front-page section.game-list ul.games li.game div.coming-soon {
    top: 40%;
    padding: 5px 10px;
    font-size: 12px;
  }
}