@charset "UTF-8";
@keyframes rainbow {
  0% {
    color: #cc3333;
  }
  16.7% {
    color: #cccc33;
  }
  33.3% {
    color: #33cc33;
  }
  50% {
    color: #33cccc;
  }
  66.7% {
    color: #3333cc;
  }
  83.3% {
    color: #cc33cc;
  }
  100% {
    color: #cc3333;
  }
}
@keyframes highlight {
  0% {
    background: hsl(196, 99%, 22%);
  }
  50% {
    background: hsl(196, 93%, 42%);
  }
  100% {
    background: hsl(196, 99%, 22%);
  }
}
* {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  line-height: 1.5;
}

p,
li {
  margin: 8pt 0;
}

ul > li {
  list-style: "▸ ";
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

a {
  text-decoration: none;
}

b {
  font-weight: 700;
}

select {
  cursor: pointer;
}

input,
textarea {
  padding: 8pt 16pt;
  font: inherit;
  background: hsl(0, 0%, 98%);
}
input[type=file],
textarea[type=file] {
  background: initial;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
span.rainbow {
  -webkit-animation: rainbow linear 4s infinite;
  -o-animation: rainbow linear 4s infinite;
  animation: rainbow linear 4s infinite;
}
span.highlight {
  color: hsl(196, 93%, 42%);
}

img {
  width: 100%;
  height: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8pt 16pt;
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border-radius: 16pt/50%;
  transition: 0.1s;
  cursor: pointer;
}

.fixed-aspect-16-9 {
  height: 0;
  padding-top: 56.25%;
}
.fixed-aspect-16-9 > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fixed-aspect-square {
  height: 0;
  padding-top: 100%;
}
.fixed-aspect-square > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.br {
  margin: 1em 0;
  width: 100%;
}

html {
  font-size: 12pt;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 12pt;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 11pt;
  }
}
@media screen and (max-width: 640px) {
  html {
    font-size: 10pt;
  }
}

body {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-width: 360px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

h1 {
  color: hsl(196, 99%, 22%);
  text-overflow: ellipsis;
  text-transform: uppercase;
  overflow: hidden;
}
h1.title {
  font-size: 4em;
  font-weight: 400;
}
h1:not(.title)::after {
  content: "";
  display: block;
  background: hsl(31, 98%, 46%);
  height: 4pt;
  width: 32pt;
  margin: 0 auto;
  margin-top: 8pt;
}

h2 {
  color: hsl(196, 99%, 22%);
}

h3 {
  color: hsl(31, 100%, 36%);
}
h3::before {
  content: "— ";
}
h3::after {
  content: " —";
}

body {
  color: hsl(0, 0%, 10%);
  background: hsl(196, 43%, 12%);
}
body header#header-main {
  padding: 8pt;
  z-index: 1337;
  background: hsl(196, 43%, 12%);
}
body header#header-main #logo {
  line-height: 0;
}
body header#header-main #logo img {
  width: auto;
  margin: 8pt;
  height: 4em;
}
body footer#footer-main {
  padding: 8pt;
  z-index: 1337;
  width: 100%;
  background: hsl(196, 43%, 12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body footer#footer-main > * {
  color: hsl(0, 0%, 100%);
}
body footer#footer-main > img {
  margin: 8pt;
  height: 2em;
}
body main {
  background: hsl(0, 0%, 98%);
}
body main section {
  width: 100%;
  padding: 32pt 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body main section:nth-of-type(2n + 1) {
  background-color: hsl(0, 0%, 98%);
}
body main section:nth-of-type(2n) {
  background-color: hsl(0, 0%, 96%);
}
body main section.section-light h1 {
  color: hsl(0, 0%, 10%);
}
body main section.section-light h1::after {
  background: hsl(196, 43%, 12%);
}
body main section.section-light h2,
body main section.section-light h3,
body main section.section-light p {
  color: hsl(0, 0%, 10%);
}
body main section.section-dark h1 {
  color: hsl(0, 0%, 100%);
}
body main section.section-dark h1::after {
  background: hsl(0, 0%, 98%);
}
body main section.section-dark h2,
body main section.section-dark h3,
body main section.section-dark p {
  color: hsl(0, 0%, 100%);
}
body main section .section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 16pt auto;
}
body main section#banner {
  width: 100%;
  max-width: none;
  height: clamp(640px, 40vw, 90vh);
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
  color: hsl(0, 0%, 100%);
  background: hsl(196, 43%, 12%);
}
body main section#banner .section-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  max-width: initial;
  background: hsla(196, 43%, 12%, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main section#banner .section-inner > * {
  margin: 8pt 0;
}
body main section#banner .section-inner h1,
body main section#banner .section-inner h3 {
  color: hsl(0, 0%, 100%);
}
body main section#banner .section-inner h3 {
  text-transform: uppercase;
}
body main section#banner #banner-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
body main section#banner #banner-inner img {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(640px, 40vw, 90vh);
  min-height: 640px;
  max-height: 100vh;
  object-position: 50% 20%;
  object-fit: cover;
}
body main section#call {
  background-image: url("../img/BG-Call.webp");
}
body main section#games {
  background-image: url("../img/BG-Games.webp");
}
body main section#others {
  background-image: url("../img/BG-Toys.webp");
}
body main nav#nav-game {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main nav#nav-game > * {
  flex: 4 1 0;
}
body main nav#nav-game > *:first-child {
  flex-grow: 1;
  text-align: start;
}
body main nav#nav-game > *:last-child {
  flex-grow: 1;
  text-align: end;
}
body .button {
  align-self: center;
  color: hsl(0, 0%, 100%);
  background: hsl(196, 96%, 32%);
}
body .button:hover {
  background: hsl(196, 93%, 42%);
}
body .button.button-circle {
  width: 32pt;
  height: 32pt;
  border-radius: 32pt;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .icon {
  align-self: center;
  width: 64pt;
  height: 64pt;
  border: 4pt hsl(196, 99%, 22%) solid;
  padding: 16pt;
  border-radius: 100vmax;
}
body .icon img,
body .icon svg {
  fill: hsl(196, 99%, 22%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
body .box-container {
  width: 100%;
}
body .box-container .box-container-inner {
  max-width: 1200px;
  margin: 16pt auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
body .box-container .box-container-inner.box-justify-start {
  justify-content: flex-start;
}
body .box-container .box-container-inner a[href].box {
  transition: 0.1s;
}
body .box-container .box-container-inner a[href].box:hover {
  background: hsla(196, 93%, 42%, 0.25);
}
body .box-container .box-container-inner .box {
  padding: 16pt;
  overflow: hidden;
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  body .box-container .box-container-inner .box {
    min-width: 33.3333333333%;
  }
}
@media screen and (max-width: 900px) {
  body .box-container .box-container-inner .box {
    min-width: 50%;
  }
}
@media screen and (max-width: 640px) {
  body .box-container .box-container-inner .box {
    min-width: 100%;
  }
}
body .box-container .box-container-inner .box.box-half {
  flex-basis: 50%;
}
@media screen and (max-width: 1200px) {
  body .box-container .box-container-inner .box.box-half {
    min-width: 100%;
  }
}
body .box-container .box-container-inner .box.box-full {
  flex-basis: 100%;
}
body .box-container .box-container-inner .box.box-tighter {
  padding: 8pt;
}
body .box-container .box-container-inner .box.box-bg-colored {
  background: hsla(0, 0%, 98%, 0.25);
}
body .box-container .box-container-inner .box.box-bg-colored,
body .box-container .box-container-inner .box.box-bg-colored * {
  color: hsl(0, 0%, 100%);
}
body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+1), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+3), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+6), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+8) {
  background: hsla(0, 0%, 98%, 0.25);
}
body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+2), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+4), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+5), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(8n+7) {
  background: hsla(196, 93%, 42%, 0.25);
}
@media screen and (max-width: 1200px) {
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+1), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+3), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+5) {
    background: hsla(0, 0%, 98%, 0.25);
  }
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+2), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+4), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(6n+6) {
    background: hsla(196, 93%, 42%, 0.25);
  }
}
@media screen and (max-width: 900px) {
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(4n+1), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(4n+4) {
    background: hsla(0, 0%, 98%, 0.25);
  }
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(4n+2), body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(4n+3) {
    background: hsla(196, 93%, 42%, 0.25);
  }
}
@media screen and (max-width: 640px) {
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(2n+1) {
    background: hsla(0, 0%, 98%, 0.25);
  }
  body .box-container .box-container-inner .box.box-bg-colored:nth-of-type(2n+2) {
    background: hsla(196, 93%, 42%, 0.25);
  }
}
