.main-content img {
  width: 100%;
  display: block;
  border-radius: var(--primary-border-radius);
  margin-bottom: 24px;
  background-color: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--secondary-color);
  max-width: 100%;
}

h2,
h3,
h4,
h5,
h6 {
  padding-top: 24px;
  margin: 0 0 16px;
}

p,
ul,
ol {
  margin: 0 0 16px;
  line-height: 1.4;
}
.table-wrap {
  overflow-x: auto;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 24px;
  border-radius: var(--primary-border-radius);
  border: 1px solid rgba(173, 126, 55, 0.4);
}

.content-button {
  margin: 16px auto;
}

.content-games {
  position: relative;
  padding: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  background-color: var(--secondary-color);
  border-radius: var(--primary-border-radius);
  box-shadow: rgb(1, 57, 58) 0px -2px 0px 0px inset;
  margin: 16px -24px;
  width: calc(100% + 48px);
}

.content-games .anim-letters {
  padding-top: 6px;
  padding-bottom: 12px;
}

.content-games img {
  filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 4px 4px);
  margin-bottom: 0 !important;
}

table {
  table-layout: fixed;
  overflow-wrap: break-word;
  border-spacing: 0;
}

td,
th {
  padding: 6px 24px;
}

tr:nth-child(even) {
  background-color: var(--secondary-color);
}

