@font-face {
  font-family: Minion;
  src: url("../fonts/minion-pro/MinionPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: MinionBold;
  src: url("../fonts/minion-pro/MinionPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Candara;
  src: url("../fonts/candara/Candara.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Trajan;
  src: url("../fonts/trajan-pro/TRAJANPRO-REGULAR.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: TrajanBold;
  src: url("../fonts/trajan-pro/TRAJANPRO-BOLD.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

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

html, body {
  scroll-behavior: smooth;
}

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;
}

.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;
}

html {
  color: #fff;
  background: #0d0d0a url("../images/bg/wk-uk-main-background.jpg") center / cover no-repeat;
  font-family: Candara, sans-serif;
  font-size: 100%;
  overflow-x: hidden;
}

h1, h2 {
  font-family: MinionBold, sans-serif;
}

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

p {
  font-family: Candara, sans-serif;
  line-height: 1.5;
}

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

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

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

.video {
  width: 100%;
}

:root {
  --faq-group-header-color: #f0ece4;
  --faq-question-header-color: #f0ece4;
  --faq-question-header-active-color: #c9a84c;
  --faq-question-header-background: #0D0D0A;
  --faq-question-header-active-background: #141414;
  --faq-question-item-background: #0D0D0A;
  --faq-question-item-border-top: 1px solid #c9a84c;
  --faq-question-item-border-left: 1px solid #c9a84c;
  --faq-question-item-border-right: 1px solid #c9a84c;
  --faq-question-item-border-bottom: 1px solid #c9a84c;

  --payment-logo-background: #f0ece4;
  --jackpot-font-size: 4rem;
}

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

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

.button-wrapper {
  align-items: center;
  gap: 10px;
  display: flex;
}

.button {
  color: #fff;
  text-transform: uppercase;
  text-wrap: nowrap;
  z-index: 0;
  cursor: pointer;
  background-position: 0 100%;
  background-size: 100% 200%;
  border: none;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 25px 10px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: background-position .5s, background .5s, transform .25s cubic-bezier(.22, .61, .36, 1), box-shadow .3s;
  display: flex;
  position: relative;
  box-shadow: 0 4px 6px #000c;
}

.button--primary {
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
  border: 1px solid #fedc45;
}

.button--secondary {
  background: #fedc4514;
}

.button--secondary:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 99px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.button:hover {
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
  background-position: 0 0;
  transform: scale(1.05);
  box-shadow: 0 4px 10px #fedc4559;
}

.button:active {
  transform: scale(.98);
}

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

.page-hero {
  background: url("../images/bg/bg-header-dark.png") center / cover no-repeat;
  padding: 50px 4%;
  position: relative;
  overflow: hidden;
}

.page-hero:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 0%, #000000d9 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-hero--pb-0 {
  padding-bottom: 0;
}

@media screen and (width <= 576px) {
  .page-hero--pb-0 {
    padding-bottom: 50px;
  }
}

.page-hero__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.page-hero__content {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.page-hero__content--space-between {
  justify-content: space-between;
}

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

.page-hero__text {
  z-index: 1;
  width: 50%;
  position: relative;
}

@media screen and (width <= 768px) {
  .page-hero__text {
    width: 60%;
    margin-bottom: 50px;
  }
}

@media screen and (width <= 576px) {
  .page-hero__text {
    width: 100%;
    margin-bottom: 0;
  }
}

.page-hero__eyebrow {
  color: #f0ece4;
  text-align: center;
  text-transform: uppercase;
  font-family: Minion, sans-serif;
  font-size: 2.4rem;
}

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

.page-hero__title {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .04em;
  text-shadow: 2px 2px 4px #0000004d;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-family: MinionBold, sans-serif;
  font-size: 4.2rem;
}

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

.page-hero__image {
  z-index: 0;
  width: 50%;
  max-width: 500px;
  height: auto;
  position: relative;
}

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

@media screen and (width <= 576px) {
  .page-hero__image {
    width: 100%;
    max-width: 250px;
  }
}

.page-hero--centered {
  padding: 50px 4%;
}

.page-hero--centered .page-hero__content {
  justify-content: center;
}

.page-hero--centered .page-hero__text {
  text-align: center;
  width: 100%;
}

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

.breadcrumb {
  padding: 30px 4%;
}

.breadcrumb__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.breadcrumb__list {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  display: flex;
}

.breadcrumb__item {
  color: #9a9186;
  align-items: center;
  gap: 6px;
  font-family: Trajan, sans-serif;
  font-size: .8rem;
  display: flex;
}

.breadcrumb__item a {
  color: #9a9186;
  transition: color .15s;
}

.breadcrumb__item a:hover {
  color: #c9a84c;
  text-decoration: none;
}

.breadcrumb__item + .breadcrumb__item:before {
  content: ">";
  color: #5a554e;
}

.breadcrumb__item--current {
  color: #c9a84c;
  font-family: TrajanBold, sans-serif;
}

.sticky-banner {
  z-index: 2;
  background: #141414;
  border-top: 1px solid #c9a84c2e;
  padding: 14px 4%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (width <= 768px) {
  .sticky-banner {
    position: relative;
  }
}

.sticky-banner__inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 576px) {
  .sticky-banner__inner {
    text-align: center;
    flex-direction: column;
  }
}

.sticky-banner__left {
  align-items: center;
  gap: 16px;
  display: flex;
}

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

.sticky-banner__icon {
  background: radial-gradient(circle, #c9a84c 0%, #815300 100%);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  display: flex;
}

.sticky-banner__heading {
  color: #fedc45;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-family: Minion, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.sticky-banner__sub {
  color: #9a9186;
  margin-top: 2px;
  font-size: .9rem;
}

.header {
  z-index: 10;
  background-color: #0d0d0a;
  width: 100%;
  height: auto;
  padding: 10px 4%;
  transition: padding .35s, box-shadow .35s, background-color .35s;
  display: block;
  position: fixed;
  top: 0;
  overflow: visible;
}

.header.is-scrolled {
  background-color: #0d0d0af7;
  padding-block: 6px;
  box-shadow: 0 2px 30px #fedc451f, 0 1px #fedc4514;
}

@media screen and (width <= 1024px) {
  .header {
    padding: 10px 4%;
    overflow: hidden;
  }
}

.header__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

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

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

.header__left-content {
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
}

.header__logo {
  margin-bottom: 10px;
  transition: transform .3s, filter .3s;
}

.header__logo:hover {
  filter: drop-shadow(0 0 4px #fedc4580);
  transform: scale(1.04);
}

.header__logo-image {
  width: 150px;
}

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

.header__desktop-navigation {
  width: auto;
}

.header__list {
  align-items: center;
  gap: 30px;
  display: flex;
}

.header__item {
  position: relative;
}

.header__link {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  padding-bottom: 4px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  display: inline-flex;
  position: relative;
}

.header__link:after {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), opacity .3s;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.header__link:hover {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

.header__link:hover:after {
  opacity: 1;
  transform: translateX(-50%)scaleX(1);
}

.header__link:hover .header__chevron {
  transform: rotate(180deg);
}

.header__link.is-active {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

.header__link.is-active:after {
  opacity: 1;
  transform: translateX(-50%)scaleX(1);
}

.header__chevron {
  color: #fff;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.header__dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(145deg, #16140e, #0d0d0a);
  border: 1px solid #fedc4540;
  border-radius: 8px;
  min-width: 190px;
  padding: 2px 0;
  transition: opacity .22s, transform .22s cubic-bezier(.22, .61, .36, 1), visibility .22s;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%)translateY(-6px);
  box-shadow: 0 20px 50px #000000b3, 0 0 0 1px #fedc450d, inset 0 1px #fedc451a;
}

.header__dropdown:before {
  content: "";
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  height: 1px;
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
}

.header__dropdown li + li {
  border-top: 1px solid #fedc4514;
}

.header__item.is-dropdown-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%)translateY(0);
}

.header__item.is-dropdown-open .header__link {
  color: #ebbc55;
}

.header__item.is-dropdown-open .header__link .header__chevron {
  transform: rotate(180deg);
}

.header__dropdown-link {
  color: #fffc;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 10px 20px;
  font-family: Trajan, sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  transition: color .2s, background .2s, padding-left .2s;
  display: block;
}

.header__dropdown-link:hover {
  color: #ebbc55;
  background: #fedc450f;
  padding-left: 26px;
}

.header__buttons-wrapper {
  align-items: center;
  gap: 10px;
  display: flex;
}

.header__button {
  width: 100%;
}

@media screen and (width <= 374px) {
  .header__button {
    font-size: 0.8rem;
  }
}

.header__mobile-wrapper {
  display: none;
}

@media screen and (width <= 1024px) {
  .header__mobile-wrapper {
    justify-content: space-between;
    align-items: center;
    gap: 0 40px;
    display: flex;
  }
}

@media screen and (width <= 768px) {
  .header__mobile-wrapper {
    gap: 0 20px;
  }
}

@media screen and (width >= 374px) {
  .header__mobile-wrapper {
    gap: 0 10px;
  }
}

.header__mobile-left {
  align-items: center;
  gap: 16px;
  display: flex;
}

.header__mobile-right {
  align-items: center;
  gap: 10px;
  display: flex;
}

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

  .header__button-mob {
    padding: 12px 16px 10px;
    font-size: .8rem;
  }
}

.header__button-mob--display {
  display: none;
}

@media screen and (width >= 374px) {
  .header__button-mob--display {
    display: inline-block;
  }
}

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

.header__hamburger-menu span {
  will-change: transform, opacity, width;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  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: 100%;
  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__backdrop.is-show {
  opacity: 1;
  visibility: visible;
}

.header__navigation {
  z-index: 99;
  background: #000;
  border-right: 1px solid #fedc4533;
  flex-direction: column;
  align-items: center;
  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;
  overflow-y: auto;
  transform: translateX(-100%);
  box-shadow: 0 10px 40px #000c;
}

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

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

.header__nav-close:hover {
  color: #fedc45;
  background: #fedc451f;
  transform: rotate(90deg);
}

.header__nav-drawer {
  gap: 30px;
  width: 100%;
  margin: 24px 0 50px;
  display: grid;
}

@media screen and (width <= 576px) {
  .header__nav-drawer {
    margin-bottom: 40px;
  }
}

.header__nav-item {
  border-bottom: 1px solid #fedc4526;
  width: 100%;
  transition: background .2s;
}

.header__nav-item:hover .header__nav-link {
  color: #ebbc5580;
}

.header__nav-link {
  color: #fff;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px 10px;
  font-family: Trajan, sans-serif;
  font-size: 1rem;
  transition: color .2s;
  display: flex;
}

.header__nav-link:hover, .header__nav-link.is-active {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-family: TrajanBold, sans-serif;
}

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

.header__nav-link-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header__nav-link-row .header__nav-link {
  flex: 1;
  padding-bottom: 0;
}

.header__nav-toggle {
  cursor: pointer;
  color: #ffffffb3;
  background: none;
  border: none;
  outline: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: -4px;
  transition: color .2s, background .2s;
  display: inline-flex;
}

.header__acc-chevron {
  color: #ffffffb3;
  flex-shrink: 0;
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
}

.header__nav-submenu {
  max-height: 0;
  transition: max-height .35s cubic-bezier(.22, .61, .36, 1);
  overflow: hidden;
}

.header__nav-sublink {
  color: #ffffffb3;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-left: 2px solid #fedc454d;
  margin-left: 14px;
  padding: 10px 20px 10px 28px;
  font-family: Trajan, sans-serif;
  font-size: .85rem;
  transition: color .2s, border-color .2s, padding-left .2s;
  display: block;
}

.header__nav-sublink:hover {
  color: #fedc45;
  border-left-color: #fedc45;
  padding-left: 34px;
}

.header__nav-item.is-accordion-open .header__acc-chevron {
  transform: rotate(180deg);
}

.header__nav-item.is-accordion-open .header__nav-submenu {
  max-height: 400px;
  padding-bottom: 24px;
}

.header__button-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  display: flex;
}

.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);
}

.footer {
  background-color: #0d0d0a;
  border-top: .5px solid #fedc4580;
  width: 100%;
  height: auto;
  padding: 50px 4%;
  overflow: hidden;
  box-shadow: 0 2px 30px #fedc451f, 0 1px #fedc4514;
}

.footer__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.footer__top-content {
  border-bottom: 1px solid #4b4548;
  justify-content: space-between;
  align-items: center;
  gap: 0 100px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  display: flex;
}

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

.footer__brand-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 50%;
  display: flex;
}

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

.footer__logo {
  width: 150px;
  display: block;
}

.footer__logo-image {
  width: 150px;
}

.footer__logo-image:hover {
  filter: drop-shadow(0 0 4px #fedc4580);
  transform: scale(1.04);
}

.footer__copyright-bar {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  display: flex;
  position: relative;
}

.footer__copyright-bar:before {
  content: "";
  background: linear-gradient(to right, #0000 0%, #815300 8%, #fedc45 30% 70%, #815300 92%, #0000 100%);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.footer__copyright-text {
  z-index: 1;
  color: #ebbc55;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0d0d0a;
  padding: 0 10px;
  font-family: Trajan, sans-serif;
  font-size: .9rem;
  position: relative;
}

.footer__quick-links {
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer__quick-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 80px;
    padding-inline: 20px;
  }
}

.footer__header-link {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-family: TrajanBold, sans-serif;
}

@media screen and (width <= 768px) {
  .footer__header-link {
    text-align: center;
  }
}

.footer__links-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (width <= 576px) {
  .footer__links-list {
    flex-flow: column;
    gap: 40px;
  }
}

.footer__item-link {
  position: relative;
}

@media screen and (width <= 768px) {
  .footer__item-link {
    text-align: center;
  }
}

.footer__link {
  color: #fff;
  text-align: start;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding-bottom: 2px;
  font-family: Candara, sans-serif;
  font-size: .8rem;
  display: inline-flex;
  position: relative;
}

.footer__link--unlink {
  color: #fedc45;
  cursor: unset;
}

.footer__link:after {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), opacity .3s;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.footer__link:hover {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

.footer__link:hover:after {
  opacity: 1;
  transform: translateX(-50%)scaleX(1);
}

.footer__son-license-text {
  width: 100%;
}

@media screen and (width <= 768px) {
  .footer__son-license-text {
    margin-bottom: 70px;
  }
}

.footer__mobile {
  display: none;
}

@media screen and (width <= 768px) {
  .footer__mobile {
    z-index: 10;
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

.footer__mobile-container {
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(160deg, #1e1005 0%, #47320a 60%, #1a0e04 100%);
  border-block: .5px solid #d4aa5a59;
  padding: 6px 4px;
  transition: padding .3s, margin .3s, opacity .3s;
  box-shadow: 0 -2px 12px #0009, inset 0 1px #d4aa5a1f;
}

.footer__mobile-container.is-shrunk {
  opacity: .95;
  padding: 4px;
}

.footer__mobile-nav {
  align-items: stretch;
  display: flex;
}

.footer__mobile-item {
  border-radius: 999px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 4px 0;
  transition: background .2s, transform .15s;
  display: flex;
  position: relative;
}

.footer__mobile-item:not(:last-child):after {
  content: "";
  background: linear-gradient(#0000, #ebbc55 40% 60%, #0000);
  width: 1px;
  height: 60%;
  position: absolute;
  top: 20%;
  right: 0;
}

.footer__mobile-item:active {
  background: #d4aa5a26;
}

.footer__mobile-icon {
  width: 28px;
  height: 28px;
  transition: width .3s, height .3s;
  position: relative;
}

.is-shrunk .footer__mobile-icon {
  width: 28px;
  height: 28px;
}

.footer__mobile-item.active .footer__mobile-icon img, .footer__mobile-item:hover .footer__mobile-icon img {
  filter: sepia() saturate(3) hue-rotate(5deg) brightness(1.5) drop-shadow(0 0 5px #e8c46ae6);
}

.footer__mobile-label {
  color: #fedc4599;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: MinionBold, sans-serif;
  font-size: .6rem;
  transition: font-size .3s, opacity .3s;
}

.is-shrunk .footer__mobile-label {
  opacity: 0;
  font-size: 0;
}

.footer__mobile-item.active .footer__mobile-label, .footer__mobile-item:hover .footer__mobile-label {
  color: #fedc45;
}

.main-wkuk {
  background-color: #0d0d0a;
  width: 100%;
  height: 100%;
}

.main-content {
  width: 100%;
  height: 100%;
  padding-top: 95px;
  overflow: hidden;
}

@media screen and (width <= 576px) {
  .main-content {
    padding-top: 75px;
  }
}

.page-divider {
  background: url("../images/frontpage/header-crown.png") center / contain no-repeat;
  width: 650px;
  height: 100px;
  margin-block: 80px;
  margin-inline: auto;
}

@media screen and (width <= 1024px) {
  .page-divider {
    width: 100%;
    max-width: 400px;
    margin-block: 40px;
  }
}

@media screen and (width <= 576px) {
  .page-divider {
    margin-block: 20px;
  }
}

.section-bg {
  background: url("../images/bg/wk-uk-main-background.jpg") center / cover no-repeat;
}

.section-bg-reverse {
  background: url("../images/bg/wk-uk-main-background-reverse-flipped.jpg") center / cover no-repeat;
}

.section-header {
  color: #f0ece4;
  text-align: center;
  font-family: MinionBold, sans-serif;
  font-size: 4.2rem;
}

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

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

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

.hero {
  width: 100%;
  height: auto;
  margin-top: 90px;
  overflow: hidden;
}

@media screen and (width <= 576px) {
  .hero {
    margin-top: 75px;
  }
}

@media screen and (width >= 1513px) {
  .hero {
    height: 80vh;
  }
}

.hero__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__main-cta-banner {
  width: 100%;
  height: auto;
}

.hero__banner {
  width: 100%;
}

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

.hero__banner-mob {
  width: 100%;
  height: auto;
  display: none;
}

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

.tnc {
  background-color: #0d0d0acc;
  width: 100%;
  height: auto;
  padding: 20px 4%;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .tnc {
    padding: 10px 4%;
    bottom: 0;
  }
}

.tnc__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.tnc__text-wrapper {
  text-align: center;
}

.tnc__paragraph {
  text-align: center;
  font-size: .85rem;
  line-height: 1.7;
}

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

.casino-info {
  width: 100%;
  padding: 100px 4%;
}

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

@media screen and (width <= 768px) {
  .casino-info {
    padding: 1px 40px 4%;
  }
}

.casino-info__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

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

.casino-info__list {
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
  overflow: hidden;
}

@media screen and (width <= 576px) {
  .casino-info__list {
    gap: 10px;
  }
}

.casino-info__item {
  clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
  background-color: #0f1110;
  width: 300px;
  height: auto;
  transition: box-shadow .3s, background-color .3s;
  position: relative;
  box-shadow: 0 4px 6px #0000001a;
}

@media screen and (width <= 1024px) {
  .casino-info__item {
    width: 200px;
  }
}

@media screen and (width <= 576px) {
  .casino-info__item {
    width: 100px;
  }
}

.casino-info__item:before {
  content: "";
  clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
  z-index: 0;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}

.casino-info__item:after {
  content: "";
  clip-path: polygon(22px 0%, 100% 0%, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0% 100%, 0% 22px);
  z-index: 1;
  background-color: #0f1110;
  transition: background-color .3s;
  position: absolute;
  inset: 2px;
}

.casino-info__item:hover {
  box-shadow: 0 0 10px 2px #e3d0388c, 0 0 28px 6px #e3d0384d, 0 0 55px 10px #e3d0381f;
}

.casino-info__item:hover:before {
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}

.casino-info__item:hover:after {
  background-color: #131712;
}

.casino-info__item:hover .casino-info__item-text {
  color: #fedc45;
}

.casino-info__item:active, .casino-info__item.is-active {
  box-shadow: 0 0 6px 2px #ffdc28e6, 0 0 18px 5px #e3d038a6, 0 0 40px 10px #e3d03859, 0 0 80px 20px #e3d03826;
}

.casino-info__item:active:before, .casino-info__item.is-active:before {
  background: linear-gradient(135deg, #ffe84d, #f5d020, #ffe84d);
  animation: 1.5s ease-in-out infinite borderPulse;
}

.casino-info__item:active:after, .casino-info__item.is-active:after {
  background-color: #161b13;
}

.casino-info__item-content {
  z-index: 2;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  display: flex;
  position: relative;
}

@media screen and (width <= 1024px) {
  .casino-info__item-content {
    flex-direction: column;
    gap: 2px;
    padding: 10px;
  }
}

.casino-info__item-text {
  color: #ffffffb3;
  text-transform: uppercase;
  font-family: Trajan, sans-serif;
  font-size: 1.3rem;
}

@media screen and (width <= 1024px) {
  .casino-info__item-text {
    font-size: 1rem;
  }
}

@media screen and (width <= 576px) {
  .casino-info__item-text {
    text-align: center;
    text-wrap: wrap;
    font-size: .8rem;
  }
}

.casino-info__item-image {
  flex-shrink: 0;
  width: 80px;
}

@media screen and (width <= 1024px) {
  .casino-info__item-image {
    width: 60px;
  }
}

.casino-info__header {
  margin-bottom: 50px;
}

@media screen and (width <= 768px) {
  .casino-info__header {
    margin-bottom: 30px;
  }
}

@media screen and (width <= 576px) {
  .casino-info__header {
    margin-bottom: 20px;
  }
}

.casino-info__card-list {
  grid-template-columns: repeat(2, 550px);
  justify-content: center;
  gap: 40px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .casino-info__card-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media screen and (width <= 768px) {
  .casino-info__card-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media screen and (width <= 576px) {
  .casino-info__card-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: flex;
  }
}

.casino-info__card-item {
  width: 100%;
  min-height: 280px;
  position: relative;
}

@media screen and (width <= 1024px) {
  .casino-info__card-item {
    min-height: 220px;
  }
}

@media screen and (width <= 768px) {
  .casino-info__card-item {
    min-height: 180px;
  }
}

@media screen and (width <= 576px) {
  .casino-info__card-item {
    min-height: 160px;
  }
}

.casino-info__card-item:first-child {
  background: url("../images/frontpage/new-card-jackpot.png") center / contain no-repeat;
}

.casino-info__card-item:nth-child(2) {
  background: url("../images/frontpage/new-card-new.png") center / contain no-repeat;
}

.casino-info__card-item:nth-child(3) {
  background: url("../images/frontpage/new-card-promotions.png") center / contain no-repeat;
}

.casino-info__card-item:nth-child(4) {
  background: url("../images/frontpage/new-card-live.png") center / contain no-repeat;
}

.casino-info__card-text {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 1024px) {
  .casino-info__card-text {
    width: 200px;
    left: 30%;
  }
}

@media screen and (width <= 768px) {
  .casino-info__card-text {
    width: 180px;
    left: 35%;
  }
}

@media screen and (width <= 576px) {
  .casino-info__card-text {
    width: 160px;
    left: 35%;
  }
}

.casino-info__card-header {
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #0000004d;
  margin-bottom: 10px;
  font-size: 2rem;
}

@media screen and (width <= 1024px) {
  .casino-info__card-header {
    font-size: 1.4rem;
  }
}

@media screen and (width <= 768px) {
  .casino-info__card-header {
    font-size: 1.2rem;
  }
}

@media screen and (width <= 576px) {
  .casino-info__card-header {
    font-size: 1.1rem;
  }
}

.casino-info__card-desc {
  color: #fffc;
  text-shadow: 2px 2px 4px #0000004d;
  font-size: 1.4rem;
}

@media screen and (width <= 1024px) {
  .casino-info__card-desc {
    font-size: 1rem;
  }
}

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

@media screen and (width <= 576px) {
  .casino-info__card-desc {
    font-size: .8rem;
  }
}

.home-games {
  width: 100%;
  height: auto;
  padding: 100px 4% 30px;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .home-games {
    padding: 100px 4%;
  }
}

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

@media screen and (width <= 576px) {
  .home-games {
    padding: 40px 4% 20px;
    overflow: visible;
  }
}

.home-games__container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

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

.home-games__header {
  margin-bottom: 30px;
}

@media screen and (width <= 576px) {
  .home-games__header {
    margin-bottom: 20px;
  }
}

.home-games__content {
  height: auto;
}

.home-games__nav-tabs {
  z-index: 0;
  border: none;
  border-radius: 999px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 6px;
  display: flex;
  position: relative;
}

.home-games__nav-tabs:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 99px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

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

.home-games__tab {
  color: #ffffff73;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 999px;
  outline: none;
  padding: 16px 24px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: color .25s, background .25s, border-color .25s, transform .15s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.home-games__tab:after {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  border-radius: 2px;
  width: 40%;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), opacity .3s;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.home-games__tab:hover {
  color: #fff;
  background: #fedc4514;
  border-color: #fedc4559;
  transform: translateY(-1px);
}

.home-games__tab:hover:after {
  opacity: .6;
  transform: translateX(-50%)scaleX(1);
}

.home-games__tab:active {
  transform: translateY(1px)scale(.97);
}

.home-games__tab--active {
  color: #fff;
  background: linear-gradient(#bf365c 0%, #8e0119 50%, #bf365c 100%);
  border-color: #fedc45;
  font-weight: bold;
  box-shadow: 0 2px 14px #fedc454d;
}

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

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

.home-games__dropdown-trigger {
  color: #fff;
  text-transform: uppercase;
  z-index: 0;
  cursor: pointer;
  background: #0d0d0a;
  border: none;
  border-radius: 99px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: background .2s, box-shadow .2s, transform .15s;
  display: flex;
  position: relative;
}

.home-games__dropdown-trigger:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 99px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.home-games__dropdown-trigger:hover {
  background: #fedc4514;
  box-shadow: 0 0 0 1px #fedc4566;
}

.home-games__dropdown-trigger:active {
  transform: scale(.985);
}

.home-games__dropdown-icon {
  border-bottom: 2px solid #fedc45;
  border-right: 2px solid #fedc45;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  transition: transform .3s;
  transform: rotate(45deg);
}

.home-games__dropdown--open .home-games__dropdown-icon {
  transform: rotate(-135deg);
}

.home-games__dropdown-menu {
  z-index: 2;
  transform-origin: top;
  background: #0d0d0a;
  border: none;
  border-radius: 32px;
  width: 100%;
  padding: 30px 40px;
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  overflow: visible;
}

.home-games__dropdown-menu:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 32px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.home-games__dropdown--open .home-games__dropdown-menu {
  animation: .22s forwards dropdownSlideDown;
  display: block;
}

.home-games__dropdown-item {
  color: #ffffff73;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #4b454833;
  outline: none;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-family: Trajan, sans-serif;
  font-size: 1rem;
  transition: color .2s, padding-left .2s, transform .15s;
}

.home-games__dropdown-item:hover {
  color: #fff;
  background: #ffffff0d;
  padding-left: 6px;
}

.home-games__dropdown-item--active {
  color: #ebbc55cc;
  position: relative;
}

.home-games__dropdown-item--active:before {
  content: "";
  background: linear-gradient(135deg, #815300, #fedc45);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 25%;
  left: -16px;
  transform: translateY(-50%);
}

.home-games__dropdown-item:last-child {
  margin-bottom: 0;
}

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

@media screen and (width >= 1025px) {
  .home-games__content-wrapper {
    grid-template-rows: 220px 220px;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    display: grid;
  }
}

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

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

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

.home-games__game {
  aspect-ratio: 1;
  scroll-snap-align: start;
  opacity: 0;
  background: #111;
  border-radius: 28px;
  width: 100%;
  height: 100%;
  animation: .55s forwards gameFadeIn;
  position: relative;
  overflow: hidden;
  transform: translateY(16px)scale(.97);
}

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

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

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

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

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

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

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

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

@media screen and (width <= 1024px) {
  .home-games__game {
    width: 220px;
    height: 220px;
    min-width: unset;
    aspect-ratio: 1;
    flex: none;
  }
}

@media screen and (width <= 576px) {
  .home-games__game {
    width: 200px;
    height: 200px;
  }
}

.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__overlay {
  opacity: 0;
  background: #000000bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

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

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

.home-games__btn {
  color: #fff;
  text-transform: uppercase;
  text-wrap: nowrap;
  background-position: 0 100%;
  background-size: 100% 200%;
  border: 1px solid #fedc45;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 25px 10px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: background-position .5s, transform .25s cubic-bezier(.22, .61, .36, 1), box-shadow .3s;
  display: flex;
}

.home-games__btn--play {
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
}

.home-games__btn--play:hover {
  background-position: 0 0;
  transform: scale(1.05);
  box-shadow: 0 4px 10px #fedc4559;
}

.home-games__btn--play a {
  color: #fff;
}

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

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

.home-games__game-name {
  color: #fff;
  text-align: center;
  letter-spacing: .06em;
  text-shadow: 2px 2px 4px #0000004d;
  margin-top: 20px;
  font-family: Minion, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

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

.home-games__info-btn {
  z-index: 3;
  backdrop-filter: blur(4px);
  color: #fedc45;
  cursor: pointer;
  opacity: 0;
  background: #000000a6;
  border: 1.5px solid #fedc45cc;
  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: #000;
  background: #fedc45;
  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-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 4px 12px 2px;
  font-family: TrajanBold, sans-serif;
  font-size: .7rem;
  line-height: 1.5;
  display: inline-block;
}

.home-games__badge--popular {
  color: #fff;
  text-shadow: 2px 2px 4px #0000004d;
  background: #815300;
  border: .5px solid #fedc45;
}

.home-games__badge--new {
  color: #fff;
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
  border: .5px solid #fedc45;
}

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

.home-games__skeleton {
  background: linear-gradient(90deg, #ffffff0a 25%, #ffffff1a 50%, #ffffff0a 75%) 0 0 / 200% 100%;
  border-radius: 28px;
  animation: 1.6s ease-in-out infinite skeletonShimmer;
  overflow: hidden;
}

@media screen and (width >= 1025px) {
  .home-games__skeleton:first-child {
    aspect-ratio: 16 / 8;
    grid-area: 1 / 1 / 2 / 3;
  }

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

  .home-games__skeleton:nth-child(3) {
    aspect-ratio: 16 / 8;
    grid-area: 1 / 5 / 2 / 7;
  }

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

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

  .home-games__skeleton:nth-child(6) {
    aspect-ratio: 1;
    grid-area: 2 / 5 / 3 / 6;
  }

  .home-games__skeleton:nth-child(7) {
    aspect-ratio: 1;
    grid-area: 2 / 6 / 3 / 7;
  }
}

@media screen and (width <= 1024px) {
  .home-games__skeleton {
    aspect-ratio: 1;
    flex: none;
    width: 220px;
    height: 220px;
  }
}

@media screen and (width <= 576px) {
  .home-games__skeleton {
    width: 200px;
    height: 200px;
  }
}

.home-games__error {
  text-align: center;
  color: #9aa4af;
  grid-column: 1 / -1;
  padding: 40px;
  font-size: 1rem;
}

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

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

.game-providers {
  width: 100%;
  padding: 1px 4% 150px;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .game-providers {
    padding: 0 4% 100px;
  }
}

@media screen and (width <= 768px) {
  .game-providers {
    padding: 0 4% 80px;
  }
}

.game-providers__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.game-providers__header-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

@media screen and (width <= 576px) {
  .game-providers__header-wrapper {
    margin-block: 40px 30px;
  }
}

.game-providers__header {
  margin-bottom: 10px;
}

.game-providers__description {
  color: #ffffffb3;
  text-align: center;
  font-size: 1.3rem;
}

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

.game-providers__list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 576px) {
  .game-providers__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 300px;
    display: grid;
  }
}

.game-providers__logo-image {
  max-width: 150px;
}

@media screen and (width <= 576px) {
  .game-providers__logo-image {
    max-width: 120px;
  }
}

.home-jackpot {
  width: 100%;
  padding: 50px 4%;
  position: relative;
  overflow: hidden;
}

.home-jackpot:before {
  content: "";
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(100% 160%, #660000b3 0%, #66000073 30%, #6600001a 65%, #0000 100%);
  position: absolute;
  inset: 0;
}

.home-jackpot:after {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, #815300 0%, #fedc45 30% 70%, #815300 100%) top / 100% 1px no-repeat, linear-gradient(to right, #815300 0%, #fedc45 30% 70%, #815300 100%) bottom / 100% 1px no-repeat;
  position: absolute;
  inset: 0;
}

.home-jackpot__container {
  z-index: 2;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

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

.home-jackpot__content-wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  display: flex;
}

@media screen and (width <= 768px) {
  .home-jackpot__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.home-jackpot__content-text {
  flex-direction: column;
  align-items: center;
  width: 50%;
  display: flex;
}

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

@media screen and (width <= 768px) {
  .home-jackpot__content-text {
    justify-content: center;
  }
}

.home-jackpot__crown-image {
  width: 220px;
}

@media screen and (width <= 1024px) {
  .home-jackpot__crown-image {
    width: 180px;
  }
}

@media screen and (width <= 576px) {
  .home-jackpot__crown-image {
    width: 140px;
  }
}

.home-jackpot__content-header {
  text-shadow: 0 1px 3px #000c, 0 0 20px #fedc454d;
  margin-top: -20px;
}

.home-jackpot__content-description {
  color: #ffffffb3;
  text-align: center;
  font-size: 1.3rem;
}

.home-jackpot__content-prize {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px #000c, 0 0 20px #fedc454d;
  z-index: 3;
  background-color: #815300;
  width: 50%;
  padding: 20px;
  font-family: MinionBold, sans-serif;
  font-size: 5rem;
  position: relative;
}

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

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

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

.home-jackpot__content-prize {
  clip-path: polygon(26px 0%, 100% 0%, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0% 100%, 0% 26px);
  transition: box-shadow .3s, background-color .3s;
}

.home-jackpot__content-prize:before {
  content: "";
  clip-path: polygon(26px 0%, 100% 0%, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0% 100%, 0% 26px);
  z-index: 0;
  background: linear-gradient(to right, #fedc45 0%, #815300 25% 75%, #fedc45 100%);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.home-jackpot__content-prize:after {
  content: "";
  clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
  z-index: 1;
  background: radial-gradient(circle, #847728 40%, #47320a 100%);
  transition: background-color .3s;
  position: absolute;
  inset: 4px;
}

@media screen and (width <= 1024px) {
  .home-jackpot__content-prize {
    width: 100%;
  }
}

@media screen and (width <= 768px) {
  .home-jackpot__content-prize {
    max-width: 600px;
  }
}

.home-jackpot__prize {
  z-index: 3;
  position: relative;
}

.home-jackpot__prize-text {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px #000c, 0 0 20px #fedc454d;
  font-family: MinionBold, sans-serif;
  font-size: 5rem;
  position: relative;
}

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

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

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

.payment-options {
  width: 100%;
  padding: 150px 4%;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .payment-options {
    padding: 80px 4%;
  }
}

@media screen and (width <= 768px) {
  .payment-options {
    padding: 50px 4%;
  }
}

.payment-options__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.payment-options__header {
  margin-bottom: 10px;
}

.payment-options__description {
  color: #ffffffb3;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.3rem;
}

@media screen and (width <= 768px) {
  .payment-options__description {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
}

.payment-options__list {
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.payment-options__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.safe-gambling {
  background: url("../images/bg/bg-green-crop.png") center / cover no-repeat;
  border-block: .5px solid #fedc45;
  width: 100%;
  padding: 100px 4%;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .safe-gambling {
    padding: 80px 4%;
  }
}

@media screen and (width <= 576px) {
  .safe-gambling {
    background-position: 100%;
  }
}

.safe-gambling__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.safe-gambling__content-wrapper {
  justify-content: center;
  align-items: center;
  gap: 50px;
  display: flex;
}

@media screen and (width <= 768px) {
  .safe-gambling__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.safe-gambling__image {
  width: 50%;
  max-width: 350px;
}

@media screen and (width <= 1024px) {
  .safe-gambling__image {
    max-width: 250px;
  }
}

@media screen and (width <= 768px) {
  .safe-gambling__image {
    max-width: 180px;
  }
}

@media screen and (width <= 576px) {
  .safe-gambling__image {
    max-width: 140px;
  }
}

.safe-gambling__text-wrapper {
  width: 50%;
}

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

.safe-gambling__header {
  text-align: left;
}

@media screen and (width <= 768px) {
  .safe-gambling__header {
    text-align: center;
  }
}

.safe-gambling__description {
  color: #ffffffb3;
  text-align: left;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

@media screen and (width <= 768px) {
  .safe-gambling__description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
}

.safe-gambling__cta-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (width <= 768px) {
  .safe-gambling__cta-wrapper {
    justify-content: center;
  }
}

.wk-experience {
  width: 100%;
  padding: 100px 4% 0;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .wk-experience {
    padding: 80px 4% 0;
  }
}

@media screen and (width <= 768px) {
  .wk-experience {
    padding: 50px 4% 0;
  }
}

.wk-experience__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.wk-experience__content-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.wk-experience__header-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
}

@media screen and (width <= 1024px) {
  .wk-experience__header-wrapper {
    max-width: 700px;
  }
}

.wk-experience__header {
  margin-bottom: 10px;
}

@media screen and (width <= 576px) {
  .wk-experience__header {
    margin-bottom: 20px;
  }
}

.wk-experience__description {
  color: #ffffffb3;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
}

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

.home-faqs {
  width: 100%;
  padding: 0 4% 100px;
  overflow: hidden;
}

@media screen and (width <= 1024px) {
  .home-faqs {
    padding: 0 4% 80px;
  }
}

@media screen and (width <= 576px) {
  .home-faqs {
    padding: 0 4% 50px;
  }
}

.home-faqs__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.home-faqs__content-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.home-faqs__header {
  margin-bottom: 50px;
}

@media screen and (width <= 768px) {
  .home-faqs__header {
    margin-bottom: 30px;
  }
}

.home-faqs__list {
  flex-direction: column;
  gap: 16px;
  width: 1200px;
  margin-bottom: 50px;
  display: flex;
}

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

.home-faqs__item {
  z-index: 0;
  transition: border-color .25s;
  position: relative;
  overflow: hidden;
  background-color: #0D0D0A;
  border-radius: 22px;
}

.home-faqs__item:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 22px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.home-faqs__item--open, .home-faqs__item:has([aria-expanded="true"]) {
  border-color: #fedc45cc;
}

.home-faqs__question {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  display: flex;
}

.home-faqs__icon {
  color: #c9a84c;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.home-faqs__icon svg {
  width: 100%;
  height: 100%;
}

.home-faqs__question-text {
  color: #fff;
  text-align: left;
  flex: 1;
  font-family: Candara, sans-serif;
  font-size: 1.4rem;
}

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

.home-faqs__chevron {
  color: #c9a84c;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: transform .3s;
}

.home-faqs__chevron svg {
  width: 100%;
  height: 100%;
}

[aria-expanded="true"] .home-faqs__chevron {
  transform: rotate(180deg);
}

.home-faqs__answer {
  max-height: 0;
  transition: max-height .35s;
  overflow: hidden;
}

.home-faqs__answer-inner {
  padding: 0 24px 24px;
}

.home-faqs__answer-text {
  color: #fff9;
  text-align: start;
  border-top: 1px solid #fedc454d;
  margin: 0;
  padding-top: 24px;
  font-family: Candara, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

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

@keyframes borderPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .75;
  }
}

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

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

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

@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px)scaleY(.96);
  }

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

.games {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.games__bottom-section {
  padding: 50px 4%;
}

.games__bottom-container {
  max-width: 1440px;
  margin-inline: auto;
}

.games__search-wrapper {
  z-index: 0;
  margin-inline: auto;
  background: #ffffff14;
  border: 1px solid #fedc454d;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  width: 30%;
  margin-bottom: 50px;
  padding: 12px 24px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.games__search-wrapper:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 999px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

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

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

.games__search-input {
  color: #fff;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 6px;
  font-family: Trajan, sans-serif;
  font-size: 1rem;
}

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

.games__search-button {
  color: #fedc45;
  cursor: pointer;
  background: none;
  border: none;
  width: 20px;
}

.games__nav-tabs {
  z-index: 0;
  border: none;
  border-radius: 999px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 6px;
  display: flex;
  position: relative;
}

.games__nav-tabs:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 99px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

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

.games__tab {
  color: #ffffff73;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 999px;
  outline: none;
  padding: 16px 24px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: color .25s, background .25s, border-color .25s, transform .15s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.games__tab:after {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  border-radius: 2px;
  width: 40%;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), opacity .3s;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.games__tab:hover {
  color: #fff;
  background: #fedc4514;
  border-color: #fedc4559;
  transform: translateY(-1px);
}

.games__tab:hover:after {
  opacity: .6;
  transform: translateX(-50%)scaleX(1);
}

.games__tab:active {
  transform: translateY(1px)scale(.97);
}

.games__tab--active {
  color: #fff;
  background: linear-gradient(#bf365c 0%, #8e0119 50%, #bf365c 100%);
  border-color: #fedc45;
  font-weight: bold;
  box-shadow: 0 2px 14px #fedc454d;
}

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

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

.games__dropdown-trigger {
  color: #fff;
  text-transform: uppercase;
  z-index: 0;
  cursor: pointer;
  background: #0d0d0a;
  border: none;
  border-radius: 99px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: background .2s, box-shadow .2s, transform .15s;
  display: flex;
  position: relative;
}

.games__dropdown-trigger:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 99px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.games__dropdown-trigger:hover {
  background: #fedc4514;
  box-shadow: 0 0 0 1px #fedc4566;
}

.games__dropdown-trigger:active {
  transform: scale(.985);
}

.games__dropdown-icon {
  border-bottom: 2px solid #fedc45;
  border-right: 2px solid #fedc45;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  transition: transform .3s;
  transform: rotate(45deg);
}

.games__dropdown--open .games__dropdown-icon {
  transform: rotate(-135deg);
}

.games__dropdown-menu {
  z-index: 2;
  transform-origin: top;
  background: #0d0d0a;
  border: none;
  border-radius: 32px;
  width: 100%;
  padding: 30px 40px;
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  overflow: visible;
}

.games__dropdown-menu:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 32px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.games__dropdown--open .games__dropdown-menu {
  animation: .22s forwards dropdownSlideDown;
  display: block;
}

.games__dropdown-item {
  color: #fffc;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #4b454833;
  outline: none;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-family: Trajan, sans-serif;
  font-size: 1rem;
  transition: color .2s, padding-left .2s, transform .15s;
}

.games__dropdown-item:hover {
  color: #fff;
  background: #ffffff0d;
  padding-left: 6px;
}

.games__dropdown-item--active {
  color: #ebbc55cc;
  position: relative;
}

.games__dropdown-item--active:before {
  content: "";
  background: linear-gradient(135deg, #815300, #fedc45);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 25%;
  left: -16px;
  transform: translateY(-50%);
}

.games__dropdown-item:last-child {
  margin-bottom: 0;
}

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

.games__content-wrapper {
  grid-template-rows: 250px 250px;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 16px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .games__content-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-template-rows: unset;
  }
}

@media screen and (width <= 768px) {
  .games__content-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media screen and (width <= 576px) {
  .games__content-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.games__game {
  aspect-ratio: 1;
  scroll-snap-align: start;
  opacity: 0;
  background: #111;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  animation: .55s forwards gameFadeIn;
  position: relative;
  overflow: hidden;
  transform: translateY(16px)scale(.97);
}

@media screen and (width >= 1025px) {
  .games__game--sq-big {
    grid-area: span 2 / span 2;
  }
}

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

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

.games__overlay {
  opacity: 0;
  background: #000000bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.games__game:hover .games__overlay {
  opacity: 1;
}

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

.games__btn {
  color: #fff;
  text-transform: uppercase;
  text-wrap: nowrap;
  background-position: 0 100%;
  background-size: 100% 200%;
  border: 1px solid #fedc45;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 25px 10px;
  font-family: TrajanBold, sans-serif;
  font-size: 1rem;
  transition: background-position .5s, transform .25s cubic-bezier(.22, .61, .36, 1), box-shadow .3s;
  display: flex;
}

.games__btn--play {
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
}

.games__btn--play:hover {
  background-position: 0 0;
  transform: scale(1.05);
  box-shadow: 0 4px 10px #fedc4559;
}

.games__btn--play a {
  color: #fff;
}

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

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

.games__game-name {
  color: #fff;
  text-align: center;
  letter-spacing: .06em;
  text-shadow: 2px 2px 4px #0000004d;
  margin-top: 20px;
  font-family: Minion, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

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

.games__info-btn {
  z-index: 3;
  backdrop-filter: blur(4px);
  color: #fedc45;
  cursor: pointer;
  opacity: 0;
  background: #000000a6;
  border: 1.5px solid #fedc45cc;
  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: #000;
  background: #fedc45;
  transform: scale(1.1);
}

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

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

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

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

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

.games__badge--popular {
  color: #fff;
  text-shadow: 2px 2px 4px #0000004d;
  background: #815300;
  border: .5px solid #fedc45;
}

.games__badge--new {
  color: #fff;
  background-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
  border: .5px solid #fedc45;
}

@media screen and (width <= 576px) {
  .games__badge {
    padding: 4px 10px 2px;
    font-size: .6rem;
  }
}

.games__skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #ffffff0a 25%, #ffffff1a 50%, #ffffff0a 75%) 0 0 / 200% 100%;
  border-radius: 12px;
  width: 100%;
  height: 250px;
  animation: 1.6s ease-in-out infinite skeletonShimmer;
  overflow: hidden;
}

@media screen and (width >= 1025px) {
  .games__skeleton--big {
    grid-area: span 2 / span 2;
    height: 516px;
  }
}

@media screen and (width <= 1024px) {
  .games__skeleton {
    height: auto;
  }
}

.games__error {
  text-align: center;
  color: #9aa4af;
  grid-column: 1 / -1;
  padding: 40px;
  font-size: 1rem;
}

.games__load-more {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

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

.games__load-more-btn {
  cursor: pointer;
  user-select: none;
}

.games__no-results {
  text-align: center;
  color: #ffffff80;
  grid-column: 1 / -1;
  padding: 60px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.games__no-results strong {
  color: #fffc;
}

.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: #ebbc55 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: #fedc4580;
  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-image: linear-gradient(#8e0119 0%, #bf365c 50%, #8e0119 100%);
  border: 1px solid #fedc45;
  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;
  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;
}

.promo-page {
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (width <= 576px) {
  .promo-page__header-wrapper {
    z-index: 1;
    width: 100%;
    margin-top: 140px;
    position: relative;
  }

  .promo-page__hero-image {
    z-index: 0;
    width: 100%;
    max-width: 200px;
    position: absolute;
    top: 20px;
  }
}

.promo-page__bottom-section {
  padding: 100px 4%;
}

@media screen and (width <= 768px) {
  .promo-page__bottom-section {
    padding: 60px 4%;
  }
}

.promo-page__bottom-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.promo-page__content-list {
  grid-template-columns: repeat(2, minmax(300px, 550px));
  justify-content: center;
  gap: 60px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .promo-page__content-list {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}

@media screen and (width <= 768px) {
  .promo-page__content-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
  }
}

@media screen and (width <= 576px) {
  .promo-page__content-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.promo-page__content-item {
  z-index: 0;
  background-color: #0d0d0a;
  border: none;
  border-radius: 28px;
  width: 100%;
  height: 100%;
  transition: transform .15s, box-shadow .15s, filter .15s;
  position: relative;
  box-shadow: 0 0 15px #fedc4533;
}

.promo-page__content-item:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 28px;
  padding: 2px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.promo-page__content-item:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px #fedc4566;
}

.promo-page__content-item:active {
  filter: brightness(.97);
  transform: translateY(0);
  box-shadow: 0 0 10px #fedc4566;
}

@media screen and (width <= 1024px) {
  .promo-page__content-item {
    grid-column: unset;
  }
}

.promo-page__content-item:last-child {
	grid-column: 1 / span 2;
	justify-self: center;
	width: 100%;
	max-width: 500px;
	min-width: 300px;
}

@media screen and (width <= 768px) {
	.promo-page__content-item:last-child {
		max-width: 350px;
	}
}

@media screen and (width <= 576px) {
	.promo-page__content-item:last-child {
		grid-column: unset;
	}
}

.promo-page__content-link {
  height: 100%;
  display: block;
}

.promo-page__content-header {
  text-align: center;
  text-transform: uppercase;
  background-color: #8e0119;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (width <= 768px) {
  .promo-page__content-header {
    font-size: 1.6rem;
  }
}

.promo-page__content-banner {
  border-radius: 28px 28px 0 0;
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

.promo-page__text-wrapper {
  border-radius: 0 0 28px 28px;
  height: auto;
  padding: 40px 40px 60px;
}

@media screen and (width <= 576px) {
  .promo-page__text-wrapper {
    padding: 40px 40px 50px;
  }
}

.promo-page__content-subheader {
  color: #f0ece4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
  font-family: MinionBold, sans-serif;
  font-size: 1.8rem;
}

@media screen and (width <= 768px) {
  .promo-page__content-subheader {
    font-size: 1.2rem;
  }
}

.promo-page__content-description {
  color: #9a9186;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: .9rem;
  line-height: 1.6;
}

.promo-page__button-modal {
  z-index: 2;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.promo-modal {
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  transition: all .25s;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.promo-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.promo-modal__overlay {
  opacity: 0;
  background: linear-gradient(#000000d9, #000000f2);
  transition: opacity .25s;
  position: absolute;
  inset: 0;
}

.promo-modal.is-active .promo-modal__overlay {
  opacity: 1;
}

.promo-modal.is-active .promo-modal__content {
  opacity: 1;
  transform: translateY(0);
}

.promo-modal__content {
  opacity: 0;
  z-index: 2;
  background: #111;
  border-radius: 24px;
  width: min(90vw, 1200px);
  max-height: 90vh;
  padding: 32px;
  transition: all .25s;
  position: relative;
  overflow: hidden auto;
  transform: translateY(20px);
  box-shadow: 0 0 30px #ffb70033;
}

.promo-modal__content:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 24px;
  padding: 2px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.promo-modal__close {
  float: right;
  color: #fffc;
  z-index: 2;
  cursor: pointer;
  background: #ffffff2e;
  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;
}

.promo-modal__close:hover {
  color: #fff;
  background: #fedc4580;
}

.promo-modal__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.promo-modal__body {
  color: #fffc;
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.7;
}

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

.promo-modal__cta {
  width: fit-content;
  margin: 30px auto;
  display: block;
}

.promo-modal__eyebrown {
  color: #815300;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  font-size: 1.8rem;
}

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

.promo-modal__header {
  color: #fff;
  text-align: center;
  font-size: 3rem;
}

.promo-modal__header--highlight {
  color: #fedc45;
}

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

.promo-modal__paragraph {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.vip-page {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.vip-page__content {
  padding-bottom: 80px;
}

@media screen and (width <= 768px) {
  .vip-page__content {
    padding-bottom: 60px;
  }
}

@media screen and (width <= 576px) {
  .vip-page__content {
    flex-direction: column;
    padding-bottom: 0;
  }
}

.vip-page__header-wrapper {
  margin-top: 120px;
}

@media screen and (width <= 576px) {
  .vip-page__header-wrapper {
    margin-top: 150px;
  }
}

.vip-page__hero-image {
  max-width: 400px;
}

@media screen and (width <= 576px) {
  .vip-page__hero-image {
    max-width: 220px;
    position: absolute;
    top: -10px;
  }
}

.vip-page__bottom-section {
  padding: 100px 4%;
}

@media screen and (width <= 768px) {
  .vip-page__bottom-section {
    padding: 60px 4%;
  }
}

.vip-page__bottom-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.vip-page__content-list {
  grid-template-columns: repeat(3, minmax(300px, 500px));
  justify-content: center;
  gap: 40px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .vip-page__content-list {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}

@media screen and (width <= 768px) {
  .vip-page__content-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
  }
}

@media screen and (width <= 576px) {
  .vip-page__content-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.vip-page__content-item {
  z-index: 0;
  background-color: #0d0d0a;
  border: none;
  border-radius: 28px;
  width: 100%;
  height: 100%;
  transition: transform .15s, box-shadow .15s, filter .15s;
  position: relative;
  box-shadow: 0 0 15px #fedc4533;
}

.vip-page__content-item:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 28px;
  padding: 2px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.vip-page__content-item:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px #fedc4566;
}

.vip-page__content-item:active {
  filter: brightness(.97);
  transform: translateY(0);
  box-shadow: 0 0 10px #fedc4566;
}

@media screen and (width <= 1024px) {
  .vip-page__content-item {
    grid-column: unset;
  }
}

.vip-page__content-link {
  height: 100%;
  display: block;
}

.vip-page__content-header {
  text-align: center;
  text-transform: uppercase;
  background-color: #8e0119;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (width <= 768px) {
  .vip-page__content-header {
    font-size: 1.6rem;
  }
}

.vip-page__content-banner {
  border-radius: 28px 28px 0 0;
  width: 100%;
  height: 200px;
  display: block;
  overflow: hidden;
}

.vip-page__text-wrapper {
  border-radius: 0 0 28px 28px;
  height: auto;
  padding: 40px;
}

@media screen and (width <= 576px) {
  .vip-page__text-wrapper {
    padding: 30px;
  }
}

.vip-page__content-subheader {
  color: #ebbc55;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #0003;
  letter-spacing: 1.1px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  margin-bottom: 10px;
  font-family: MinionBold, sans-serif;
  font-size: 2rem;
}

@media screen and (width <= 768px) {
  .vip-page__content-subheader {
    font-size: 1.2rem;
  }
}

.vip-page__content-description {
  color: #9a9186;
  text-align: center;
  letter-spacing: 1.1px;
  font-size: .9rem;
  line-height: 1.6;
}

.vip-page__button-modal {
  z-index: 2;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.vip-page__policy {
  background: url("../images/bg/bg-about-us-2.png") center / cover no-repeat;
  border-top: 1px solid #fedc45;
  padding: 100px 4%;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .vip-page__policy {
    padding: 50px 4%;
  }
}

.vip-page__policy-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.vip-page__policy-header {
  text-align: center;
  text-shadow: 2px 2px 4px #0000004d;
  margin-bottom: 30px;
  font-size: 3rem;
}

.vip-page__policy-header--highlight {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

@media screen and (width <= 768px) {
  .vip-page__policy-header {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}

.vip-page__policy-text {
  text-align: center;
  text-shadow: 2px 2px 4px #0000004d;
  margin-block: 10px;
  font-size: 1.3rem;
}

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

.support-page {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.support-page__header {
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  -webkit-text-fill-color: transparent;
  background: #fff text;
  font-size: 4rem;
}

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

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

.support-page__contact-wrapper {
  flex-direction: column;
  margin-top: 20px;
  margin-left: 30px;
  display: flex;
}

@media screen and (width <= 768px) {
  .support-page__contact-wrapper {
    margin-left: 0;
  }
}

@media screen and (width <= 576px) {
  .support-page__contact-wrapper {
    align-items: center;
  }
}

.support-page__contact-details {
  align-items: center;
  gap: 20px;
  display: flex;
}

.support-page__contact-details--mb {
  margin-bottom: 20px;
}

@media screen and (width <= 576px) {
  .support-page__contact-details {
    gap: 10px;
  }
}

.support-page__contact-icon {
  width: 50px;
}

@media screen and (width <= 768px) {
  .support-page__contact-icon {
    width: 40px;
  }
}

.support-page__contact-title {
  text-transform: uppercase;
  font-size: 1.1rem;
}

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

.support-page__contact-link {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-family: Minion, sans-serif;
  font-size: 1.8rem;
}

@media screen and (width <= 768px) {
  .support-page__contact-link {
    font-size: 1.4rem;
  }
}

@media screen and (width <= 576px) {
  .support-page__contact-link {
    font-size: 1.2rem;
  }

  .support-page__hero-image {
    display: none;
  }
}

.support-page__bottom-section {
  padding: 100px 4%;
}

@media screen and (width <= 768px) {
  .support-page__bottom-section {
    padding: 60px 4%;
  }
}

.support-page__bottom-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.support-page__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3rem;
}

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

.support-page__help-list {
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  justify-content: center;
  gap: 40px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .support-page__help-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (width <= 768px) {
  .support-page__help-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (width <= 576px) {
  .support-page__help-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}

.support-page__help-item {
  z-index: 0;
  background-color: #0d0d0a;
  border-radius: 12px;
  position: relative;
}

.support-page__help-item:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 12px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.support-page__help-item:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px #fedc4566;
}

.support-page__help-item:active {
  filter: brightness(.97);
  transform: translateY(0);
  box-shadow: 0 0 10px #fedc4566;
}

.support-page__help-link {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 60px;
  display: flex;
}

@media screen and (width <= 1024px) {
  .support-page__help-link {
    padding: 50px;
  }
}

@media screen and (width <= 768px) {
  .support-page__help-link {
    flex-direction: row;
    justify-content: center;
    padding: 30px;
  }
}

.support-page__help-icon {
  width: 80px;
}

@media screen and (width <= 768px) {
  .support-page__help-icon {
    width: 70px;
  }
}

@media screen and (width <= 576px) {
  .support-page__help-icon {
    width: 60px;
  }
}

.support-page__text-wrapper {
  text-align: center;
  margin-top: 4px;
}

@media screen and (width <= 768px) {
  .support-page__text-wrapper {
    text-align: start;
    width: 60%;
  }
}

.support-page__text-header {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

@media screen and (width <= 768px) {
  .support-page__text-header {
    font-size: 1.4rem;
  }
}

@media screen and (width <= 576px) {
  .support-page__text-header {
    font-size: 1.2rem;
  }
}

.support-page__text {
  color: #fff9;
  font-family: Candara, sans-serif;
  font-size: 1rem;
}

.support-page__link {
  font-size: .9rem;
}

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

.support-page__link-arrow {
  display: none;
}

@media screen and (width <= 768px) {
  .support-page__link-arrow {
    font-size: 1.1rem;
    display: block;
  }
}

.support-page__arrow {
  font-size: 3rem;
}

.support-page__article-list {
  width: 100%;
  overflow: hidden;
}

.support-page__article-item {
  margin-inline: auto;
  max-width: 500px;
  margin-bottom: 50px;
  position: relative;
}

.support-page__article-item:before {
  content: "";
  border-bottom: 1px solid #ffffff0f;
  width: 80%;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.support-page__article-item:after {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #fedc45, #0000);
  border-radius: 2px;
  width: 80%;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), opacity .3s;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%)scaleX(1);
}

.support-page__article-item:hover {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

.support-page__article-item:hover:after {
  opacity: 1;
  transform: translateX(-50%)scaleX(1);
}

@media screen and (width <= 768px) {
  .support-page__article-item {
    max-width: 80%;
    margin-bottom: 20px;
  }
}

.support-page__article-link {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

@media screen and (width <= 768px) {
  .support-page__article-link {
    gap: 30px;
  }
}

.support-page__article-header {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media screen and (width <= 768px) {
  .support-page__article-header {
    gap: 15px;
  }
}

.support-page__article-icon {
  width: 40px;
}

@media screen and (width <= 768px) {
  .support-page__article-icon {
    width: 30px;
  }
}

.support-page__article-title {
  color: #f0ece4;
  font-family: Candara, sans-serif;
  font-size: 1.4rem;
}

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

.support-page__article-arrow {
  color: #fff;
  font-family: Candara, sans-serif;
  font-size: 1.8rem;
}

@media screen and (width <= 768px) {
  .support-page__article-arrow {
    font-size: 1.6rem;
  }
}

.support-inner {
  width: 100%;
  height: auto;
}

.support-inner__content-wrapper {
  padding-inline: 4%;
  padding-bottom: 50px;
}

@media screen and (width <= 768px) {
  .support-inner__content-wrapper {
    padding: 20px 4% 50px;
  }
}

.support-inner__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.support-inner__layout {
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 40px;
  display: grid;
}

@media screen and (width <= 768px) {
  .support-inner__layout {
    grid-template-columns: 1fr;
  }
}

.support-sidebar {
  background-color: #0d0d0a;
  border-radius: 4px;
  max-height: calc(100vh - 100px);
  position: sticky;
  top: 80px;
  overflow-y: auto;
}

@media screen and (width <= 768px) {
  .support-sidebar {
    border-bottom: 1px solid #c9a84c2e;
    max-height: none;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: static;
  }
}

.support-sidebar__container {
  padding: 20px;
}

.support-sidebar__header {
  border-bottom: 1px solid #c9a84c2e;
  margin-bottom: 4px;
  padding-bottom: 12px;
}

.support-sidebar__category-title {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #c9a84c;
  font-size: .7rem;
  font-weight: 700;
}

.support-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-sidebar__item {
  border-bottom: 1px solid #ffffff0f;
}

.support-sidebar__link {
  color: #9a9186;
  border-left: 2px solid #0000;
  padding: 20px 10px;
  font-size: .88rem;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
  display: block;
}

.support-sidebar__link:hover {
  color: #f0ece4;
  background: #ffffff08;
  text-decoration: none;
}

.support-sidebar__item--active .support-sidebar__link {
  color: #f0ece4;
  background: #c9a84c12;
  border-left-color: #c9a84c;
  font-weight: 500;
}

.support-inner__content {
  background-color: #0d0d0a;
  border-radius: 4px;
  min-width: 0;
  padding: 40px;
}

.support-inner__content-header {
  border-bottom: 1px solid #c9a84c2e;
  margin-bottom: 28px;
  padding-bottom: 16px;
}

.support-inner__title {
  color: #f0ece4;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.compliance-page {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.compliance-page__section {
  padding: 50px 4%;
}

.compliance-page__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.compliance-page__content {
  width: 100%;
  min-height: 300px;
}

.compliance-page__error {
  color: #8e0119;
  text-align: center;
  border: 1px dashed #8e0119;
  border-radius: 6px;
  padding: 2rem;
  font-size: .9rem;
}

.prose {
  color: #9a9186;
  font-size: 1rem;
  line-height: 2;
}

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

.prose > * + * {
  margin-top: 1.2em;
}

.prose h2 {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #f0ece4;
  border-bottom: 1px solid #c9a84c2e;
  margin-block: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}

.prose h3 {
  color: #f0ece4;
  margin-top: 1.75em;
  font-size: 1.2rem;
  font-weight: 600;
}

.prose p {
  color: #9a9186;
  font-size: 1.1rem;
  line-height: 2;
}

.prose a {
  color: #fff;
  margin-top: 20px;
}

.prose a:hover {
  color: #f0ece4;
}

.prose strong {
  color: #f0ece4;
  font-weight: 600;
}

.prose ul, .prose ol {
  padding-left: 1.4rem;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-top: .4em;
}

.prose li::marker {
  color: #c9a84c;
}

.prose li > ul, .prose li > ol {
  margin-top: .4em;
}

.prose img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin-block: 10px;
}

.prose img.aligncenter {
  margin-inline: auto;
}

.prose hr {
  border: none;
  border-top: 1px solid #c9a84c2e;
  margin-block: 2em;
}

.prose blockquote {
  color: #9a9186;
  border-left: 3px solid #c9a84c;
  margin-left: 0;
  padding-left: 1.2rem;
  font-style: italic;
}

.prose .payment-table-wrap {
  border: 1px solid #c9a84c2e;
  border-radius: 8px;
  margin-top: 1.4em;
  overflow-x: auto;
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  font-size: .85rem;
}

.prose thead tr {
  background: #c9a84c1f;
}

.prose thead th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c9a84c;
  white-space: nowrap;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 700;
}

.prose tbody tr {
  border-top: 1px solid #ffffff0f;
  transition: background .15s;
}

.prose tbody tr:hover {
  background: #ffffff08;
}

.prose tbody td {
  color: #9a9186;
  vertical-align: middle;
  padding: 11px 14px;
}

.prose td.payment-method {
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.prose td.payment-method img {
  object-fit: contain;
  width: auto;
  height: 22px;
}

.badge-instant {
  color: #c9a84c;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  display: inline-flex;
}

.badge-instant:before {
  content: "⚡";
  font-size: .7rem;
}

.min-amount {
  color: #f0ece4;
  font-weight: 500;
}

.prose .table-note {
  color: #5a554e;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  font-size: .75rem;
  display: flex;
}

.prose .table-note:before {
  content: "ⓘ";
  color: #c9a84c;
  flex-shrink: 0;
  margin-top: 1px;
}

.prose details {
  border: 1px solid #c9a84c2e;
  border-radius: 8px;
  margin-top: 1em;
  overflow: hidden;
}

.prose summary {
  cursor: pointer;
  color: #f0ece4;
  background: #141414;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  font-weight: 500;
  list-style: none;
  transition: background .15s;
  display: flex;
}

.prose summary:hover {
  background: #1a1a1a;
}

.prose summary:after {
  content: "+";
  color: #c9a84c;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.prose details[open] summary:after {
  content: "−";
}

.prose details > :not(summary) {
  background: #141414;
  border-top: 1px solid #ffffff0f;
  padding: 14px 16px;
}

.prose .wp-block-image {
  margin-top: 1.5em;
}

.prose .wp-block-table {
  overflow-x: auto;
}

.prose figure {
  margin: 0;
}

.prose figcaption {
  color: #5a554e;
  text-align: center;
  margin-top: 6px;
  font-size: .78rem;
}

.single-post {
  max-width: 800px;
}

.single-post__featured-image {
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.single-post__image {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}

.single-post__nav {
  border-top: 1px solid #c9a84c2e;
  justify-content: space-between;
  gap: 20px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
}

.single-post__nav a {
  color: #ebbc55;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
  transition: color .15s;
}

.single-post__nav a:hover {
  color: #fff;
}

.single-post__nav-prev {
  text-align: left;
}

.single-post__nav-next {
  text-align: right;
}

.single-post__meta {
  color: #4b4548;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid #c9a84c2e;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: .82rem;
  display: flex;
}

.single-post__meta a {
  color: #ebbc55;
}

.single-post__meta a:hover {
  color: #fff;
}

@media screen and (width <= 576px) {
  .single-post__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.about-page {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.about-page__hero-section {
  background: url("../images/bg/bg-about-us.png") center / cover no-repeat;
  padding: 50px 4% 0;
  position: relative;
}

.about-page__hero-section:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 0%, #000000d9 100%);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (width <= 768px) {
  .about-page__hero-section {
    background: url("../images/bg/AboutUs-HB-mobile.png") center / cover no-repeat;
  }
}

.about-page__hero-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.about-page__hero-content-wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
  position: relative;
}

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

.about-page__hero-text-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  padding-bottom: 50px;
  display: flex;
}

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

.about-page__main-header {
  text-align: center;
  text-shadow: 2px 2px 4px #0000004d;
  letter-spacing: .04em;
  font-family: MinionBold, sans-serif;
  font-size: 4rem;
}

@media screen and (width <= 1024px) {
  .about-page__main-header {
    font-size: 3rem;
  }
}

@media screen and (width <= 768px) {
  .about-page__main-header {
    font-size: 2.4rem;
  }
}

.about-page__header-divider {
  margin-inline: auto;
  max-width: 400px;
  margin-bottom: 20px;
}

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

.about-page__main-description {
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
  font-size: 1.2rem;
}

@media screen and (width <= 1024px) {
  .about-page__main-description {
    font-size: 1rem;
  }
}

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

.about-page__main-text-wrapper {
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  display: grid;
}

@media screen and (width <= 768px) {
  .about-page__main-text-wrapper {
    padding-block: 20px;
    background-color: #1a1411cc;
    border-radius: 22px;
    padding-left: 20px;
  }
}

@media screen and (width <= 576px) {
  .about-page__main-text-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-page__main-text-item {
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.about-page__main-text-item:not(:last-child):after {
  content: "";
  background: linear-gradient(#0000, #ebbc55 40% 60%, #0000);
  width: .4px;
  height: 60%;
  position: absolute;
  top: 20%;
  right: 0;
}

@media screen and (width <= 576px) {
  .about-page__main-text-item:nth-child(2):after {
    display: none;
  }
}

.about-page__main-icon {
  width: 40px;
}

.about-page__main-title {
  color: #ebbc55;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  margin-top: 8px;
  font-size: 1.4rem;
}

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

.about-page__main-caption {
  color: #fff9;
  text-align: center;
  margin-top: 2px;
  font-size: 1rem;
}

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

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

.about-page__hero-image--desktop {
  width: 40%;
  max-width: 600px;
  display: block;
}

@media screen and (width <= 1024px) {
  .about-page__hero-image--desktop {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media screen and (width <= 768px) {
  .about-page__hero-image--desktop {
    display: none;
  }
}

.about-page__hero-image--mobile {
  display: none;
}

@media screen and (width <= 768px) {
  .about-page__hero-image--mobile {
    width: 100%;
    max-width: 375px;
    display: none;
  }
}

.about-page__commitment-section {
  padding: 100px 4%;
}

@media screen and (width <= 768px) {
  .about-page__commitment-section {
    padding: 50px 4%;
  }
}

.about-page__commitment-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.about-page__header {
  text-align: center;
  text-shadow: 2px 2px 4px #0000004d;
  letter-spacing: .04em;
  margin-bottom: 40px;
  font-family: MinionBold, sans-serif;
  font-size: 3.8rem;
}

.about-page__header--affiliate {
  text-align: start;
  margin-bottom: 20px;
}

@media screen and (width <= 768px) {
  .about-page__header--affiliate {
    text-align: center;
  }
}

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

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

.about-page__commitment-cards-list {
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 10px;
  display: grid;
}

@media screen and (width <= 1024px) {
  .about-page__commitment-cards-list {
    grid-template-columns: repeat(1, minmax(280px, 800px));
  }
}

.about-page__commitment-card {
  z-index: 0;
  background-color: #0d0d0a;
  border-radius: 22px;
  max-width: 280px;
  padding: 30px;
  position: relative;
}

.about-page__commitment-card:before {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 22px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

@media screen and (width <= 1024px) {
  .about-page__commitment-card {
    flex-direction: row;
    max-width: 100%;
  }
}

.about-page__card-desktop-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

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

@media screen and (width <= 576px) {
  .about-page__card-desktop-wrapper {
    gap: 10px;
    display: flex;
  }
}

.about-page__card-tablet-wrapper {
  display: none;
}

@media screen and (width <= 1024px) {
  .about-page__card-tablet-wrapper {
    display: block;
  }
}

@media screen and (width <= 576px) {
  .about-page__card-tablet-wrapper {
    display: none;
  }
}

.about-page__card-top {
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.about-page__card-icon {
  width: 60px;
}

@media screen and (width <= 768px) {
  .about-page__card-icon {
    width: 40px;
  }
}

.about-page__card-title {
  color: #ebbc55;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
  font-size: 1.6rem;
}

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

@media screen and (width <= 576px) {
  .about-page__card-title {
    font-size: 1.2rem;
  }
}

.about-page__card-description {
  color: #fff9;
  text-align: center;
  font-size: 1.1rem;
}

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

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

.about-page__affiliate-section {
  background: url("../images/bg/bg-about-us-2.png") center / cover no-repeat;
  border-top: 1px solid #fedc45;
  padding: 180px 4%;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  .about-page__affiliate-section {
    padding: 50px 4%;
  }
}

.about-page__affiliate-container {
  max-width: 1440px;
  margin-inline: auto;
}

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

.about-page__affiliate-content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .about-page__affiliate-content-wrapper {
    flex-direction: column-reverse;
  }
}

.about-page__affiliate-text-content {
  z-index: 1;
  max-width: 590px;
  position: relative;
}

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

.about-page__affiliate-caption {
  color: #fff9;
  text-shadow: 2px 2px 4px #0000004d;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

@media screen and (width <= 768px) {
  .about-page__affiliate-caption {
    text-align: center;
    font-size: 1rem;
  }
}

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

.about-page__affiliate-cta {
  max-width: 200px;
}

@media screen and (width <= 768px) {
  .about-page__affiliate-cta {
    margin-inline: auto;
  }
}

.about-page__affiliate-image-content {
  z-index: 0;
  max-width: 800px;
  position: absolute;
  right: 0;
}

@media screen and (width <= 768px) {
  .about-page__affiliate-image-content {
    max-width: 350px;
    position: relative;
  }
}

.affiliate {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.affiliate__section {
  min-height: 500px;
  padding: 50px 4% 0;
}

@media screen and (width <= 768px) {
  .affiliate__section {
    padding: 50px 4% 100px;
  }
}

.affiliate__container {
  max-width: 1440px;
  margin-inline: auto;
}

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

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

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

.affiliate__main-image {
  width: 50%;
  max-width: 600px;
}

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

@media screen and (width <= 576px) {
  .affiliate__main-image {
    max-width: 250px;
  }
}

.affiliate__text-wrapper {
  z-index: 0;
  z-index: 0;
  width: 60%;
  margin-bottom: 80px;
  padding: 50px;
  position: relative;
  background-color: #0D0D0A;
}

.affiliate__text-wrapper:before {
  content: "";
  pointer-events: none;
  z-index: -1;
  -webkit-mask-composite: xor;
  background: linear-gradient(135deg, #815300, #fedc45, #815300);
  border-radius: 22px;
  padding: 1.5px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.affiliate__text-wrapper:hover {
  border-radius: 22px;
}

.affiliate__text-wrapper:hover:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px #fedc4566;
}

.affiliate__text-wrapper:hover:active {
  filter: brightness(.97);
  transform: translateY(0);
  box-shadow: 0 0 10px #fedc4566;
}

@media screen and (width <= 768px) {
  .affiliate__text-wrapper {
    width: 100%;
    margin-bottom: 0;
  }
}

.affiliate__header {
  margin-bottom: 20px;
  font-size: 3rem;
}

.affiliate__header--highlight {
  color: #ebbc55;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#815300 0%, #fedc45 25%, #815300 100%) text;
}

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

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

.affiliate__text {
  color: #f0ece4;
  margin-block: 10px;
  font-size: 1.3rem;
}

.affiliate__text--highlight {
  color: #fedc45;
  font-size: 1.5rem;
}

@media screen and (width <= 768px) {
  .affiliate__text--highlight {
    text-align: center;
    font-size: 1.1rem;
  }

  .affiliate__text {
    text-align: center;
    font-size: 1rem;
  }
}

.affiliate__cta {
  margin-top: 30px;
}

@media screen and (width <= 768px) {
  .affiliate__cta {
    margin-inline: auto;
  }
}
