@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Orbitron:wght@400;600;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
  height: 100%;
}

body {
  background: #0A0025;
  color: #fff;
  font-family: Inter;
}

h1, h2, h3, h4, h5, button {
  font-family: Orbitron !important;
}

.noscroll {
  overflow-y: hidden;
}

/*******************
    *  HEADERS
*******************/
/* GAME BASE PAGE */
.game_base .header_1 {
  position: relative;
  margin-bottom: 20px;
}

/* */
/*******************
    *  HEROS
*******************/
/* */
/* */
/*******************
    *  SECTIONS
*******************/
/* Terms 1 */
.terms_1 {
  color: #a0aac6 !important;
}

/* HERO 1 */
.hero_1 {
  max-height: 80%;
}
.hero_1 .h-full {
  max-height: 80%;
}
.hero_1 button {
  background: linear-gradient(90deg, #E54440 0%, #F88F50 20.31%, #FD3B99 44.27%, #7C1EB1 65.5%, #3B52E1 84.41%, #07ADF3 100%);
}
.hero_1 button:hover {
  text-decoration: underline;
}
.hero_1 h1 {
  font-size: 4em;
  white-space: nowrap;
}
.hero_1 .data {
  width: 900px;
  max-width: 80%;
}

/* Games Grid 1 */
.games_grid_1 h2 {
  position: relative;
}
.games_grid_1 h2::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  top: 50%;
  transform: translate(-35%, -50%);
  height: 6px;
  background: #2D1D54;
}
.games_grid_1 h2::after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  top: 50%;
  transform: translate(35%, -50%);
  height: 6px;
  background: #2D1D54;
}
.games_grid_1 .game {
  background: rgba(25, 14, 53, 0.7);
}
.games_grid_1 .game img {
  max-width: 270px;
}
.games_grid_1 .game p {
  color: #D1D8F4;
}
.games_grid_1 .game button {
  background: #4415BC;
}
.games_grid_1 .game button:hover {
  background: #300c8b;
}

/* About 1 */
.about_1 .data .tab {
  background: #190E35;
}
.about_1 .data p {
  color: #6F719D;
}

/* Disclaimer 1 */
.disclaimer_1 {
  background: #1A0E3A;
}
.disclaimer_1 p {
  color: #616881;
}
.disclaimer_1 img:first-child {
  width: 50%;
}
.disclaimer_1 img {
  width: 20%;
}

/* Games Secondary 1 */
.games_secondary_1 .games .game img {
  transition-duration: 0.3s;
  cursor: pointer;
}
.games_secondary_1 .games .game :hover img {
  scale: 1.05;
}

/*******************
    *  FOOTERS
*******************/
/* Footer Base */
.footer_base {
  color: #515A72;
}

/* */
@media (max-width: 1280px) {
  .games_grid_1 .games {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .games_grid_1 .games .game {
    gap: 30px;
  }
}
@media (max-width: 1100px) {
  .header_1 .flex-1 img {
    min-width: 60px;
  }

  .hero_1 .data {
    width: 95%;
    max-width: 900px;
  }
  .hero_1 h1 {
    font-size: 3em;
    white-space: unset;
  }
  .hero_1 img {
    min-height: 600px;
  }

  .disclaimer_1 {
    flex-wrap: wrap;
  }
  .disclaimer_1 p {
    width: 100%;
    margin-bottom: 10px;
  }
  .disclaimer_1 div {
    width: 100%;
    justify-content: start;
    gap: 20px;
  }

  .footer_base {
    flex-wrap: wrap;
  }
  .footer_base ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 2px 14px;
    justify-content: start;
    margin-top: 10px;
  }

  .games_grid_1 h2::after {
    content: none;
  }
  .games_grid_1 h2::before {
    content: none;
  }
}
@media (max-width: 640px) {
  .header_1 {
    margin-bottom: 10px !important;
  }
  .header_1 .grid {
    display: flex;
  }
  .header_1 .grid .flex-1:nth-child(1) {
    display: none;
  }
  .header_1 .grid .flex-1:nth-child(3) {
    display: none;
  }
  .header_1 .grid img {
    width: 140px;
  }

  .hero_1 h1 {
    font-size: 2.6em;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .hero_1 p {
    font-size: 1.1em;
    line-height: 1.35em;
  }

  .games_secondary_1 h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .games_secondary_1 .games {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .games_grid_1 h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .games_grid_1 h2::after {
    content: none;
  }
  .games_grid_1 h2::before {
    content: none;
  }
  .games_grid_1 .game {
    flex-wrap: wrap;
    padding-right: 0;
  }
  .games_grid_1 .game .rounded {
    max-width: 100%;
    width: 100%;
  }
  .games_grid_1 .game div {
    width: 100%;
    padding: 20px;
    padding-top: 0;
  }

  .about_1 h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .about_1 .flex {
    flex-wrap: wrap;
  }
  .about_1 img {
    width: 100%;
  }
  .about_1 .data {
    width: 100%;
  }
  .about_1 .data .tab {
    padding: 2em 1.5em;
  }

  .disclaimer_1 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 540px) {
  .games_secondary_1 .games {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 360px) {
  .hero_1 h1 {
    font-size: 2em;
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .hero_1 p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .hero_1 button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .about_1 .data p {
    font-size: 0.9em;
    line-height: 1.5em;
  }

  .games_grid_1 .game p {
    line-height: 20px;
  }
}