@media (min-width: 1200px) {
  .main-content img {
    margin: 24px auto;
    max-width: 50%;
  }

  .table-wrap {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .content-games {
    margin: 16px 0;
    width: 100%;
  }
}

.faq-section {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
}

.faq-title {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

.faq-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-list {
  align-items: flex-start;
}

.accordion svg {
  font-size: 20px;
  flex: 0 0 20px;
  transform: rotateZ(-90deg);
  color: rgb(133, 196, 255);
}

.accordion_active svg {
  transform: rotateZ(90deg);
}

.accordion {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition-property: background-color, box-shadow;
  transition-duration: 200ms;
  user-select: none;
  z-index: 10;
  margin-bottom: 16px;
  background-color: var(--secondary-color);
  color: var(--secondary-contrast-color);
  box-shadow: rgb(1, 57, 58) 0px -2px 0px 0px inset;
}

.accordion h3 {
  font-weight: 500;
  min-height: 40px;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 24px;
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion p {
  padding: 0 24px;
  max-height: 0px;
  overflow: hidden;
  margin: 0;
}

.accordion_active p {
  padding-bottom: 12px;
  padding-top: 12px;
}

.accordion:last-of-type {
  margin-bottom: 24px;
}

.accordion-content {
  padding: 16px 24px;
  margin: 0;
}

.accordion-divider {
  height: 2px;
  background-color: rgb(219, 219, 219);
}

.accordion_active p {
  max-height: 1000px;
}

.footer {
  position: relative;
  padding: 32px 0;
  width: 100%;
  background-color: rgb(0, 38, 49);
  background-image: url(/assets/images/973a10771a.webp);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat-x;
  background-size: auto 160px;
}

.footer::after {
  background-image: linear-gradient(
    rgb(4, 29, 32) 22.4%,
    rgb(6, 35, 38) 33.33%,
    rgb(10, 45, 48) 62.49%,
    rgb(0, 36, 40) 68.75%,
    rgb(0, 55, 62) 92.19%,
    rgb(0, 38, 31) 95.31%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 16px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 25%;
}

.footer-main {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.footer-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-link-wrapper a {
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: var(--primary-border-radius);
  height: 100%;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(173, 126, 55, 0.4);
}

.footer-link-wrapper * {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-link-wrapper img {
  max-width: 100px;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1200px) {
  .footer-copyright {
    text-align: left;
    max-width: 50%;
  }

  .footer-link-wrapper {
    margin-bottom: 0;
  }
}

.adult {
  border-radius: 50%;
  flex: 0 0 38px;
  aspect-ratio: 1 / 1;
  width: 38px;
  border: 2px solid var(--secondary-contrast-color);
  color: var(--secondary-contrast-color);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-text {
  opacity: 0.7;
  gap: 6px;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .footer-text {
    text-align: left;
  }
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--secondary-color);
  color: var(--secondary-contrast-color);
  box-shadow: rgb(1, 57, 58) 0px -2px 0px 0px inset;
}

.header-content {
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  display: flex;
  align-items: center;
  width: 80px;
}

.header-logo-image {
  object-fit: contain;
  object-position: center;
}

.header-nav {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav > * {
  flex: 1 1;
  margin-top: 8px;
}

.header-nav-link {
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(255, 171, 73);
}

.header-nav-link_active {
  color: white;
  text-shadow: white 1px 0 10px;
}

.header-nav-link:hover {
  opacity: 0.8;
}

.header-button {
  margin-left: auto;
}

.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: #00000030;
  border: none;
  aspect-ratio: 1 / 1;
  margin: auto 0;
  margin-left: auto;
  color: rgb(255, 171, 73);
}

.mobile-nav {
  z-index: -10;
  position: absolute;
  top: 100%;
  left: 0;
  gap: 16px;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  transition-property: transform, opacity;
  transition-duration: 300ms;
  border-bottom: 1px solid var(--primary-color);
}

.mobile-nav.hidden {
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
}

@media (min-width: 1200px) {
  .header-nav > * {
    flex: 0 0 max-content;
    margin-top: 0;
  }
}

.partners-wrapper {
  position: relative;
}

.partners {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 16px;
}

.partner {
  padding: 8px 16px;
  flex: 1 1 130px;
  background-color: var(--secondary-color);
  border-radius: var(--primary-border-radius);
  height: 65px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(173, 126, 55, 0.4);
}

.partner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1200px) {
  .partner {
    flex: 0 0 130px;
  }
}

.anim-letters > * {
  transition-property: text-shadow, opacity;
  transition-duration: 200ms;
  position: relative;
}

.anim-letter {
  opacity: 0.6;
  text-shadow: white 1px 0 10px;
}

.button {
  position: relative;
  z-index: 1;
  width: max-content;
  min-height: 38px;
  border: none;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 800;
  min-width: 100px;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  transition-property: box-shadow;
  transition-duration: 200ms;
  border-radius: var(--primary-border-radius);

  border: 1px solid rgba(17, 134, 125, 0.5);
  background-image: linear-gradient(rgb(15, 114, 124) 0%, rgb(0, 78, 86) 100%);
  color: rgb(255, 171, 73);
  box-shadow: rgb(0, 118, 111) 0px 2px 0px 0px inset,
    rgb(0, 57, 65) 0px 2px 0px 0px;
  text-shadow: rgba(17, 0, 0, 0.3) 0px 2px 0px;
  /*filter: drop-shadow(0 3px 0 #3a1a3e);*/
}

/*.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  height: 100%;
  background: radial-gradient(#ffffff50 0, #ffffff00 100%);
  transition-property: transform, opacity;
  transition-duration: 200ms;
  opacity: 0;
  transform: scale(0);
}*/

.hero-button {
  /*border: 2px solid #703719;*/
  min-width: 200px;
  min-height: 60px;
  font-size: 22px;
  padding: 0 32px;
}

h1,
h2 {
  font-weight: 800;
  color: rgb(0, 208, 156);
}

.button:hover {
  filter: brightness(110%);
}

.button-secondary {
  color: rgb(182, 65, 0);
  background-image: linear-gradient(rgb(255, 230, 0) 0%, rgb(255, 184, 0) 100%);
  text-shadow: rgba(159, 52, 0, 0.2) 0px 2px 0px;
  border-color: rgba(255, 242, 166, 0.5);
  box-shadow: rgb(255, 242, 166) 0px 2px 0px 0px inset,
    rgb(182, 65, 0) 0px 2px 0px 0px;
}

/*.button::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    #a3d000 24%,
    #fff 48% 50%,
    #fff 52%,
    #a3d000 82%
  );
  border-radius: 8px;
}

.button::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  border-radius: 5px;
  background-color: #111111;
}*/

/*.button-secondary::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background-color: #ffffff;
  border-radius: 5px;
}*/

.button-big {
  padding: 0 24px;
  min-height: 42px;
  min-width: 140px;
}

.floating-button {
  position: sticky;
  bottom: 24px;
  z-index: 10;
  margin: 24px auto;
  transform: translateY(200%);
  transition-property: transform;
  transition-duration: 400ms;
}

.floating-button.active {
  transform: translateY(0%);
}

@keyframes floating-button-animation {
  0% {
    transform: translateX(-50%) rotateZ(-50deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateX(50%) rotateZ(-50deg);
    opacity: 0;
  }
  100% {
    transform: translateX(50%) rotateZ(-50deg);
    opacity: 0;
  }
}

.floating-button-indicator {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: none;
  background: linear-gradient(
    90deg,
    #ffffff60 0%,
    #ffffff80 50%,
    #ffffff60 100%
  );
  animation: floating-button-animation 800ms ease-in-out infinite;
}

.section {
  display: flex;
  align-items: flex-start;
  padding: var(--global-gap) 0;
}

.section h3 {
  font-size: 20px;
  line-height: 1.1;
  padding-top: 16px;
}

.section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1;
}

ol,
ul {
  padding-left: 20px;
  line-height: 1.4;
}

p {
  line-height: 1.4;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

.section p,
.section ul,
.section ol {
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: var(--global-gap);
  padding-bottom: 0;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero img {
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}

.hero h1 {
  margin: 0;
  font-weight: 700;
  margin-bottom: 12px;
  color: rgb(11, 23, 47);
  padding: 3px 10px;
  font-size: 20px;
  border: 2px solid transparent;
  background-image: linear-gradient(rgb(199, 255, 235), rgb(108, 255, 202));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: rgb(255, 184, 0);
}

.subtitle {
  padding: 0;
  margin: 0 0 24px;
  font-weight: 800;
  font-size: 32px;
  color: rgb(255, 184, 0);
  text-shadow: rgba(0, 0, 0, 0.4) 0px 18px 18px, rgb(202, 85, 0) 0px 3px 0px;
}

.subtitle b {
  color: white;
  text-shadow: none;
}

@media (min-width: 768px) {
  .hero {
    width: 100%;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding: 24px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 24px 48px;
    max-width: 50%;
    text-align: center;
    align-items: center;
  }

  .hero .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

:root {
  --global-gap: 16px;

  --primary-color: rgb(0, 28, 44);
  --primary-contrast-color: rgb(232, 255, 254);

  --secondary-color: rgb(0, 65, 72);
  --secondary-contrast-color: rgb(232, 255, 254);

  --primary-border-radius: 8px;
}

hr {
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 375px;
  width: 100vw;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
  color: var(--primary-contrast-color);
}

main {
  flex: 1 1;
  min-width: 375px;
  width: 100vw;
}

picture {
  display: block;
}

@media (min-width: 1200px) {
  :root {
    --global-gap: 32px;
  }

  main {
    padding: 0 0 var(--global-gap);
  }
}

