@font-face {
  font-family: Ubuntu;
  src: url("../fonts/ubuntu/Ubuntu-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Ubuntu-Bold;
  src: url("../fonts/ubuntu/Ubuntu-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol, div {
  margin: 0;
  padding: 0;
}

::selection {
  text-shadow: none;
  background: #b3d4fc;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  display: block;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.button {
  color: #032857;
  text-align: center;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: max-content;
  padding: 12px 24px;
  font-family: Ubuntu-Bold, sans-serif;
  transition: all .2s;
  display: inline-block;
}

.button--primary {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
}

.button--secondary {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
}

.button--primary:hover {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
  text-decoration: none;
}

.button--secondary:hover {
  color: #f4f4f4;
  background: none;
  text-decoration: none;
}

.page-text-wrapper {
  text-align: center;
  background-color: #f4f4f4;
  padding: 10px 4% 40px 4%;
}

.page-text-wrapper--games {
  background-color: #0000;
}

@media screen and (width <= 576px) {
  .page-text-wrapper {
    padding: 50px 4% 30px;
  }
}

.page-title {
  text-transform: uppercase;
  text-shadow: 0 1px 200px #0000001a;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%) text;
  margin-bottom: 20px;
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
}

.page-title--games {
  margin-bottom: 0;
}

@media screen and (width <= 768px) {
  .page-title {
    font-size: 3rem;
  }
}

@media screen and (width <= 576px) {
  .page-title {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
}

.page-caption {
  color: #032857;
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
}

@media screen and (width <= 768px) {
  .page-caption {
    max-width: 100%;
    font-size: 1rem;
  }
}

@media screen and (width <= 576px) {
  .page-caption {
    font-size: .9rem;
  }
}

.dropdown {
  width: 100%;
  position: relative;
}

.dropdown__trigger {
  cursor: pointer;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  display: flex;
  box-shadow: 3px 3px 10px 2px #ccc;
}

.dropdown__label {
  color: #f4f4f4;
  text-align: left;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
}

.dropdown__icon {
  border-bottom: 3px solid #f4f4f4;
  border-right: 3px solid #f4f4f4;
  width: 10px;
  height: 10px;
  transition: transform .3s;
  transform: rotate(45deg);
}

.dropdown--open .dropdown__icon {
  transform: rotate(-135deg);
}

.dropdown__menu {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(to top right, #fed65c, #efc550, #e1b345, #d2a239, #c3922e);
  border: 2px solid #fed65c;
  border-radius: 14px;
  width: 100%;
  transition: all .25s;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  overflow: hidden;
  transform: translateY(-8px);
  box-shadow: 3px 3px 10px 2px #ccc;
}

.dropdown--open .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown__menu-header {
  color: #032857b3;
  text-transform: capitalize;
  border-bottom: 1px solid #fed65c80;
  padding: 16px 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .9rem;
}

.dropdown__menu-item {
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #fed65ccc;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  transition: opacity .25s, transform .25s, background .2s;
  display: flex;
  transform: translateY(-6px);
}

.dropdown__menu-item:hover {
  background: #ffffff0d;
}

.dropdown__menu-item:last-child {
  border-bottom: none;
}

.dropdown__menu-item--active {
  background: #00000026;
}

.dropdown--open .dropdown__menu-item {
  opacity: 1;
  transform: translateY(0);
}

.dropdown--open .dropdown__menu-item:nth-child(2) {
  transition-delay: 30ms;
}

.dropdown--open .dropdown__menu-item:nth-child(3) {
  transition-delay: 60ms;
}

.dropdown--open .dropdown__menu-item:nth-child(4) {
  transition-delay: 90ms;
}

.dropdown--open .dropdown__menu-item:nth-child(5) {
  transition-delay: .12s;
}

.dropdown--open .dropdown__menu-item:nth-child(6) {
  transition-delay: .15s;
}

.dropdown--open .dropdown__menu-item:nth-child(7) {
  transition-delay: .18s;
}

.dropdown__menu-icon {
  width: 25px;
}

.dropdown__icon-svg {
  color: #032857;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.dropdown__menu-label {
  color: #032857;
  text-align: left;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
}

@media screen and (width <= 576px) {
  .dropdown__menu-label {
    font-size: .9rem;
  }
}

:root {
  --beam-background: #000d15 !important;
}

.footer {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

.footer__top-container {
  background-color: #000d15;
  width: 100%;
  padding: 50px 4%;
}

@media screen and (width <= 1024px) {
  .footer__top-container {
    padding: 40px 4%;
  }
}

.footer__top-content {
  flex-direction: column;
  max-width: 1632px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 1024px) {
  .footer__top-content {
    max-width: 100%;
  }
}

.footer__payment-methods {
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

@media screen and (width <= 576px) {
  .footer__payment-methods {
    flex-direction: column;
  }
}

.footer__line {
  border: .5px solid #f4f4f44d;
  width: 100%;
  margin: 50px 0;
}

.footer__game-providers {
  overflow: hidden;
}

.footer .swiper-slide {
  justify-content: center;
  align-items: center;
  display: flex;
  width: auto !important;
}

.footer__game-provider-list {
  align-items: center;
  display: flex;
}

.footer__game-provider-img {
  max-width: 100px;
}

.footer__middle-container {
  background-color: #f4f4f4;
  width: 100%;
  padding: 30px 4%;
}

@media screen and (width <= 1024px) {
  .footer__middle-container {
    padding: 40px 4%;
  }
}

.footer__link-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1632px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 1024px) {
  .footer__link-list {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
  }
}

.footer__link {
  color: #f4f4f4;
  text-align: center;
  text-transform: uppercase;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
}

.footer__link:hover {
  color: #fed65c;
  text-underline-offset: 10px;
  text-decoration: underline;
}

.footer__bottom-container {
  background-color: #708090;
  width: 100%;
  padding: 40px 4%;
}

@media screen and (width <= 1024px) {
  .footer__bottom-container {
    padding-block: 30px;
    margin-bottom: 75px;
  }
}

.footer__bottom-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1632px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 1024px) {
  .footer__bottom-wrapper {
    max-width: 100%;
  }
}

.footer__app-downloads {
  border: 1px solid #f4f4f4;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer__app-downloads {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
}

.footer__download-text {
  color: #f4f4f4;
  font-size: 1rem;
}

.footer__download-logo {
  width: 20px;
}

.footer__rights-text {
  color: #f4f4f4;
  text-align: center;
  font-size: 1rem;
}

.footer__license-text {
  text-align: center;
  color: #f4f4f4;
}

.footer__mobile {
  display: none;
}

@media screen and (width <= 1024px) {
  .footer__mobile {
    z-index: 10;
    background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

.footer__mobile-container {
  padding-inline: 2%;
}

.footer__mobile-content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-block: 14px;
}

.footer__mobile-nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer__mobile-item {
  color: #f4f4f4;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .8rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.footer__mobile-item:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.footer__mobile-icon {
  width: 30px;
  height: 30px;
}

.footer__mobile-icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer__mobile-label {
  text-transform: uppercase;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .7rem;
}

.footer__mobile-item--cta {
  color: #151515;
  background: #fed65c;
  border-radius: 10px;
  padding: 6px 8px;
}

.footer__mobile-item--cta .footer__mobile-label {
  color: #151515;
}

:root {
  --license-logo-item-margin: 15px;
}

.header {
  z-index: 10;
  background-color: #000d15;
  width: 100%;
  height: auto;
  padding: 20px 4%;
  position: fixed;
}

@media screen and (width <= 576px) {
  .header {
    padding: 20px 5%;
  }
}

.header__container {
  grid-template-columns: 1fr 1fr;
  max-width: 1632px;
  margin-inline: auto;
  display: grid;
}

@media screen and (width <= 1024px) {
  .header__container {
    gap: 10px;
  }
}

.header__left-content {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media screen and (width <= 576px) {
  .header__left-content {
    gap: 5px;
  }
}

.header__hamburger {
  display: block;
}

@media screen and (width <= 1024px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger-menu {
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 20px;
  display: flex;
}

.header__hamburger-menu span {
  will-change: transform, opacity, width;
  background-color: #f4f4f4;
  border-radius: 3px;
  width: 100%;
  height: 3px;
  transition: transform .28s, opacity .22s, width .28s;
  display: block;
}

.header__hamburger-menu .header__hamburger-middle {
  align-self: flex-start;
  width: 70%;
  transition: transform .28s, opacity .22s, width .28s;
}

.header__backdrop {
  visibility: hidden;
  opacity: 0;
  z-index: 11;
  background: #0000008c;
  transition: opacity .3s;
  position: fixed;
  inset: 0;
}

.header__navigation {
  z-index: 999;
  background: #151515;
  border-right: 1px solid #151515;
  flex-direction: column;
  align-items: flex-start;
  width: min(90vw, 360px);
  height: 100vh;
  padding: 24px;
  transition: transform .36s cubic-bezier(.22, .61, .36, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 0 10px 40px #00000080;
}

@media screen and (width <= 576px) {
  .header__navigation {
    width: 100%;
  }
}

.header__nav-close {
  color: #f4f4f4;
  cursor: pointer;
  background: none;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  transition: background .18s, transform .18s;
  display: inline-flex;
}

.header__nav-close:hover {
  color: #fed65c;
  background: #1f1f1f;
}

.header__nav-drawer {
  gap: 20px;
  width: 100%;
  margin: 20px 0 60px;
  display: grid;
}

.header__nav-item {
  opacity: 0;
  border-radius: 10px;
  width: 100%;
  padding: 12px 24px;
  transition: opacity .35s ease-out, transform .35s ease-out;
  transform: translateX(-12px);
}

.header__nav-item:hover {
  background: #1f1f1f;
  border-left: 3px solid #fed65c;
  transform: translateX(4px);
}

.header__nav-item:hover .header__nav-link {
  color: #fed65c;
  text-decoration: none;
}

.header__nav-link {
  color: #f4f4f4;
  text-align: left;
  text-transform: uppercase;
  font-family: Ubuntu-Bold, sans-serif;
  transition: background .18s, transform .18s;
  display: block;
}

.header__nav-link.is-active {
  color: #fed65c;
}

.header__nav-item.is-active {
  background: #1f1f1f;
  border-left: 3px solid #fed65c;
}

.header__nav-cta {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  padding-inline: 24px;
  display: flex;
}

.header__navigation.is-open {
  transform: translateX(0);
}

.header__navigation.is-open .header__nav-item {
  opacity: 1;
  transform: translateX(0);
}

.header__navigation.is-open .header__nav-item:first-child {
  transition-delay: 50ms;
}

.header__navigation.is-open .header__nav-item:nth-child(2) {
  transition-delay: .1s;
}

.header__navigation.is-open .header__nav-item:nth-child(3) {
  transition-delay: .15s;
}

.header__navigation.is-open .header__nav-item:nth-child(4) {
  transition-delay: .2s;
}

.header__navigation.is-open .header__nav-item:nth-child(5) {
  transition-delay: .25s;
}

.header__navigation.is-open .header__nav-item:nth-child(6) {
  transition-delay: .3s;
}

.header__navigation.is-open .header__btn--mobile:first-child {
  opacity: 1;
  transition-delay: .35s;
  transform: translateX(0);
}

.header__navigation.is-open .header__btn--mobile:nth-child(2) {
  opacity: 1;
  transition-delay: .4s;
  transform: translateX(0);
}

.header__backdrop.is-show {
  opacity: 1;
  visibility: visible;
}

.header__menu-list {
  text-wrap-mode: nowrap;
  justify-content: flex-start;
  gap: 0 30px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .header__menu-list {
    display: none;
  }
}

.header__menu-link {
  color: #f4f4f4;
  text-transform: uppercase;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
}

.header__menu-link:hover {
  color: #fed65c;
  text-underline-offset: 10px;
  text-decoration: underline;
}

.header__logo {
  display: inline-block;
}

.header__logo-image {
  width: 100%;
  max-width: 180px;
  height: 100%;
  display: block;
}

@media screen and (width <= 1024px) {
  .header__logo-image {
    max-width: 150px;
  }
}

@media screen and (width <= 576px) {
  .header__logo-image {
    width: 140px;
    max-width: 100%;
  }
}

.header__right-content {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header__profile {
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  display: none;
}

@media screen and (width <= 1024px) {
  .header__profile {
    border-radius: 8px;
    max-width: 50px;
    padding: 4px;
    display: block;
  }
}

.header__button-wrapper {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;
  display: flex;
}

@media screen and (width <= 1024px) {
  .header__button-wrapper {
    display: none;
  }
}

.header__btn {
  text-transform: uppercase;
  min-width: 185px;
  font-size: 1.1rem;
}

.header__btn--mobile {
  opacity: 0;
  transition: opacity .35s ease-out, transform .35s ease-out;
  transform: translateX(-12px);
}

.header__btn-mobile {
  display: none;
}

@media screen and (width <= 1024px) {
  .header__btn-mobile {
    text-transform: uppercase;
    text-wrap-mode: wrap;
    width: 100%;
    max-width: 120px;
    padding: 14px 10px;
    font-size: .7rem;
    display: inline-block;
  }
}

.header__lang {
  cursor: pointer;
  background: #151515;
  border: 1px solid #ffffff1f;
  border-radius: 6px;
  outline: none;
  align-items: center;
  height: 40px;
  padding: 0 10px 0 8px;
  display: inline-flex;
  position: relative;
}

.header__lang:focus-within .header__lang-menu, .header__lang:hover .header__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}

.header__lang-selected {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.header__lang-label {
  color: #e8e8e8;
  font-size: 13px;
}

.header__lang-caret {
  fill: #aaa;
  width: 14px;
  height: 14px;
}

.header__lang-menu {
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  width: 180px;
  margin-top: 4px;
  padding: 6px;
  list-style: none;
  transition: all .18s;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(0);
  box-shadow: 0 8px 24px #00000059;
}

.header__lang-item + .header__lang-item {
  margin-top: 4px;
}

.header__lang-option {
  color: #f4f4f4;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  display: flex;
}

.header__lang-option:hover {
  background: #2a2a2a;
}

.header__flag {
  background-size: cover;
  border-radius: 2px;
  width: 20px;
  height: 14px;
  display: inline-block;
  box-shadow: 0 0 0 1px #00000040;
}

.header__hamburger-menu.is-active span {
  transform-origin: center;
  transition: transform .25s, opacity .2s, width .25s;
}

.header__hamburger-menu.is-active span:first-child {
  transform: translateY(8.5px)rotate(45deg);
}

.header__hamburger-menu.is-active .header__hamburger-middle {
  opacity: 0;
  width: 0;
}

.header__hamburger-menu.is-active span:last-child {
  transform: translateY(-8.5px)rotate(-45deg);
}

@media (width <= 980px) {
  .header__form {
    grid-template-columns: 1fr;
  }

  .header__input {
    width: 100%;
  }

  .header__form-wrapper {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  .header__lang {
    margin-left: 0;
  }
}

.hero {
  z-index: 1;
  background-color: #151515;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero__container {
  width: 100%;
  padding-top: 150px;
  position: relative;
}

@media screen and (width <= 1024px) {
  .hero__container {
    padding-top: 105px;
  }
}

@media screen and (width <= 576px) {
  .hero__container {
    padding-top: 0;
  }
}

.hero__welcome-bonus {
  width: 100%;
}

@media screen and (width <= 576px) {
  .hero__welcome-bonus {
    display: none;
  }
}

.hero__welcome-bonus-mob {
  display: none;
}

@media screen and (width <= 576px) {
  .hero__welcome-bonus-mob {
    width: 100%;
    display: block;
  }
}

.hero__terms-banner {
  background-color: #15151580;
  max-width: 1632px;
  margin-inline: auto;
  padding: 10px 4%;
  bottom: 0;
}

.hero__terms-header {
  color: #f4f4f4;
  text-align: center;
  margin-bottom: 10px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .8rem;
}

.hero__terms-text {
  color: #f4f4f4;
  text-align: center;
  font-size: .7rem;
  line-height: 1.4;
}

.home-games {
  background-color: #f4f4f4;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.home-games__header-wrapper {
  background-color: #f4f4f4;
  width: 100%;
  padding: 50px 4% 80px;
}

@media screen and (width <= 768px) {
  .home-games__header-wrapper {
    padding: 40px 4% 50px;
  }
}

.home-games__header {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 200px #0006;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%) text;
  font-size: 4.8rem;
  font-style: italic;
  position: relative;
}

.home-games__header:after {
  content: "";
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 1px solid #fed65c;
  border-radius: 50%;
  width: 180px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 55px);
}

@media screen and (width <= 768px) {
  .home-games__header:after {
    width: 150px;
    transform: translate(-50%, 45px);
  }
}

@media screen and (width <= 576px) {
  .home-games__header:after {
    width: 100px;
    transform: translate(-50%, 60px);
  }
}

@media screen and (width <= 1024px) {
  .home-games__header {
    font-size: 4rem;
  }
}

@media screen and (width <= 768px) {
  .home-games__header {
    font-size: 3.5rem;
  }
}

@media screen and (width <= 576px) {
  .home-games__header {
    font-size: 2.5rem;
  }
}

.home-games__container {
  width: 100%;
  padding-inline: 4%;
}

.home-games__content {
  background: #f4f4f4;
  max-width: 1632px;
  height: auto;
  margin-inline: auto;
  padding: 0 0 50px;
}

.home-games__nav-tabs {
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .home-games__nav-tabs {
    display: none;
  }
}

.home-games__tab {
  all: unset;
}

.home-games__tab-icon {
  cursor: pointer;
  margin-inline: auto;
  max-width: 45px;
  margin-bottom: 20px;
}

.home-games__tab-text {
  color: #032857;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 2px solid #032857;
  border-radius: 12px;
  padding: 8px 14px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
  transition: background .25s, transform .15s, color .25s;
  box-shadow: 2px 2px 10px 2px #ccc;
}

.home-games__tab--active .home-games__tab-text {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
  font-family: Ubuntu-Bold, sans-serif;
}

.home-games__tab:not(.home-games__tab--active):hover .home-games__tab-text {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
}

.home-games__icon {
  color: #032857;
  width: 100%;
  height: 100%;
  transition: color .3s, transform .3s, filter .3s;
}

.home-games__tab--active .home-games__icon {
  color: #fed65c;
  filter: drop-shadow(0 1px 2px #151515e6);
  transform: scale(1.1);
}

.home-games__tab:not(.home-games__tab--active):hover .home-games__icon {
  color: #fed65c;
  transform: scale(1.05);
}

.home-games__dropdown {
  margin-bottom: 30px;
  display: none;
  position: relative;
}

@media screen and (width <= 1024px) {
  .home-games__dropdown {
    display: block;
  }
}

.home-games__content-wrapper {
  border-top: 1px solid #fed65c;
  grid-template-rows: repeat(2, minmax(220px, 220px));
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding-top: 30px;
  display: grid;
}

@media screen and (width <= 1250px) {
  .home-games__content-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }
}

@media screen and (width <= 1024px) {
  .home-games__content-wrapper {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #fed65c transparent;
    scrollbar-width: thin;
    gap: 16px;
    padding-bottom: 30px;
    display: flex;
    overflow-x: auto;
  }

  .home-games__content-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .home-games__content-wrapper::-webkit-scrollbar-thumb {
    background: #fed65c;
    border-radius: 10px;
  }
}

.home-games__game {
  aspect-ratio: 1;
  scroll-snap-align: start;
  opacity: 0;
  background: #111;
  border: 2px solid #fed65ccc;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
  animation: .55s forwards gameFadeIn;
  position: relative;
  overflow: hidden;
  transform: translateY(16px)scale(.97);
  box-shadow: 3px 3px 10px 2px #ccc;
}

.home-games__game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #fed65c40;
}

@media screen and (width >= 1251px) {
  .home-games__game:first-child {
    grid-area: 1 / 1 / 2 / 3;
  }

  .home-games__game:nth-child(2) {
    grid-area: 1 / 3 / 3 / 5;
  }

  .home-games__game:nth-child(3) {
    grid-area: 1 / 5 / 2 / 7;
  }

  .home-games__game:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .home-games__game:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .home-games__game:nth-child(6) {
    grid-area: 2 / 5 / 3 / 6;
  }

  .home-games__game:nth-child(7) {
    grid-area: 2 / 6 / 3 / 7;
  }

  .home-games__game:nth-child(8) {
    display: none;
  }
}

@media screen and (width <= 1024px) {
  .home-games__game {
    flex: 0 0 30%;
    min-width: 190px;
  }
}

.home-games__game--skeleton {
  opacity: 1;
  background: linear-gradient(90deg, #e0e0e0 25%, #ebebeb 50%, #e0e0e0 75%) 0 0 / 200% 100% no-repeat;
  border: none;
  border-radius: 14px;
  animation: 1.5s linear infinite shimmer;
  transform: none;
}

.home-games__game--skeleton:hover {
  transform: none;
  box-shadow: 3px 3px 10px 2px #ccc;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes gameFadeIn {
  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.home-games__game-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

.home-games__game:hover .home-games__game-image {
  transform: scale(1.05);
}

.home-games__info-btn {
  z-index: 3;
  backdrop-filter: blur(4px);
  color: #fed65c;
  cursor: pointer;
  opacity: 0;
  background: #000000a6;
  border: 1.5px solid #fed65ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  transition: opacity .2s, background .2s, transform .2s;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

@media (hover: none) {
  .home-games__info-btn {
    opacity: 1;
  }
}

.home-games__info-btn:hover {
  color: #151515;
  background: #fed65c;
  transform: scale(1.1);
}

.home-games__info-btn svg {
  pointer-events: none;
}

.home-games__game:hover .home-games__info-btn {
  opacity: 1;
}

.home-games__badges {
  z-index: 3;
  pointer-events: none;
  gap: 5px;
  display: flex;
  position: absolute;
  top: 8px;
  left: 8px;
}

.home-games__badge {
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  padding: 2px 7px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .6rem;
  line-height: 1.5;
  display: inline-block;
}

.home-games__badge--popular {
  color: #000;
  background-color: #3aba6f;
}

.home-games__badge--new {
  color: #f4f4f4;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.home-games__overlay {
  opacity: 0;
  pointer-events: none;
  background: #151515bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity .25s;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-games__game:hover .home-games__overlay {
  opacity: 1;
  pointer-events: auto;
}

.home-games__cta {
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 200px;
  display: flex;
}

.home-games__btn {
  color: #032857;
  text-align: center;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 12px 24px;
  font-family: Ubuntu-Bold, sans-serif;
  transition: all .2s;
  display: inline-block;
}

.home-games__btn--play {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
}

.home-games__btn--play:hover {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
}

.home-games__btn--free {
  color: #fff;
  background: #ffffff26;
  border: 2px solid #fed65c;
}

.home-games__btn--free:hover {
  background: linear-gradient(#bf365c 0%, #8e0119 50%, #bf365c 100%);
  border: 2px solid #fed65c;
  transform: translateY(-2px);
}

@media screen and (width <= 576px) {
  .home-games__btn {
    padding: 10px 2%;
    font-size: .9rem;
  }
}

.home-games__btn a, .home-games__btn a:hover {
  color: #f4f4f4;
  text-decoration: none;
}

.home-games__game-name {
  color: #f4f4f4;
  text-align: center;
  margin-top: 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (width <= 576px) {
  .home-games__game-name {
    font-size: 1rem;
  }
}

.home-games__error {
  text-align: center;
  color: #032857;
  grid-column: 1 / -1;
  padding: 40px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.2rem;
}

.home-games__view-more {
  justify-content: center;
  margin-top: 30px;
  display: flex;
}

@media screen and (width <= 768px) {
  .home-games__view-more {
    margin-top: 20px;
  }
}

@media screen and (width <= 576px) {
  .home-games__view-more {
    margin-top: 10px;
  }
}

.home-games__view-more-btn {
  color: #f4f4f4;
  text-align: center;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  cursor: pointer;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
  border-radius: 10px;
  width: max-content;
  margin-top: 20px;
  padding: 16px 32px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.2rem;
  transition: all .2s;
  display: inline-block;
  box-shadow: 3px 3px 10px 2px #ccc;
}

.home-games__view-more-btn:hover {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
  text-decoration: none;
  transform: translateY(-4px);
}

@media screen and (width <= 576px) {
  .home-games__view-more-btn {
    padding: 12px 20px;
    font-size: .9rem;
  }
}

.home-games__text {
  color: #032857cc;
  text-align: center;
  margin-top: 50px;
  max-width: 100%;
  margin-inline: auto;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
  font-style: italic;
  display: block;
}

@media screen and (width <= 768px) {
  .home-games__text {
    margin-top: 40px;
  }
}

@media screen and (width <= 576px) {
  .home-games__text {
    margin-top: 30px;
    font-size: .8rem;
  }
}

.jackpot {
  background: url("../images/frontpage/bg.webp") center / cover no-repeat;
  width: 100%;
  height: auto;
  padding-inline: 4%;
  overflow: hidden;
}

.jackpot__container {
  max-width: 1632px;
  margin-inline: auto;
  padding: 80px 0;
}

@media screen and (width <= 576px) {
  .jackpot__container {
    padding: 50px 0;
  }
}

.jackpot__header {
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 200px #0000001a;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%) text;
  margin-bottom: 20px;
  font-size: 4.8rem;
  font-style: italic;
}

@media screen and (width <= 1024px) {
  .jackpot__header {
    font-size: 3.5rem;
  }
}

@media screen and (width <= 576px) {
  .jackpot__header {
    font-size: 2.5rem;
  }
}

.jackpot__prize-wrapper {
  color: #f4f4f4;
  text-align: center;
  width: 100%;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 4rem;
}

@media screen and (width <= 768px) {
  .jackpot__prize-wrapper {
    font-size: 2.5rem;
  }
}

@media screen and (width <= 576px) {
  .jackpot__prize-wrapper {
    font-size: 1.8rem;
  }
}

.payment-method {
  background: #f4f4f4;
  border-bottom: 2px solid #032857;
  width: 100%;
  height: auto;
  padding-inline: 4%;
  overflow: hidden;
}

.payment-method__container {
  max-width: 1632px;
  margin-inline: auto;
  padding: 20px 0;
}

.payment-method__content-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 16px 20px;
  display: flex;
}

@media screen and (width <= 576px) {
  .payment-method__content-wrapper {
    gap: 20px;
  }
}

.responsible-section {
  background-color: #f4f4f4;
  width: 100%;
  height: auto;
  padding-inline: 4%;
  overflow: hidden;
}

.responsible-section__container {
  max-width: 1632px;
  margin-inline: auto;
  padding: 80px 0;
}

@media screen and (width <= 1024px) {
  .responsible-section__container {
    max-width: 100%;
  }
}

@media screen and (width <= 768px) {
  .responsible-section__container {
    padding: 40px 0;
  }
}

.responsible-section__content {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .responsible-section__content {
    flex-direction: column;
    gap: 50px;
  }
}

.responsible-section__text-wrapper {
  width: 50%;
}

@media screen and (width <= 1024px) {
  .responsible-section__text-wrapper {
    width: 100%;
  }
}

.responsible-section__header {
  color: #032857;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 3rem;
}

@media screen and (width <= 768px) {
  .responsible-section__header {
    text-align: center;
    font-size: 1.8rem;
  }
}

.responsible-section__text {
  color: #032857;
  text-align: left;
  margin-block: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media screen and (width <= 768px) {
  .responsible-section__text {
    text-align: center;
    font-size: 1.2rem;
  }
}

.responsible-section__button {
  margin-top: 30px;
  transition: all .2s;
}

.responsible-section__button:hover {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
  transform: translateY(-4px);
}

@media screen and (width <= 768px) {
  .responsible-section__button {
    max-width: 200px;
    margin: 30px auto 0;
    display: block;
  }
}

.responsible-section__license-img {
  width: 50%;
  max-width: 500px;
}

@media screen and (width <= 768px) {
  .responsible-section__license-img {
    max-width: 100%;
  }
}

@keyframes gameFadeIn {
  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@media screen and (width <= 576px) {
  :root {
    --jackpot-font-size: 3rem;
  }
}

.games {
  background-color: #151515;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .games {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .games {
    padding-top: 80px;
  }
}

.games__container {
  width: 100%;
  padding-inline: 4%;
}

.games__wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 50px;
  position: relative;
}

@media screen and (width <= 768px) {
  .games__wrapper {
    max-width: 100%;
  }
}

.games__nav {
  width: 100%;
}

@media screen and (width <= 768px) {
  .games__nav {
    overflow: hidden;
  }
}

.games__nav-wrapper {
  border-bottom: 1px solid #fed65c33;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-bottom: 20px;
  padding: 30px 0;
  display: flex;
}

@media screen and (width <= 768px) {
  .games__nav-wrapper {
    gap: 15px;
  }
}

.games__tab-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  display: flex;
}

@media screen and (width <= 768px) {
  .games__tab-list {
    align-items: flex-start;
    justify-content: unset;
    white-space: nowrap;
    scrollbar-color: #fed65c transparent;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    overflow: auto hidden;
  }
}

.games__tab-button {
  all: unset;
  cursor: pointer;
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  display: flex;
}

.games__tab-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.games__icon {
  color: #f4f4f4;
  width: 100%;
  height: 100%;
  transition: color .3s, transform .3s, filter .3s;
}

.games__tab-text {
  text-transform: uppercase;
  color: #f4f4f4;
  background: none;
  border: 2px solid #f4f4f4;
  border-radius: 10px;
  padding: 8px 16px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1rem;
  transition: background .25s, color .25s, border .25s, transform .15s;
  display: inline-block;
}

.games__tab-item--active .games__tab-text {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
}

.games__tab-item--active .games__icon {
  color: #fed65c;
  filter: drop-shadow(0 0 12px #fed65c80);
  transform: scale(1.1);
}

.games__tab-item:not(.games__tab-item--active):hover .games__tab-text {
  color: #f4f4f4;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
  transform: translateY(-2px);
}

.games__tab-item:not(.games__tab-item--active):hover .games__icon {
  color: #fed65c;
  transform: scale(1.05);
}

.games__search-wrapper {
  background: #ffffff0d;
  border: 1px solid #fed65c4d;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  width: 20%;
  padding: 8px 12px;
  transition: all .3s;
  display: flex;
}

@media screen and (width <= 1024px) {
  .games__search-wrapper {
    width: 100%;
  }
}

.games__search-wrapper:focus-within {
  border-color: #fed65c;
  box-shadow: 0 0 0 3px #fed65c33;
}

.games__search-input {
  color: #f4f4f4;
  background: none;
  border: none;
  outline: none;
  width: 180px;
  padding: 6px;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
}

.games__search-button {
  color: #fed65c;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
}

.games__content {
  position: relative;
}

.games__all-content {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-auto-columns: 170px;
  grid-auto-flow: dense;
  scrollbar-width: none;
  justify-items: start;
  gap: 20px;
  display: grid;
  overflow-x: scroll;
}

@media screen and (width <= 576px) {
  .games__all-content {
    justify-items: center;
  }
}

.games__tab-content {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  display: grid;
}

@media screen and (width <= 576px) {
  .games__tab-content {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

.games__item--skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%) 0 0 / 200% 100%;
  border-radius: 12px;
  animation: 1.5s linear infinite shimmer;
}

.games__item {
  aspect-ratio: 1;
  background-color: #0d0d0d;
  border: 1px solid #fed65c;
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.games__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #fed65c40;
}

.games__item:hover .games__buttons {
  opacity: 1;
  pointer-events: auto;
}

.games__item:hover .games__info-btn {
  opacity: 1;
}

.games__image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: block;
}

.games__badges {
  z-index: 3;
  pointer-events: none;
  gap: 5px;
  display: flex;
  position: absolute;
  top: 8px;
  left: 8px;
}

.games__badge {
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  padding: 2px 7px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: .6rem;
  line-height: 1.5;
  display: inline-block;
}

.games__badge--popular {
  color: #000;
  background-color: #3aba6f;
}

.games__badge--new {
  color: #f4f4f4;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.games__buttons {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: #0009;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0;
}

.games__overlay-name {
  color: #f4f4f4e6;
  text-align: center;
  text-shadow: 2px 2px 4px #1515154d;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin: 0;
  padding: 0 10px;
  font-family: Ubuntu, sans-serif;
  font-size: .8rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.games__play {
  color: #f4f4f4;
  text-align: center;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #fed65c;
  border-radius: 10px;
  width: auto;
  padding: 10px 20px;
  font-family: Ubuntu, sans-serif;
  font-size: .9rem;
  transition: background .2s, border-color .2s;
}

.games__play:hover {
  color: #f4f4f4;
  background: linear-gradient(#21409a 0%, #032857 45%, #000d15 100%);
  border: 2px solid #032857;
  text-decoration: none;
}

.games__info-btn {
  z-index: 3;
  backdrop-filter: blur(4px);
  color: #fed65c;
  cursor: pointer;
  opacity: 0;
  background: #000000a6;
  border: 1.5px solid #fed65ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  transition: opacity .2s, background .2s, transform .2s;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

@media (hover: none) {
  .games__info-btn {
    opacity: 1;
  }
}

.games__info-btn:hover {
  color: #151515;
  background: #fed65c;
  transform: scale(1.1);
}

.games__info-btn svg {
  pointer-events: none;
}

.games__loading-state {
  z-index: 1;
  background-color: #151515;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.games__loading {
  border: 10px solid #ddd;
  border-top-color: #bb903f;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: 1s linear infinite loading;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.games__load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.games__load-more {
  color: #f4f4f4;
  cursor: pointer;
  background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
  border: 2px solid #fed65c;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: Ubuntu-Bold, sans-serif;
  transition: all .3s;
}

.games__load-more:hover {
  color: #f4f4f4;
  background: #fed65c;
}

.egv-modal {
  --egv-backdrop: #000000d1;
  --egv-index: 1054;
  --egv-color: #fff;
  --egv-bg: #0e0e14;
  --egv-shadow: 0 0 40px 0 #0009;
  --egv-border: 1px solid #d4a43740;
  z-index: var(--egv-index);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.egv-modal--open {
  display: flex;
}

.egv-modal__backdrop {
  background: var(--egv-backdrop);
  cursor: pointer;
  position: absolute;
  inset: 0;
}

.egv-modal__panel {
  z-index: 1;
  background: var(--egv-bg);
  border: var(--egv-border);
  width: min(560px, 94vw);
  max-height: 90vh;
  box-shadow: var(--egv-shadow);
  scrollbar-color: #d4a437 transparent;
  scrollbar-width: thin;
  border-radius: 16px;
  animation: .25s egv-slide-in;
  position: relative;
  overflow-y: auto;
}

@keyframes egv-slide-in {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.egv-modal__close {
  float: right;
  z-index: 2;
  color: #fffc;
  cursor: pointer;
  background: #fed65c80;
  border: 1px solid #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 12px 12px 0 0;
  font-size: 14px;
  transition: background .2s, color .2s;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.egv-modal__close:hover {
  color: #fff;
  background: #ffffff2e;
}

.egv-modal__body {
  clear: both;
  padding: 0 0 4px;
  position: relative;
}

.egv-modal__loading {
  justify-content: center;
  padding: 60px 0;
  display: flex;
}

.egv-modal__loading[hidden] {
  display: none;
}

.egv-modal__spinner {
  border: 3px solid #d4a43733;
  border-top-color: #d4a437;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  animation: .75s linear infinite egv-spin;
}

@keyframes egv-spin {
  to {
    transform: rotate(360deg);
  }
}

.egv-modal__content {
  color: var(--egv-color);
}

.egv-modal__content[hidden] {
  display: none;
}

.egv-detail__hero-wrap {
  width: 100%;
  line-height: 0;
  position: relative;
}

.egv-detail__hero {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: block;
}

.egv-detail__hero-badge {
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.4;
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.egv-detail__hero-badge--popular {
  color: #fff;
  background: #1db954;
}

.egv-detail__hero-badge--new {
  color: #fff;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.egv-detail__hero-badge--hot {
  color: #fff;
  background: linear-gradient(135deg, #e53935, #ff7043);
}

.egv-detail__hero-badge--exclusive {
  color: #fff;
  background: linear-gradient(135deg, #6a1b9a, #ab47bc);
}

.egv-detail__body {
  padding: 18px 20px 4px;
}

.egv-detail__title-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  display: flex;
}

.egv-detail__title {
  color: #fff;
  flex: 1;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.egv-detail__provider-logo {
  object-fit: contain;
  opacity: .85;
  filter: brightness(0) invert();
  flex-shrink: 0;
  width: auto;
  max-width: 90px;
  height: 28px;
}

.egv-detail__provider-text {
  color: #ffffff73;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .75rem;
}

.egv-detail__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.egv-detail__btn {
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: .88rem;
  font-weight: 700;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}

.egv-detail__btn:hover {
  opacity: .88;
  text-decoration: none;
  transform: translateY(-1px);
}

.egv-detail__btn--play {
  color: #fff;
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 2px solid #d4a437;
  flex: 1;
  min-width: 120px;
}

.egv-detail__btn--demo {
  color: #fffc;
  background: none;
  border: 2px solid #ffffff40;
  flex: 1;
  min-width: 100px;
}

.egv-detail__desc-wrap {
  margin-bottom: 16px;
}

.egv-detail__desc {
  color: #ffffffb8;
  margin: 0 0 6px;
  font-size: .875rem;
  line-height: 1.6;
}

.egv-detail__desc--clamped {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.egv-detail__desc-toggle {
  color: #ffffff73;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: .8rem;
  text-decoration: underline;
}

.egv-detail__desc-toggle:hover {
  color: #fff;
}

.egv-detail__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  display: flex;
}

.egv-detail__tag {
  text-transform: capitalize;
  letter-spacing: .03em;
  color: #ffffffb3;
  background: #d4a4371f;
  border: 1px solid #d4a4374d;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: .68rem;
  font-weight: 600;
  display: inline-block;
}

.egv-detail__info-grid {
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.egv-detail__info-row {
  border-bottom: 1px solid #ffffff12;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  display: flex;
}

.egv-detail__info-row:last-child {
  border-bottom: none;
}

.egv-detail__info-row:nth-child(2n) {
  background: #ffffff08;
}

.egv-detail__info-label {
  color: #ffffff80;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
}

.egv-detail__info-value {
  color: #fff;
  text-align: right;
  font-size: .85rem;
  font-weight: 600;
}

.egv-detail__ratings {
  text-align: center;
  padding: 18px 0 16px;
}

.egv-detail__stars {
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 1;
}

.egv-detail__rating-count {
  letter-spacing: .1em;
  color: #ffffff73;
  text-transform: uppercase;
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
}

.egv-star--full {
  color: #f5c518;
}

.egv-star--half {
  color: #f5c518;
  opacity: .55;
}

.egv-star--empty {
  color: #fff3;
}

.egv-detail__stats {
  border-top: 1px solid #ffffff14;
  align-items: stretch;
  margin: 0 -20px;
  padding: 0;
  display: flex;
}

.egv-detail__stat {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 14px 10px;
  display: flex;
}

.egv-detail__stat--divider {
  background: #ffffff14;
  flex: 0 0 1px;
  padding: 0;
}

.egv-detail__stat-value {
  color: #fff;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.egv-detail__stat-label {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff6;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
}

.promotions {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .promotions {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .promotions {
    padding-top: 80px;
  }
}

.promotions__container {
  width: 100%;
  padding-inline: 4%;
}

.promotions__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .promotions__content-wrapper {
    max-width: 100%;
  }
}

.promotions__list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  display: flex;
}

.promotions__item {
  width: 100%;
}

.promotions__item--welcome-bonus {
  background: url("../images/promotions/promo-welcomebonus-bg.webp") center / cover no-repeat;
}

@media screen and (width <= 576px) {
  .promotions__item--welcome-bonus {
    background: url("../images/promotions/promo-welcomebonus-bg-mob.webp") center / cover no-repeat;
  }
}

.promotions__item--vip {
  background: url("../images/promotions/promo-vip-bg.webp") center / cover no-repeat;
}

.promotions__item--daily-offer {
  background: url("../images/promotions/promo-dailyoffer-bg.webp") center / cover no-repeat;
}

@media screen and (width <= 768px) {
  .promotions__item--daily-offer {
    background: url("../images/promotions/promo-dailyoffer-bg-mob.webp") center / cover no-repeat;
  }
}

.promotions__item--tournament {
  background: url("../images/promotions/promo-tournament-bg-desk1.jpg") center / cover no-repeat;
}

@media screen and (width <= 768px) {
  .promotions__item--tournament {
    background: url("../images/promotions/promo-tournament-bg-mob1.jpg") center / cover no-repeat;
  }
}

.promotions__item-content {
  align-items: center;
  gap: 20px;
  padding: 30px;
  display: flex;
}

.promotions__item-content--justify-end {
  justify-content: flex-end;
}

@media screen and (width <= 768px) {
  .promotions__item-content {
    display: none;
  }
}

.promotions__item-content-mobile {
  display: none;
}

@media screen and (width <= 768px) {
  .promotions__item-content-mobile {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    display: flex;
  }

  .promotions__item-content-mobile--justify-end {
    justify-content: flex-end;
  }
}

.promotions__content-text {
  text-align: center;
  width: 50%;
}

.promotions__content-text--text-align {
  text-align: left;
}

@media screen and (width <= 1024px) {
  .promotions__content-text--width {
    width: 100%;
  }
}

.promotions__content-text-mobile {
  text-align: center;
}

.promotions__content-image {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.promotions__content-image--trophy {
  max-width: 300px;
}

@media screen and (width <= 1024px) {
  .promotions__content-image {
    max-width: 350px;
  }
}

.promotions__content-image-mobile {
  max-width: 300px;
}

.promotions__content-image-mobile--trophy {
  max-width: 200px;
}

@media screen and (width <= 576px) {
  .promotions__content-image-mobile {
    max-width: 200px;
  }
}

.promotions__header {
  color: #f4f4f4;
  font-size: 3rem;
}

@media screen and (width <= 768px) {
  .promotions__header {
    font-size: 2.5rem;
  }
}

@media screen and (width <= 576px) {
  .promotions__header {
    font-size: 2rem;
  }
}

.promotions__subheader {
  color: #f4f4f4;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.promotions__subheader--highlight {
  color: #fed65c;
  font-family: Ubuntu-Bold, sans-serif;
}

@media screen and (width <= 768px) {
  .promotions__subheader {
    font-size: 1.8rem;
  }
}

.promotions__welcome-bonus {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 30px;
}

@media screen and (width <= 768px) {
  .promotions__welcome-bonus {
    max-width: 350px;
  }
}

@media screen and (width <= 576px) {
  .promotions__welcome-bonus {
    max-width: 300px;
  }
}

.promotions__button {
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: all .2s;
}

.promotions__button:hover {
  transform: translateY(-4px);
}

.promotions__button--mt {
  margin-top: 20px;
}

.promotions__welcome-text {
  color: #f4f4f4;
  margin-block: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (width <= 1024px) {
  .promotions__welcome-text--background {
    background-color: #151515b3;
    padding: 10px;
  }
}

@media screen and (width <= 768px) {
  .promotions__welcome-text {
    font-size: .9rem;
  }
}

.promotions__welcome-list {
  list-style-type: disc;
  list-style-position: inside;
}

.vip {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .vip {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .vip {
    padding-top: 80px;
  }
}

.vip__container {
  width: 100%;
  padding-inline: 4%;
}

.vip__content-wrapper {
  gap: 20px;
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .vip__content-wrapper {
    flex-direction: column;
  }
}

@media screen and (width <= 768px) {
  .vip__content-wrapper {
    max-width: 100%;
  }
}

.vip__sidebar-nav {
  width: 25%;
}

@media screen and (width <= 1024px) {
  .vip__sidebar-nav {
    width: 100%;
  }
}

.vip__nav-list {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .vip__nav-list {
    display: none;
  }
}

.vip__nav-item {
  cursor: pointer;
  border: 1px solid #032857;
  border-radius: 12px;
  align-items: center;
  gap: 20px;
  width: 100%;
  transition: all .3s;
  display: flex;
}

.vip__nav-item--active {
  background: #fed65c80;
  border: 2px solid #fed65c;
}

.vip__nav-item:hover {
  background: #fed65c80;
  transform: translateX(6px);
}

.vip__nav-icon {
  background-color: #000d15;
  border-radius: 10px 0 0 10px;
  padding: 10px;
  transition: background-color .3s;
}

.vip__nav-icon--active {
  background-color: #032857;
}

.vip__icon {
  max-width: 40px;
}

.vip__icon-svg {
  color: #f4f4f4;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.vip__nav-item--active .vip__icon-svg {
  color: #fed65c;
  transform: scale(1.15);
}

.vip__nav-text {
  color: #032857;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.2rem;
}

.vip__nav-item--active .vip__nav-text {
  font-size: 1.4rem;
}

.vip__content {
  background: linear-gradient(135deg, #032857 10%, #000d15 100%);
  border: 2px solid #032857;
  border-radius: 12px;
  width: 75%;
  height: auto;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .vip__content {
    width: 100%;
  }
}

.vip__panel {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  transition: all .4s;
  position: absolute;
  transform: translateY(20px);
}

.vip__panel--active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
}

.vip__mobile-select {
  display: none;
}

@media screen and (width <= 1024px) {
  .vip__mobile-select {
    color: #f4f4f4;
    text-align: left;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
    border: 2px solid #fed65c;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
    padding: 16px 20px;
    font-family: Ubuntu-Bold, sans-serif;
    font-size: 1rem;
    display: block;
  }
}

.vip__mobile-dropdown {
  display: none;
}

@media screen and (width <= 1024px) {
  .vip__mobile-dropdown {
    display: block;
  }
}

.vip__header {
  color: #f4f4f4;
  margin-bottom: 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.8rem;
}

.vip__subheader {
  color: #fed65c;
  margin-block: 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.4rem;
}

.vip__text {
  color: #f4f4f4;
  margin-block: 15px;
  font-family: Ubuntu, sans-serif;
  font-size: 1.1rem;
}

.vip__text--list {
  list-style-type: disc;
  list-style-position: inside;
}

.vip__text li {
  color: #f4f4f4;
  margin-block: 10px;
  font-family: Ubuntu, sans-serif;
  font-size: 1.1rem;
}

.vip-points {
  width: 100%;
}

.vip-points__currency-box {
  background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin-block: 20px;
  padding: 10px 15px;
  display: inline-flex;
}

.vip-points__currency-label {
  color: #032857;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.1rem;
}

.vip-points__select-wrapper {
  display: inline-block;
  position: relative;
}

.vip-points__currency-select {
  color: #f4f4f4;
  cursor: pointer;
  appearance: none;
  background-color: #000d15;
  border: none;
  border-radius: 8px;
  outline: none;
  padding: 10px 30px 10px 10px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.1rem;
}

.vip-points__select-arrow {
  pointer-events: none;
  border-top: 6px solid #f4f4f4;
  border-left: 5px solid #0000;
  border-right: 5px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: .6rem;
  transform: translateY(-50%);
}

.vip-points__table-wrapper {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  overflow-x: auto;
}

.vip-points__table {
  border-collapse: collapse;
  background-color: #0000;
  border: 2px solid #fed65c;
  width: 100%;
  overflow-x: auto;
}

.vip-points__table-head {
  text-transform: uppercase;
  background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
}

.vip-points__row--head {
  color: #032857;
  text-align: center;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.4rem;
}

.vip-points__cell {
  border: 1px solid #fed65c;
  padding: 20px;
  font-family: Ubuntu, sans-serif;
  font-size: 1.2rem;
  color: #f4f4f4 !important;
}

.vip-points__cell--games {
  text-align: left;
  width: 60%;
}

.vip-points__cell--wagering, .vip-points__cell--points {
  text-align: center;
  width: 20%;
}

.vip-levels {
  width: 100%;
}

.vip-levels__currency-box {
  background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin-block: 20px;
  padding: 15px 10px;
  display: inline-flex;
}

.vip-levels__currency-label {
  color: #032857;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.1rem;
}

.vip-levels__select-wrapper {
  display: inline-block;
  position: relative;
}

.vip-levels__currency-select {
  color: #f4f4f4;
  cursor: pointer;
  appearance: none;
  background-color: #000d15;
  border: none;
  border-radius: 8px;
  outline: none;
  padding: 10px 30px 10px 10px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.1rem;
}

.vip-levels__select-arrow {
  pointer-events: none;
  border-top: 6px solid #f4f4f4;
  border-left: 5px solid #0000;
  border-right: 5px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: .6rem;
  transform: translateY(-50%);
}

.vip-levels__table-wrapper {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  overflow-x: auto;
}

.vip-levels__table {
  border-collapse: collapse;
  background-color: #0000;
  border: 2px solid #fed65c;
  width: 100%;
}

.vip-levels__table-head {
  color: #032857;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c3922e 10%, #fed65c 100%);
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.4rem;
}

.vip-levels__cell {
  text-align: center;
  border: 1px solid #fed65c;
  padding: 20px;
  font-family: Ubuntu, sans-serif;
  font-size: 1.1rem;
  color: #f4f4f4 !important;
}

.vip-levels__cell--benefit {
  text-align: left;
  width: 22%;
}

.vip-faq__accordion {
  max-width: 100%;
  margin-block: 30px;
  margin-inline: auto;
}

.vip-faq__content-list {
  border-top: 1px solid #fed65c80;
}

.vip-faq__content-item {
  border-bottom: 1px solid #fed65c80;
}

.vip-faq__accordion-title {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  display: flex;
}

.vip-faq__accordion-question {
  color: #f4f4f4;
  text-align: left;
  flex: 1;
  padding-right: 15px;
  font-size: 1.1rem;
}

.vip-faq__accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.vip-faq__accordion-icon-line {
  background-color: #fed65c;
  border-radius: 10px;
  transition: opacity .2s, transform .2s;
  position: absolute;
}

.vip-faq__accordion-icon-line--horizontal {
  height: 2px;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.vip-faq__accordion-icon-line--vertical {
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.vip-faq__accordion-body {
  opacity: 0;
  max-height: 0;
  transition: max-height .25s, opacity .25s, transform .25s;
  overflow: hidden;
  transform: translateY(-6px);
}

.vip-faq__accordion-text {
  color: #fed65c;
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.vip-faq__accordion-text--bold {
  font-family: Ubuntu-Bold, sans-serif;
}

.vip-faq__accordion-text a {
  text-decoration: underline;
}

.vip-faq__content-item--open .vip-faq__accordion-body {
  opacity: 1;
  max-height: 300px;
  transform: translateY(0);
}

.vip-faq__content-item--open .vip-faq__accordion-icon-line--vertical {
  opacity: 0;
  transform: translateX(-50%)scaleY(0);
}

.about {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .about {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .about {
    padding-top: 80px;
  }
}

.about__container {
  width: 100%;
  padding-inline: 4%;
}

.about__content-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
  display: flex;
}

@media screen and (width <= 768px) {
  .about__content-wrapper {
    max-width: 100%;
  }
}

.about__cards-swiper {
  width: 100%;
  padding: 60px 0;
}

.about .swiper-slide-active {
  transform: scale(1.05);
}

.about .swiper-slide {
  border-radius: 16px;
}

.about__content-list {
  grid-template-columns: repeat(2, 1fr);
  padding: 20px 0;
  display: grid;
}

.about__item {
  background-color: #efefef;
  border: 2px solid #032857;
  border-radius: 16px;
  width: 300px;
  max-width: 500px;
  min-height: 500px;
}

@media screen and (width <= 768px) {
  .about__item {
    max-width: 300px;
  }
}

@media screen and (width <= 576px) {
  .about__item {
    max-width: 90%;
  }
}

.about__image {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.about__text-wrapper {
  text-align: center;
  padding: 20px;
}

.about__header {
  color: #032857;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

@media screen and (width <= 768px) {
  .about__header {
    font-size: 2rem;
  }
}

.about__description {
  color: #032857cc;
  margin: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

@media screen and (width <= 768px) {
  .about__description {
    font-size: 1rem;
  }
}

.support {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .support {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .support {
    padding-top: 80px;
  }
}

.support__container {
  width: 100%;
  padding-inline: 4%;
}

.support__content-wrapper {
  width: 100%;
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .support__content-wrapper {
    max-width: 100%;
  }
}

.support__chat {
  background: url("../images/promotions/promo-vip-bg.webp") center / cover no-repeat;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  padding: 30px;
  display: flex;
}

@media screen and (width <= 768px) {
  .support__chat {
    flex-direction: column;
  }
}

.support__chat-image {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

@media screen and (width <= 1024px) {
  .support__chat-image {
    max-width: 350px;
  }
}

@media screen and (width <= 768px) {
  .support__chat-image {
    max-width: 200px;
  }
}

.support__chat-text {
  text-align: left;
  width: 50%;
}

@media screen and (width <= 768px) {
  .support__chat-text {
    width: 100%;
  }
}

@media screen and (width <= 576px) {
  .support__chat-text {
    text-align: center;
  }
}

.support__header {
  color: #f4f4f4;
  margin-bottom: 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 3rem;
}

@media screen and (width <= 768px) {
  .support__header {
    font-size: 2.5rem;
  }
}

@media screen and (width <= 576px) {
  .support__header {
    font-size: 2rem;
  }
}

.support__header--faq {
  color: #f4f4f4;
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.support__header--faq:after {
  content: "";
  background: linear-gradient(#f4d06f 0%, #d4a437 45%, #a8741a 100%);
  border: 1px solid #fed65c;
  border-radius: 50%;
  width: 180px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 55px);
}

@media screen and (width <= 768px) {
  .support__header--faq:after {
    width: 150px;
    transform: translate(-50%, 45px);
  }
}

@media screen and (width <= 576px) {
  .support__header--faq:after {
    width: 100px;
    transform: translate(-50%, 60px);
  }
}

.support__paragraph {
  color: #f4f4f4;
  margin-block: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (width <= 768px) {
  .support__paragraph {
    font-size: .9rem;
  }
}

.support__cta {
  margin-block: 20px;
}

.support__faq {
  background: linear-gradient(135deg, #032857 10%, #000d15 100%);
  padding: 40px;
}

.support__faq-content {
  margin-bottom: 80px;
}

@media screen and (width <= 576px) {
  .support__faq-content {
    margin-bottom: 50px;
  }
}

.support__faq-subheader {
  color: #fed65c;
  text-transform: uppercase;
  font-size: 1.8rem;
}

@media screen and (width <= 576px) {
  .support__faq-subheader {
    font-size: 1.4rem;
  }
}

.support__faq-accordion {
  margin-inline: auto;
  max-width: 100%;
  margin-top: 30px;
}

.support__accordion-list {
  border-top: 1px solid #fed65c80;
}

.support__accordion-item {
  border-bottom: 1px solid #fed65c80;
}

.support__accordion-title {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  display: flex;
}

.support__accordion-question {
  color: #f4f4f4;
  text-align: left;
  flex: 1;
  padding-right: 15px;
  font-size: 1.1rem;
}

.support__accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.support__accordion-icon-line {
  background-color: #fed65c;
  border-radius: 10px;
  transition: opacity .2s, transform .2s;
  position: absolute;
}

.support__accordion-icon-line--horizontal {
  height: 2px;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.support__accordion-icon-line--vertical {
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.support__accordion-body {
  opacity: 0;
  max-height: 0;
  transition: max-height .25s, opacity .25s, transform .25s;
  overflow: hidden;
  transform: translateY(-6px);
}

.support__accordion-text {
  color: #fed65c;
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.support__accordion-text--bold {
  font-family: Ubuntu-Bold, sans-serif;
}

.support__accordion-text a {
  text-decoration: underline;
}

.support__accordion-item--open .support__accordion-body {
  opacity: 1;
  max-height: 300px;
  transform: translateY(0);
}

.support__accordion-item--open .support__accordion-icon-line--vertical {
  opacity: 0;
  transform: translateX(-50%)scaleY(0);
}

.payment {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .payment {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .payment {
    padding-top: 80px;
  }
}

.payment__container {
  width: 100%;
  padding-inline: 4%;
}

.payment__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .payment__content-wrapper {
    max-width: 100%;
  }
}

.payment__content {
  color: #151515;
  width: 100%;
}

.responsible-gaming {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .responsible-gaming {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .responsible-gaming {
    padding-top: 80px;
  }
}

.responsible-gaming__container {
  width: 100%;
  padding-inline: 4%;
}

.responsible-gaming__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .responsible-gaming__content-wrapper {
    max-width: 100%;
  }
}

.responsible-gaming__content {
  color: #151515;
  width: 100%;
}

.terms-conditions {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .terms-conditions {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .terms-conditions {
    padding-top: 80px;
  }
}

.terms-conditions__container {
  width: 100%;
  padding-inline: 4%;
}

.terms-conditions__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .terms-conditions__content-wrapper {
    max-width: 100%;
  }
}

.terms-conditions__content {
  color: #151515;
  width: 100%;
}

.privacy-policy {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .privacy-policy {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .privacy-policy {
    padding-top: 80px;
  }
}

.privacy-policy__container {
  width: 100%;
  padding-inline: 4%;
}

.privacy-policy__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .privacy-policy__content-wrapper {
    max-width: 100%;
  }
}

.privacy-policy__content {
  color: #151515;
  width: 100%;
}

.bonus-policy {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .bonus-policy {
    padding-top: 140px;
  }
}

@media screen and (width <= 576px) {
  .bonus-policy {
    padding-top: 80px;
  }
}

.bonus-policy__container {
  width: 100%;
  padding-inline: 4%;
}

@media screen and (width <= 576px) {
  .bonus-policy__container {
      padding-inline: 10%;
  }
}

.bonus-policy__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .bonus-policy__content-wrapper {
    max-width: 100%;
  }
}

.bonus-policy__content {
  color: #151515;
  width: 100%;
}

.uploading-documents {
  background-color: #f4f4f4;
  width: 100%;
  height: 100%;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .uploading-documents {
    padding-top: 120px;
  }
}

@media screen and (width <= 576px) {
  .uploading-documents {
    padding-top: 80px;
  }
}

.uploading-documents__container {
  width: 100%;
  padding-inline: 4%;
}

.uploading-documents__content-wrapper {
  max-width: 1632px;
  margin-inline: auto;
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .uploading-documents__content-wrapper {
    max-width: 100%;
    padding-bottom: 50px;
  }
}

.uploading-documents__header {
  margin-bottom: 12px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.8rem;
}

@media screen and (width <= 768px) {
  .uploading-documents__header {
    text-align: left;
    font-size: 1.3rem;
  }
}

.uploading-documents__caption {
  font-family: Ubuntu, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

@media screen and (width <= 768px) {
  .uploading-documents__caption {
    margin-block: 10px;
    font-size: .9rem;
  }
}

.uploading-documents__section {
  align-items: center;
  gap: 50px;
  margin-top: 30px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .uploading-documents__section {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}

@media screen and (width <= 768px) {
  .uploading-documents__section {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.uploading-documents__text-content {
  width: 50%;
}

@media screen and (width <= 1024px) {
  .uploading-documents__text-content {
    width: 100%;
  }
}

.uploading-documents__subheader {
  color: #032857;
  margin-bottom: 20px;
  font-family: Ubuntu-Bold, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: underline;
}

@media screen and (width <= 768px) {
  .uploading-documents__subheader {
    font-size: 1rem;
  }
}

.uploading-documents__text {
  margin-block: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.uploading-documents__text--bold {
  font-family: Ubuntu-Bold, sans-serif;
  font-weight: 800;
}

@media screen and (width <= 768px) {
  .uploading-documents__text {
    font-size: .8rem;
  }
}

.uploading-documents__list-text {
  margin-block: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
  list-style-type: disc;
  list-style-position: inside;
}

@media screen and (width <= 768px) {
  .uploading-documents__list-text {
    font-size: .9rem;
  }
}

.uploading-documents__list-text li {
  margin-block: 5px;
}

.uploading-documents__image-content {
  max-width: 700px;
}

@media screen and (width <= 1024px) {
  .uploading-documents__image-content {
    max-width: 500px;
  }
}

@media screen and (width <= 576px) {
  .uploading-documents__image-content {
    max-width: 100%;
  }
}

.uploading-documents__button {
  margin-top: 20px;
}

@media screen and (width <= 576px) {
  .uploading-documents__button {
    text-wrap-mode: wrap;
    max-width: 180px;
    padding: 12px 10px;
  }
}

html {
  background-color: #f4f4f4;
  font-family: Ubuntu, sans-serif;
  font-size: 100%;
}

h1, h2 {
  font-family: Ubuntu-Bold, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h3, h4, h5, h6 {
  font-family: Ubuntu-Bold, sans-serif;
}

span, p, a {
  font-family: Ubuntu, sans-serif;
}

a {
  color: #fed65c;
  font-family: Ubuntu, sans-serif;
  text-decoration: none;
}

a:hover {
  color: #eed688;
  text-decoration: underline #eed688;
}

.image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.text-center {
  text-align: center !important;
}

.hidden {
  display: none !important;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}

@media screen and (width <= 576px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (width <= 576px) {
  .sp {
    display: block;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: table;
}
