/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --primary-color: #7FBED7;
  --primary-select-color: #313f5754;
  --secondary-color: #313F57;
  --accent-color: #dbad64;
  --bg-color: #010a13;
  --surface-color: #202d3b;
  --text-color: #FFF;
  --text-color-alt: var(--accent-color);
  --white-color: #FFF;
  --black-color: #000;
  --font-main: "Arial", sans-serif;
  --container-width: 1240px;
  --container-padding-x: 15px;
  --sidebar-width-full: 15.625rem;
  --header-height: 3.75rem;
}

html,
body {
  scroll-behavior: smooth;
  scroll-margin-top: 5rem;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 20px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background-color: var(--bg-color);
}

html {
  font-size: 100%;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
}

.main-content h1,
.main-content h2,
.main-content p,
.main-content ul li,
.main-content ol li {
  color: var(--white-color);
}

.main-content .btn {
  margin: 0.5rem 0;
}

.main-content h2,
.main-content h1 {
  margin-top: 2rem;
}

.main-content h3 {
  color: var(--white-color);
  margin-top: 1rem;
}

.main-content p {
  margin-top: 1rem;
}

.main-content ol,
.main-content li {
  margin-top: 0.5rem;
  margin-left: 2rem;
}

.main-content .simple-text,
.main-content ol li,
.main-content ul li {
  font-size: 1rem;
}

.main-content ul li {
  list-style-type: disc;
}

.main-content .table-wrap {
  max-width: 100%;
  overflow-x: scroll;
}

.main-content .table-wrap::-webkit-scrollbar {
  height: 5px;
}

.main-content .table-wrap::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 20px;
}

.main-content .table-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}

.main-content table {
  margin: 1rem 0;
}

.main-content thead td {
  background-color: var(--primary-color);
  padding: 0.5rem;
  color: var(--white-color);
}

.main-content tbody {
  border: 2px solid var(--secondary-color);
}

.main-content td {
  padding: 1rem;
  padding-right: 2rem;
  background-color: var(--surface-color);
}

.main-content td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.main-content td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.main-content th {
  padding: 1rem;
  padding-right: 4rem;
}
.main-content th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.main-content th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.main-content img {
  display: inline-block;
  margin: 1rem 0;
  border-radius: 1.5rem;
}
.main-content .faq-list {
  margin-left: 0;
}
.main-content .btn {
  margin: 2rem 0;
}
.main-content .btn-wrap {
  display: flex;
  justify-content: center;
}
.main-content .faq-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  margin-left: 0;
  gap: 1rem;
  height: 4.5rem;
  overflow-y: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--grey-color);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.main-content .faq-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-content .faq-card__question {
  font-weight: 700;
  font-size: 1.25rem;
}

.main-content .faq-card__question svg {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.main-content .faq-card.show {
  height: auto;
}

.main-content .faq-card.show svg {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

.container-fluid {
  max-width: 1080px;
  width: 95%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding-x);
}

.game-section {
  padding-bottom: 4rem;
}

h1,
h2,
h3,
h4 {
  line-height: 120%;
}

p {
  line-height: 140%;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  font-size: 1rem;
}

.heading {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.heading::first-letter {
  text-transform: uppercase;
}

.heading--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.heading--grey {
  color: #c4c4c4;
}

.heading__text {
  margin-left: 0.5rem;
}

.heading--center {
  text-align: center;
}

.simple-text {
  font-size: 1.25rem;
  color: var(--text-color);
}

.simple-text--center {
  text-align: center;
}

.simple-text--s {
  font-size: 1rem;
}

.simple-text--grey {
  color: #c4c4c4;
}

.text-accent {
  color: var(--accent-color) !important;
  font-weight: 500;
}

.text-content .heading {
  margin-bottom: var(--mr-16);
}

.text-content--mb-text .simple-text {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--accent-color);
  border-radius: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--accent-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn--outline,
.btn:hover {
  background: transparent;
}

.btn--outline span,
.btn:hover span {
  color: var(--accent-color);
}

.btn__text {
  color: rgb(32, 45, 59);
}

.main-menu {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  position: relative;
}

.main-menu__link:hover span {
  color: var(--accent-color);
}

.main-menu__link:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(69%) sepia(24%) saturate(725%) hue-rotate(358deg) brightness(97%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(69%) sepia(24%) saturate(725%) hue-rotate(358deg) brightness(97%) contrast(93%);
}

.main-menu__text,
.main-menu__icon {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.games {
  margin: 2rem 0;
}

.games__title {
  display: inline-block;
  font-weight: 700;
  font-size: 2.625rem;
  margin-bottom: 1rem;
}

.games__text {
  color: var(--accent-color);
}

.games__scroll {
  overflow-x: scroll;
}

.games__scroll::-webkit-scrollbar {
  width: 0;
}

.games__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.games__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 160px;
  flex: 1 0 160px;
}

.game-card {
  display: inline-block;
  width: 160px;
  height: 214px;
  max-width: 160px;
  max-height: 214px;
  overflow: hidden;
  position: relative;
}

.game-card:hover .game-card__overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0.5843137255)), color-stop(102%, #dbad64));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5843137255) 45%, #dbad64 102%);
}

