/* ==========================================================================
Typography
========================================================================== */

:root {
  --hdr-border: color-mix(in srgb, var(--accent-color) 40%, transparent);
  --hdr-border-strong: color-mix(in srgb, var(--accent-color) 70%, transparent);
  --font-family:
    "Inter", "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-size: 17px;
  --line-height: 1.4;
  --content-width: 1200px;
  --border-radius: 0px;
}

html {
  margin: 0 !important;
  scrollbar-gutter: stable;
  scroll-padding-top: clamp(80px, 10.417vw, 200px);
}

h3 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ==========================================================================
Header
========================================================================== */
.header {
  background-color: color-mix(in srgb, var(--hdr-color) 80%, transparent);
  border-bottom: 3px solid
    color-mix(in srgb, var(--accent-color) 80%, transparent);
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 90;
  position: sticky;
  top: 0;
  z-index: 90;

  backdrop-filter: blur(3px);
}

.header .container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  transition:
    padding 0.3s ease,
    gap 0.3s ease;
}

.burger {
  display: none;
}
.burger-btn {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #ffffff0d;
  border-radius: 100%;
  border: none;
  outline: none;
  overflow: hidden;
}
.burger__overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: transparent;
  backdrop-filter: blur(0);
  transition: 0.3s;
  z-index: -1;
  pointer-events: none;
}
.burger__overlay.active {
  background: #00000080;
  backdrop-filter: blur(5px);
  z-index: 10;
  pointer-events: all;
}
.header__nav {
  display: flex;
  flex-grow: 1;
}
.header__nav-buttons {
  display: none;
  width: 100%;
  gap: 16px;
  padding: 16px;
}
.header__menu {
  display: flex;
  flex: 1;
  gap: 8px;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header__menu li {
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  transition: 0.3s;
}
@media (hover: hover) {
  .header__menu li:hover {
    border-color: var(--primary-text-color);
  }
}
.header__menu .current-menu-item {
  border-color: var(--primary-text-color);
}
.header__menu li a {
  display: inline-block;
  padding: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.header__buttons {
  display: flex;
  gap: 16px;
}
.btn {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 300px;
    height: 100vh;
    flex-flow: column;
    justify-content: flex-start;
    background: var(--bgr-color);
    transition: 0.3s;
    z-index: 50;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .header__nav-buttons {
    display: flex;
    flex-flow: column;
  }
  .header__menu {
    flex-flow: column;
    flex: 0;
  }
  .header__menu li {
    border-radius: 0;
    border-bottom: 1px solid #ffffff0d;
  }

  .header__buttons {
    flex: 1;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 576px) {
  .header__buttons .btn--primary {
    display: none;
  }
}

/* ==========================================================================
Main
========================================================================== */

.tabs-games .tabs__head {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
.tabs-games .tabs__head-item {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-weight: 700;
  background-color: var(--color-light);
  transition: 0.3s;
}
.tabs-games .tabs__head-item:hover {
  background-color: #ffffff1a;
}
.tabs-games .tabs__head-item--active {
  border: 2px solid #fff;
}
.tabs-games .tabs__head-item use {
  fill: #5c5c68;
  transition: 0.3s;
}
.tabs-games .tabs__head-item:hover use {
  fill: #fff;
}
.tabs-games .tabs__content .tabs__game {
  display: flex;
  gap: 8px;
  flex-flow: column;
  align-items: center;
}
.tabs__head-item img {
  display: block;
  width: 24px;
  height: 24px;
}
@media (hover: hover) {
  .tabs-games .tabs__content .tabs__game:hover .tabs__game-image {
    transform: scale(1.07);
  }
}
.tabs__game-picture {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.tabs-games .tabs__content .tabs__game .tabs__game-image {
  display: block;
  width: 100%;
  transition: 0.3s;
}

.tabs-games .tabs__content .tabs__game .tabs__game-title {
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  .tabs-games .tabs__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .tabs__content.show {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .tabs-games .tabs__head-item .counter {
    display: none;
  }
  .tabs__content.show {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq__item-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.reviews > .container {
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr;
  padding: clamp(16px, 2.222vw, 32px);
  background-color: var(--color-light);
}
.reviews__picture {
  width: 100%;
  max-width: 190px;
  height: 100%;
  max-height: 190px;
  overflow: hidden;
}
.reviews__name {
  display: flex;
  align-items: center;
}
.reviews__name-text {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
}
.reviews__job {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .reviews > .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media screen and (max-width: 430px) {
  .reviews__picture {
    max-width: 100%;
    max-height: 100%;
  }
}

/* ==========================================================================
Base
========================================================================== */

body {
  position: relative;
  display: flex;
  color: var(--primary-text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--accent-color) 8%, var(--bgr-color)),
    var(--bgr-color) 15%
  );
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
  touch-action: pan-y;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  background: radial-gradient(
    ellipse at top center,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  z-index: -1;
}

.logo__img {
  height: 40px;
  width: auto;
}

.site-main {
  border-bottom: 3px solid var(--accent-color);
}

.container::before {
  content: none;
}

.overflow {
  overflow: hidden;
}
.site {
  width: 100%;
  display: flex;
  flex-flow: column;
  flex: 1;
}
main.content {
  flex: 1;
}
section,
article {
  width: 100%;
  padding: 0 20px;
}
section:nth-child(n + 3) {
  margin: 40px 0;
}
section > .container,
article > .container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}
section > .container h1,
section > .container h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}
section > .container h1 {
  line-height: 1.1;
  margin-bottom: 40px;
  font-size: 42px;
}
section ol {
  display: block !important;
  gap: 16px;
  flex-flow: column;
}
section ol li {
  display: list-item !important;
  gap: 16px;
  flex-flow: column;
}
.content ul {
  list-style-type: disc;
}
.content li {
  position: relative;
}
.content li::before {
  position: absolute;
  top: calc(50% - 4px);
  left: -25px;
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 100%;
}

.btn {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px 8px 24px;
  border-radius: var(--border-radius);
  transition:
    transform 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
.btn .btn__text {
  display: inline-flex;
  flex-flow: column;
}
.btn .btn__subtitle {
  font-size: 12px;
}
.btn--primary {
  padding: 10px 22px;
  background: var(--sec-btn-color);
  color: var(--txt-btn-color);
}
.btn--secondary {
  background: var(--accent-color);
  color: var(--txt-btn-color);
}

.header__buttons .btn--primary {
  color: var(--primary-text-color);
}

.header__nav-buttons .btn.btn--primary {
  background-color: var(--hdr-color);
  color: #fff;
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  3% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  6% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  9% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  12% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  15% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/* ==========================================================================
Blocks
========================================================================== */

.icon_games {
  background-color: var(--hdr-color);
  position: sticky;
  top: 76px;
  z-index: 10;
}

.icon_games__items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(9, 1fr);
  padding-top: 12px;
}

.icon_games__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  background: none;
}

.icon_games__item-img {
  filter: var(--global-filter);
  width: 32px;
  height: 32px;
}

.payment__item img {
  filter: var(--global-filter);
}

.icon_games__item-name {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.icon_games__item-name:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .icon_games {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 50;

    background: var(--hdr-color);
    padding: 8px 0;
  }

  .icon_games__items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 0 16px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .icon_games__items {
    scroll-snap-type: x mandatory;
  }

  .icon_games__item {
    scroll-snap-align: start;
  }

  .icon_games__items::-webkit-scrollbar {
    display: none;
  }

  .icon_games__item {
    flex: 0 0 auto;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  section,
  article {
    width: 100%;
    padding: 0;
  }
}

.tabs__head-item > * {
  pointer-events: none;
}

.tabs__content {
  display: none;
}

.tabs__content.show {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 19.444vw, 280px);
}

.picture {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.picture img {
  display: block;
}
.picture__caption {
  margin-top: 5px;
  text-align: center;
  font-style: italic;
}

.has-image .container {
  background-color: var(--color-light);
  padding: 20px 40px;
}

section.has-image > .container h2 {
  margin: 20px 0 30px 0;
  font-size: 28px;
}

.has-image .text-image-block {
  margin-bottom: 20px;
}

.content-block-btn {
  max-width: 400px;
  margin: 30px auto;
}

.content-block-btn a span {
  font-size: 16px;
}

.table-wrapper {
  width: 100%;
  overflow: hidden;
}
.table-wrapper > .container {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  border-collapse: collapse;
}
table th {
  background-color: var(--color-table);
  text-align: left;
}
table td,
table th {
  padding: clamp(8px, 1.111vw, 16px);
  border: 1px solid var(--color-ln-table);
}

.hide {
  display: none;
}

.inline-image {
  max-width: 30%;
  height: auto;
  margin: 0 16px 16px 0;
}

.inline-image.float-left {
  float: left;
  margin-right: 24px;
  margin-left: 0;
}

.inline-image.float-right {
  float: right;
  margin-left: 24px;
  margin-right: 0;
}

.text-image-block::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .inline-image {
    float: none;
    max-width: 100%;
    margin: 0 0 16px 0;
  }
}

.hero > .container {
  position: relative;
  display: grid;
  grid-template-columns: none 1fr;
  background-size: cover;
  background-position: center;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
}
.hero__content {
  padding: clamp(16px, 3.542vw, 51px) clamp(16px, 4.444vw, 18px);
}
.hero__content p {
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.hero__body {
  margin-bottom: 40px;
}
.hero__cta-btn {
  display: block;
  max-width: 400px;
  margin: auto auto 40px;
}

.hero__bottom {
  display: grid;
  column-gap: 16px;
  grid-template-areas:
    "title btn"
    "sub-title btn";
}
.hero__bottom-title {
  grid-area: title;
  font-weight: 700;
}
.hero__bottom-sub-title {
  grid-area: sub-title;
  font-weight: 700;
}
.hero__bottom a .btn__title {
  font-size: 16px;
}

.hero__bottom .btn {
  grid-area: btn;
  max-width: 400px;
  width: 100%;
  justify-self: end;
}
.hero__bottom .btn .gift {
  animation: shake 5s ease-in-out infinite;
}
.hero__image {
  position: relative;
}
.hero__image img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 528px;
  height: auto;
  max-height: 528px;
}

.hero__content h1 {
  text-align: center;
  font-size: 47px;
}

@media screen and (max-width: 992px) {
  .hero > .container {
    grid-template-columns: 1fr 0.5fr;
  }
}

@media screen and (max-width: 768px) {
  .hero > .container {
    grid-template-columns: 1fr;
  }
  .hero__image {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    touch-action: pan-y;
  }

  #page {
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none !important;
  }

  .hero__bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "sub-title"
      "btn";
  }
  .hero__bottom-title,
  .hero__bottom-sub-title {
    text-align: center;
    font-size: 18px;
  }
  .hero__bottom-sub-title {
    margin-bottom: 40px;
  }
  .hero__bottom a.btn {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__content {
    padding: clamp(100px, 3.542vw, 51px) clamp(16px, 4.444vw, 18px) 0
      clamp(16px, 4.444vw, 18px);
  }
  .hero__content h1 {
    text-align: center;
  }
  .logo__img {
    height: 30px;
    width: auto;
  }
  .has-image .container {
    padding: 20px;
  }
}
/* ==========================================================================
Footer
========================================================================== */
footer {
  background-color: var(--footer-color);
  position: relative;
}
footer p {
  color: #acb1b4;
  font-size: 13px;
}
footer a,
footer span {
  color: #fff;
}
footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
footer ul.footer-group {
  border-top: solid 1px #4e566c;
  padding-top: 25px;
  line-height: 1.7;
  margin-bottom: 40px;
}
footer ul.footer-group li {
  display: inline-block;
}
footer ul.footer-group li a {
  font-size: 13px;
  text-transform: uppercase;
}
footer ul.footer-group li a:hover {
  color: var(--accent-color);
}
footer ul.footer-group li {
  margin-right: 30px;
}
footer ul.footer-group li:last-child {
  margin-right: 0;
}

footer .gamble-aware {
  position: absolute;
  background-color: color-mix(in srgb, var(--footer-color), black 15%);
  right: 0;
  width: 40%;
  height: 100%;
  padding: 40px 0 0 60px;
}
footer .gamble-aware p {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 10px;
}

footer .gamble-aware a {
  color: #fff;
}
footer .gamble-aware a:hover {
  color: #fff;
}
footer .gamble-aware a i {
  margin-top: 20px;
}
footer .footer-links {
  margin: 20px 0 0 0;
}

.f-accept {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  align-items: center;
}

#cookie-notification {
  z-index: 10;
}

.cookie {
  display: none;
  position: fixed;
  width: auto;
  bottom: 120px;
  background-color: var(--footer-color);
  backdrop-filter: blur(64px);
  margin: 0px !important;
  right: 20px;
  max-width: 320px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  text-align: center;
  border: 3px solid;
  border-color: var(--accent-color);
}

.cookie .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 16px;
}

.cookie .container p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.cookie .btn--primary {
  padding: 10px 24px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
}

.cookie .btn--primary:hover {
  background: var(--accent-color);
  opacity: 0.8;
}

.footer__bottom {
  display: flex;
  align-items: center;
}

.footer__bottom .payment {
  display: flex;
  gap: 16px;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
}

.copiryte {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.aware_section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.support {
  margin-bottom: 20px;
  opacity: 0.8;
}

.support span {
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  footer .gamble-aware {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
}