.game-card__thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.game-card__overlay {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.game-card__play:hover {
  background: var(--surface-color);
}

body,
html {
  height: 100%;
}

body.no-scroll {
  overflow-y: hidden;
}

.page {
  height: 100%;
}

.page__header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 900;
}

.page__wrapper {
  position: relative;
  height: 100%;
  z-index: 1;
  margin-top: 0;
}

.page__sidebar {
  position: fixed;
  z-index: 800;
  width: 100%;
  height: 100%;
  max-width: var(--sidebar-width-full);
  display: inline-block;
}

.page__inner {
  width: calc(100% - var(--sidebar-width-full));
  max-width: calc(100% - var(--sidebar-width-full));
  height: 100%;
  margin-left: var(--sidebar-width-full);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.page__footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.page__bottom-nav {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background-color: var(--surface-color);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.header {
  background-color: var(--surface-color);
  padding: 1rem 0;
}

.sidebar {
  background-color: var(--surface-color);
  overflow-y: scroll;
}

.sidebar::-webkit-scrollbar {
  width: 0;
}

.sidebar__inner {
  padding: 3.75rem 1.875rem 2.5rem;
}

.sidebar__header {
  width: 100%;
  text-align: center;
}

.sidebar__logo {
  display: inline-block;
  margin-bottom: 2.5rem;
}

.sidebar__actions {
  width: 100%;
}

.sidebar__btn {
  width: 100%;
}

.sidebar.show {
  display: inline-block;
}

.footer {
  margin-top: 2rem;
  padding: 2rem 0;
  background-color: var(--bg-color);
  padding-bottom: 4rem;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__right {
  display: flex;
  gap: 4rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__title {
  font-size: 1.25rem;
}

.banner__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .desktop-hidden {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .container-full {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media screen and (min-width: 1600px) {
  .container-fluid {
    max-width: 1440px;
  }
}

@media screen and (max-width: 1024px) {
  .main-content .faq-card {
    height: 7rem;
  }

  .main-content .faq-card .faq-card__question--second {
    height: 6.6rem;
  }

  .main-content {
    max-width: 100vw;
  }

  .main-content .table__wrap {
    max-width: 100vw;
  }

  .main-content__inner {
    max-width: 100vw;
  }

  .mobile-hidden {
    display: none;
  }

  .page__wrapper {
    margin-top: 4.5rem;
  }

  .page__inner {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .container-full {
    max-width: 990px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .main-content .simple-text,
  .main-content ol li,
  .main-content ul li {
    font-size: 1rem;
  }

  .container-fluid {
    max-width: 100%;
    width: 100%;
  }

  .main-menu__link {
    padding: 1rem;
    font-size: 1rem;
  }

  .sidebar {
    width: 100%;
    -webkit-transform: translateY(-0.8px);
    -ms-transform: translateY(-0.8px);
    transform: translateY(-0.8px);
    height: 100%;
    max-width: 100%;
  }

  .sidebar__inner {
    padding: 3rem 1rem 2.5rem;
    padding-bottom: 6rem;
  }

  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .container-full {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }
}