:root {
  --font_onest: sans-serif;
  --body-bg: #12161D;
  --body-color: #fff;
  --menu-bg-color: rgba(33, 33, 37, 0.356);
  --bg-color: #181E29;
  --color-grey-light: rgba(35,46,63,.5);
  --color-grey-light-hover: rgba(255, 255, 255, 0.144);
  --color-btn-green: linear-gradient(180deg,#19ffa7 46%,#009141);
  --menu-bg-color: #181E29;
  --hover-color: rgba(255, 255, 255, 0.1);
  --text-color: #ffffff;
  --active-border-color: rgb(0, 255, 102);

  --button-gradient: linear-gradient(180deg,#19ffa7 46%,#009141);
  --button-hover-gradient: linear-gradient(
    63.43deg,
    #09c706 47.87%,
    #b0ffb0 85.58%,
    #f0fff0 103.32%
  );
  --gradient: linear-gradient(0deg,#bababa,#fbfbfb 80%,#fff 99%);
}

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: inherit;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 20px 0;
  padding-left: 15px;
}
/* li {
  list-style: none;
} */
table {
  margin: 25px 0;
  color: #ffffffab;
}
ol,
ul {
  margin: 25px 0;
  padding-left: 45px;
}
ol li {
  line-height: 1.5;
  color: #ffffffab;
}
ul li {
  line-height: 1.5;
  color: #ffffffab;
}
p {
  color: #fff !important;
}
body {
  font-family: var(--font_onest);
  font-size: 16px;
  line-height: 1.2;
  color: var(--body-color);
  background-color: var(--body-bg);
  scrollbar-gutter: stable both-edges;
  margin: 0;
  padding: 0;
  height: 100%;
}
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

table th {
  font-weight: 700;
  padding: 5px;
  background: #efefef;
  border: 1px solid #ddd;
}

table td {
  border: 1px solid #ddd;
  padding: 5px;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
  overflow-x: hidden;
  margin-top: 60px;
}

.container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}
@keyframes text-pulse {
  0% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(25, 255, 167, 0.5);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(25, 255, 167, 0.8);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(25, 255, 167, 0.5);
  }
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 255, 167, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(25, 255, 167, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 255, 167, 0);
  }
}

@keyframes vibrate {
 0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(1px, 1px) rotate(0.5deg); }
  50% { transform: translate(-1px, -1px) rotate(-0.5deg); }
  75% { transform: translate(1px, -1px) rotate(0.5deg); }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.btn {
  border-width: 2px;
  border-radius: 10px;
  border: solid transparent;
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: #fff;
  padding: 8px 16px;
  height: 40px;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-transform: uppercase;
   animation: pulse-shadow 2s infinite;
  transition: all 0.2s ease-out;
}

.btn:before,
.btn:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: calc(4px + 2px);
  background: transparent;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

.btn:before {
  z-index: -1;
  padding: 2px 0 0 2px;
  margin: calc(2px * -1) 0 0 calc(2px * -1);
  border-bottom-right-radius: 0;
}

.btn:after {
  z-index: -2;
  padding: 0 2px 2px 0;
  margin: 0 calc(2px * -1) calc(2px * -1) 0;
  border-top-left-radius: 0;
}

.btn:hover:before,
.btn:hover:after {
  transform: scale(1.1);
}

.btn--primary {
  background-color: linear-gradient(0deg,#bababa,#fbfbfb 80%,#fff 99%);
  color: #000;
}

.btn__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
  font-family: var(--font_onest);
  font-weight: 600;
}
.button-one {
  display: flex;
  flex-wrap: nowrap;
  min-width: 120px;
  background: var(--button-gradient);
  padding: 1em 2.5em;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 auto;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.9s ease;
  cursor: pointer;
    animation: pulse-shadow 2s infinite;
}

.button-one:hover {
  background: var(--button-hover-gradient);
}

.button {
  position: relative;
  padding: 1em 2.5em;
      white-space: nowrap;
    justify-content: center;
    font-family: var(--font_onest);
    font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: var(--button-gradient);
  color: #000;
  min-width: 180px;
  max-width: 250px;
  /* box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.164); */
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
    animation: pulse-shadow 2s infinite;
}

.button:hover {
  background-color: var(--hover-bg);
}

/* .button {
  background: rgba(0, 0, 0, 0.4);
  position: relative;
} */

/* .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #2e2be2, #00ff00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
} */

/* .button::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2b2ee2, #00ff00);
  filter: blur(8px);
  opacity: 0.15;
  z-index: -1;
} */
.button__registration,
.collections-menu__link-btn {
  display: flex;
  flex-wrap: nowrap;
  background: var(--button-gradient);
  padding: 15px 30px;
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.8s ease-in-out;
    animation: pulse-shadow 2s infinite;
}

.button__registration:hover,
.collections-menu__link-btn:hover {
  background: var(--button-hover-gradient);
}

/* .btn--primary:before {
  background: linear-gradient(90deg, #2846af, #0e1450 49.5%, #76b7dc);
}

.btn--primary:after {
  background: #1BFFA7;
} */
.header__button-open {
  display: none;
}

.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 33, 37, 0.356);
  backdrop-filter: blur(10px);
  z-index: 995;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.header__container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  padding: 0px 20px;
  margin: 0 auto;
}
.header__left {
  display: flex;
  gap: 20px;
}
.header__logo {
  width: 80px;
  align-self: center;
}
.header__burger {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.322);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-in-out;
}
.burger__img {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
}
.header__search-btn {
  display: flex;
  align-items: center;
  width: 400px;
  gap: 10px;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-radius: 10px;
  height: 44px;
  text-transform: none;
  cursor: pointer;
  color: #fff;
}

.header__search-btn-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 8px;
}
.header__menu {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  padding-right: 50px;
}
.header__menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.icon {
  width: 40px;
  height: 40px;
}
.header__menu-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}
.text-color {
  color: hsla(0, 0%, 100%, 0.5);
}
.header__right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__login {
  display: flex;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: 998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--menu-bg-color);
  transition: left 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.side-menu.open {
  left: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.menu-burger__header {
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu-burger__btn {
  background: none;
  width: 40px;
  cursor: pointer;
}
.menu-burger__logo {
  width: 100px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-burger-nav {
  padding: 10px;
}

.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu__list ul{
  list-style-type: none;
  padding-left: 0;
}
.menu-burger__wheel {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 30px;
  box-shadow: 0 32px 20px -20px rgba(0, 19, 57, 0.25);
  margin-bottom: 16px;
  background: linear-gradient(
    63.43deg,
    #46cb44 47.87%,
    #a6fda4 85.58%,
    #e7ffe7 103.32%
  );
  overflow: hidden;
  cursor: pointer;
  animation: gradientAnimation 3s ease infinite;
  background-size: 400% 400%;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.menu-burger__wheel-wr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(../images/burger/wheel-bg.svg);
  transform: translateZ(0);
  z-index: 3;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -15px;
}

.menu-burger__wheel-img {
  position: relative;
  left: -20px;
  bottom: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  animation: moveAround 5s linear infinite;
}

@keyframes moveAround {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.menu-burger__wheel-label {
  position: relative;
  padding-left: 70px;
  z-index: 2;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.menu-burger__wheel-label {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.menu__list li,
.page_item {
  margin-bottom: 10px;
}

.menu__list li a,
.page_item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.menu__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.menu__arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.menu__item--dropdown:hover .menu__arrow {
  transform: rotate(180deg);
}

.menu__item--dropdown .submenu {
  display: none;
  margin-left: 20px;
}

.menu__item--dropdown:hover .submenu {
  display: block;
}

.menu__item--dropdown .submenu {
  display: none;
  margin-left: 20px;
}

.menu__item--dropdown:hover .submenu {
  display: block;
}

.menu__divider {
  border-top: 1px solid #2a2f3a;
  margin: 15px 0;
}
.submenu__item {
  padding: 20px;
}
.submenu__link {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.menu__item-text {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-download-menu {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-one-menu {
  display: flex;
  gap: 10px;
  background-color: #000;
  border-radius: 10px;
  padding: 8px 20px;
  min-height: 40px;
  width: max-content;
}
/* .main-banner {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
} */
 
.main-banner__content {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: nowrap;
  max-height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    animation: text-pulse 2s infinite;
}
.main-banner__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  padding: 80px 30px;
  text-align: center;
  /* border: 1px solid transparent;
    background-color: rgba(18, 22, 29, .7);
    backdrop-filter: blur(10px);
    width: max-content; */
}
.main-banner__text {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.main-banner__percent {
  max-width: -webkit-max-content;
  max-width: max-content;
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  background: var(--button-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-banner__bonus-offer-name {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.main-banner__btn {
  display: flex;
  align-items: center;
  width: max-content;
  background: #1BFFA7;
  color: #fff;
}

.main-banner {
  /* background-image: url(../images/bonus-jacp/bg-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%; */
  border-radius: 10px;
}

video.main-banner__background-video{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.main-banner:before{
  content: '';
  display: block; position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/header/gift-girl.webp) no-repeat center center;
  background-size: cover;
  width: 300px;
  height: 100%;
  z-index: 1;
  animation: pulse 2s infinite;

}
.main-banner:after{
  content: '';
  display: block; position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/header/lootbox-2.webp) no-repeat center center;
  background-size: cover;
  width: 400px;
  height: 100%;
  z-index: 1;
    animation: pulse 2s infinite;

  
}
/* .main-banner__right-bg {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 1072px;
  height: 620px;
  z-index: -1;
  pointer-events: none;

} */
.main-banner__right-img {
  width: 100%;
  height: auto;
}
.main-banner__win {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  gap: 20px;
  position: relative;
  z-index: 10;
}
.banner-win__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
.win__header-right,
.win__header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.right-title {
  background: linear-gradient(90deg, #5cc1ed 2.16%, #f3337a 76.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
}
.title-color {
  -webkit-text-fill-color: #fff;
}
.right-text {
  margin-left: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.right-flex {
  display: flex;
  justify-content: end;
}
.banner-win__card {
  display: flex;
  flex: 1 1 500px;
}
.item-width {
  display: flex;
  gap: 200px !important;
}
.banner-win__card_items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--color-grey-light);
  border-radius: 10px;
  gap: 30px;
  width: 100%;
  min-width: 348px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-out;
}

.card__item:before,
.card__item:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  background: transparent;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

.card__item:before {
  z-index: -1;
  padding: 2px 0 0 2px;
  margin: calc(2px * -1) 0 0 calc(2px * -1);
  border-bottom-right-radius: 0;
}

.card__item:after {
  z-index: -2;
  padding: 0 2px 2px 0;
  margin: 0 calc(2px * -1) calc(2px * -1) 0;
  border-top-left-radius: 0;
}

.card__item:hover:before,
.card__item:hover:after {
  transform: scale(1);
}

.card__item:hover {
  background-color: #000;
}

/* .card__item:hover:before {
  background: linear-gradient(90deg, #2846af, #0e1450 49.5%, #76b7dc);
} */

/* .card__item:hover:after {
  background: #1BFFA7;
} */

.card__right {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
}

.card__img img {
  min-width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10%;
}

.card__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card__text {
  margin-bottom: 4px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card__text2 {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.card__left {
  display: flex;
  align-items: flex-end;
  text-align: right;
  margin-right: 5px;
  flex: 0 0 auto;
}

.card__number {
  border-radius: 10px;
  background: #1BFFA7;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000 !important;
}

.card__number2 {
  margin: 4px 4px 0;
  margin-right: 0;
  border-radius: 10px;
  background: #1BFFA7;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #000 !important;
}

.main-paymant {
  z-index: 3;
  position: relative;
  display: inline-flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
  border-radius: 10px;
  width: 100%;
}

.paymant-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  /* gap: 20px; */
  padding: 0;
  margin: 0;
    border-radius: 10px;
    overflow: hidden;

}

.payment-list__item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  padding: 20px;
  /* border-radius: 10px; */
}
.payment-list__img {
  width: auto;
  height: 28px;
  filter: grayscale(1);
  opacity: 0.7;
}
.payment-name {
  display: block;
}
.nav-panel-wrapper {
  padding: 10px 20px;
  margin-bottom: 20px;
}

.nav-panel {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 20px;
}

.nav-panel__menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  justify-content: center;
}

.nav-panel__menu-item {
  position: relative;
  padding: 12px 0px 12px 0px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.03);
  min-width: 180px;
  flex: 1 1 200px;
  max-width: 250px;
  /* box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.164); */
}

.nav-panel__menu-item:hover {
  background-color: var(--hover-color);
}

.nav-panel__menu-item--active {
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}

/* .nav-panel__menu-item--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #8a2be2, #00ff00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nav-panel__menu-item--active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 10px;
  background: linear-gradient(90deg, #8a2be2, #00ff00);
  filter: blur(8px);
  opacity: 0.15;
  z-index: -1;
} */

.nav-panel__menu-link {
  color: var(--text-color);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-align: center;
  display: block;
}

.nav-panel__menu-item:hover .nav-panel__menu-link {
  opacity: 1;
}

.nav-panel__menu-item--active .nav-panel__menu-link {
  opacity: 1;
}
.games__info {
  margin: 30px 0;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
}

.games__info-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffffe0;
  margin-bottom: 10px;
  text-align: left;
}

.games__info-text,
.games__info p {
  font-size: 16px;
  color: #ffffffab;
  line-height: 1.6;
  text-align: justify;
}

.games__head {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}
.games__title {
  margin-right: 12px;
  transition: color 0.2s ease-in-out;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.games__button-all {
  width: 8px;
  height: 8px;
  transform: translate3d(0, -10px, 0);
  background-image: url(../images/games/all.svg);
  transition: transform 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.games__head:hover .games__title {
  color: #eeba40;
}

.games__head:hover .games__button-all {
  transform: translateY(-1px) rotate(45deg);
}

.games__block {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.game-card {
  position: relative;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.game-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.game-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-card:hover:after {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.game-card:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-image: url('../images/games/play-button.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-card:hover .game-card__image {
  filter: blur(4px);
}

.jackpot {
  padding: 40px 0px 48px 0px;
}
.games-jackpot__inner {
  position: relative;
  display: flex
;
  flex-direction: column;
  padding: 50px 20px 25px;
  border-radius: 0;
  overflow: hidden;
  background-image: url(../images/bonus-jacp/bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
}
/* .games-jackpot__inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: url(../images/bonus-jacp/bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
} */
.games-jackpot__inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 400px;
  z-index: 0;
  pointer-events: none;
  background-image: url(../images/header/lootbox-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
}
.games-jackpot__inner:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  z-index: 0;
  pointer-events: none;
  background-image: url(../images/header/lootbox-3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
}
.games-jackpot__inner-title {
  text-align: center;
}
.games-jackpot__title {
  display: inline-block;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 35px;
  margin-top: 35px;
}
@keyframes jackpot-increment {
  0% {
    transform: scale(0.3);
    filter: blur(10px);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    filter: blur(0);
    text-shadow: 0 0 50px rgba(25, 255, 167, 0.8);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 0 0 20px rgba(25, 255, 167, 0.5);
  }
}
@keyframes jackpot-spin {
  0% {
    transform: rotateY(0deg) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg) scale(1);
    opacity: 1;
  }
}
.games-jackpot__number{
     border: 1px solid transparent;
    background-color: rgba(18, 22, 29, .7);
    backdrop-filter: blur(10px);

  width: max-content;
  margin: 0 auto;
  padding: 20px 40px;
  border-radius: 10px;
}
.games-jackpot__number span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight:bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: auto;
  position: relative;
  top: -4px;
  font-size: 86px;
  line-height: 86px;
  background: var(--button-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   animation: jackpot-spin 1s ease-out;
}

.games-jackpot__suppliers {
  position: relative;
  z-index: 1000;
  display: flex;
  margin-top: 28px;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0px;
}

.swiper-container {
  width: 100%;
  padding: 0 10px;
}
.swiper-wrapper {
  display: flex;
}

.suppliers__contents {
  position: relative;
  width: 224px;
  margin-right: 12px;
}

.suppliers__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 224px;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color:rgba(18,22,29,.7);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.suppliers__card img {
  width: 52px;
  height: 52px;
  margin-bottom: 5px;
}

.play-supplier__jackpot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.play-supplier__jackpot-sum {
  font-size: 22px;
  line-height: 20px;
  font-weight: 700;
}

.play-supplier__jackpot-text {
  font-size: 14px;
  font-weight: 700;
  color: #69b5e0;
}

.play-supplier__games {
  position: absolute;
  top: -12px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 10px;
  background-color: #1BFFA7;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #000;
}
.top{
  margin-bottom: 25px;
}
.top__content {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top__item {
  flex: 1;
}
.top__title {
  margin-bottom: 15px;
  font-size: 20px;
}
.top__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus {
  margin: 30px 0px 60px 0px;
}
.bonus__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 20px;
}

.bonus__content::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: calc(100% + 40px * 2);
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    hsla(0, 0%, 92.9%, 0.1),
    hsla(0, 0%, 92.9%, 0.1) 4px,
    hsla(0, 0%, 92.9%, 0) 0,
    hsla(0, 0%, 92.9%, 0) 12px
  );
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 10px;
  filter: brightness(0.5);
  background: url(../images/bonus-jacp/bg-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.bonus__content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0px 0px 50px;
}
.bonus__content-block {
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}
.bonus__content-title {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  font-size: 30px;

  font-weight: 700;
  text-transform: uppercase;
}
.bonus__content-number {
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bonus__content-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.bonus__content-text span:first-child {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}
.bonus__content-text span:last-child {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}
.bonus__content-button {
  display: flex;
  flex-wrap: nowrap;
  min-width: 120px;
  width: clamp(120px, 15vw, 160px);
  background: var(--button-gradient);
  padding: 1em 2.5em;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 auto;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.9s ease;
  cursor: pointer;
}
.bonus__content-button:hover {
  background: var(--button-hover-gradient);
}
.bonus__content-right img {
  max-width: 550px;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: 20px;
  border-radius: 10px;
  background-color: var(--menu-bg-color);
}
.footer__socials-logo {
  width: 120px;
}
.social-links__link img {
  width: 40px;
  margin-right: 5px;
  filter: grayscale();
}
.social-links__link:hover img{
  filter: none;
}
.bottom-menu {
  display: none;
  position: fixed;
  padding: 4px 0px 8px 0px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
  z-index: 1000;
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 32px 0px;
}
.footer__menu-col {
  display: flex;
  gap: 4px;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.footer__menu-item {
  min-height: 48px;
  padding: 12px;
}
.footer__menu-link {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.2s ease-out;
  color: hsla(0, 0%, 100%, 0.75);
}
.footer__menu-img {
  width: 10px;
  flex-shrink: 0;
  margin: 5px 6px 5px 8px;
}
.footer__menu-item:hover .footer__menu-link {
  color: #69b5e0;
}

.footer__menu-item:hover img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(73%) saturate(524%)
    hue-rotate(190deg) brightness(92%) contrast(91%);
}
.footer__pay {
  display: flex;
  gap: 12px;
  padding: 30px 0px;
  justify-content: space-between;
}

.footer-download {
  display: flex;
  gap: 12px;
}
.download-one {
  display: flex;
  gap: 10px;
  padding: 16px;
  background: var(--color-grey-light);
  position: relative;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.download-img {
  width: 16px;
  height: 20px;
}
.download-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  transition: all 0.2s ease-out;
}
.download-one:hover {
  background: var(--color-grey-light-hover);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.footer-text {
  padding: 30px 0px;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 0px 40px 0px;
}
.copy {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-left: 30px;
}
.footer-icon {
  width: 100%;
}
.wpmtst-testimonial.testimonial {
  border: none !important;
  border-radius: 10px;
  background: #05101f;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.wpmtst-testimonial-inner {
  border: none !important;
}

.strong-form-inner {
  padding: 0 !important;
}

.strong-form label {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

input[type='text'],
input[type='search'],
textarea {
  background: var(--color-grey-light);
  -webkit-box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
  box-shadow: 0px 16px 40px 0px rgba(56, 68, 91, 0.06);
  border: none !important;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px;
  color: #fff;
}
input[type='search'] {
  margin-bottom: 0;
}
.header-search {
  margin-left: auto;
}

.input-search {
  margin-bottom: 0 !important;
}
.search button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* background: none !important; */
  /* border: none !important; */
}
.searchsubmit {
  background: none !important;
  border: none !important;
}
.wpmtst_submit_testimonial {
  background: var(--button-gradient);
  color: #000000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 28px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.wpmtst_submit_testimonial:hover {
  background: var(--button-hover-gradient);
}

.faq details {
  padding: 15px;
  border-radius: 10px;
  background: #05101f;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.faq details[open] {
  background: #05101f;
}

.faq details p {
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.faq details > summary {
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #69b5e0;
  background: #ff4c0033;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 28px;
  font-weight: 100;
}

.faq details[open] summary:after {
  content: '-';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  background: #fff;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 28px;
  font-weight: 100;
}

.content {
  margin: 35px 0;
  font-size: 16px;
  color: #ffffffab;
  line-height: 1.6;
  text-align: justify;
}
.content a {
  color: #1BFFA7;
  text-decoration: underline;
}
h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}
h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}
h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}
h4 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}
h5 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}
h6 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffffe0;
  margin: 20px 0;
  text-align: left;
}

.related-slots {
  margin: 35px 0;
}
.games__block-related {
  grid-template-columns: repeat(3, 240px);
  justify-content: center;
}
.related-slots__title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
.breadcrumbs {
  padding-top: 40px;
  color: #fff;
  margin: 10px 0;
  font-size: 14px;
}
.single-slot__iframe {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}


@media (max-width: 1466px) {
  .nav-panel__menu-list {
    /* flex-wrap: wrap; */
    row-gap: 20px;
    /* justify-content: center; */
    justify-content: flex-start;
    overflow-x: scroll;
  }
  .nav-panel__menu-list::-webkit-scrollbar{
    display: none;
  }
  .button__registration,
  .collections-menu__link-btn {
    max-height: 60px;
    align-self: center;
  }
}
@media (max-width: 1123px) {
  .bonus__content {
    position: relative;
  }

  /* .bonus__content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg2.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    filter: brightness(0.3);
    z-index: -1;
  } */

  .bonus__content-left {
    position: relative;
    z-index: 100;
    margin: 0 auto;
  }

  .bonus__content-right {
    position: absolute;
    left: 20%;
    width: 60%;
    padding: 20px;
    filter: brightness(0.3);
    z-index: 1;
  }

  .bonus__content-button {
    margin: 0 auto;
  }
  .bonus__content-block {
    flex-direction: column;
    align-items: center;
  }
  .bonus__content-text span:first-child {
    font-size: 30px;
  }
  .bonus__content-text span:last-child {
    font-size: 20px;
  }
  .bonus__content-number {
    font-size: 80px;
  }
  .jackpot {
    padding: 0px;
  }
  /* .games-jackpot__inner:after {
    background-image: url(../images/bonus-jacp/bg_tab.webp);
  } */

  .games-jackpot__inner {

    padding-top: 40px;
    margin: 20px 0 40px;
  }
  .games-jackpot__title {
    margin-bottom: 12px;
    text-align: center;
  }
  .games-jackpot__title {
    font-size: 24px;
  }
  .games-jackpot__number {
    font-weight: 700;
    font-size: 40px;
  }
  .games-jackpot__img1 {
    right: -40%;
    max-width: 400px;
  }
  .games-jackpot__img2 {
    max-width: 400px;
    display: none;
  }
}

@media (max-width: 1080px) {
  h1{
    font-size: 28px;
  }
  h2{
    font-size: 26px;
  }
  h3{
    font-size: 24px;
  }
  .card__left{
    flex-direction: column;
  }
  .main-banner__content {
    position: relative;
  }

  .main-banner__left {
    padding-top: 80px;
    align-items: center;
    text-align: center;
    z-index: 100;
    margin: 0 auto;
  }

  .main-banner__right {
    position: absolute;
    left: 20%;
  }

  .main-banner__right-bg {
    filter: brightness(0.3);
  }

  .main-banner__right-img {
    filter: brightness(0.3);
  }

  .main-banner__win,
  .header__search,
  .header__menu,
  .btn-arrow,
  .collections-menu__link-btn {
    display: none;
  }
  .bottom-menu {
    display: flex;
    justify-content: space-between;
  }
  .header__button {
    display: none;
  }
  .header__button-open {
    display: flex;
  }
  .button-open {
    display: flex;
    background-color: #acff00;
    padding: 16px;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0px 40px;
  }
  .button-menu {
    width: 50%;
    max-width: 400px;
    padding: 10px 10px;
    height: 40px;
    border-radius: 5px;
    margin-right: 15px;
    background-size: 400% 400%;
    animation: gradientAnimation 3s ease infinite;
  }

  .button-menu__inner {
    font-family: var(--font_onest);
    font-weight: 900;
    color: #fff;
  }
  .button{
    padding: 10px 15px;
    min-width: auto;
  }
  .main-paymant {
    justify-content: left;
    padding-top: 100px;
    display: none;
  }
  .paymant-list {
    margin: 0 auto;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .games-jackpot__img1 {
    left: 16px;
    max-width: 300px;
  }
  .games-jackpot__img2 {
    max-width: 300px;
  }

  .footer__pay {
    flex-wrap: wrap;
  }
  .footer-download {
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .download-one {
    min-height: 48px;
    flex: 1 1 auto;
  }
  .footer__menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .game-card:after {
    width: 60px;
  }
  .footer {
    padding-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .main-banner {
  background-image: url(../images/bonus-jacp/bg-2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
}
video.main-banner__background-video{
  display: none;
}
.main-banner__content{
  left: auto;
  top: auto;
  transform: none;
}
  .nav-panel__menu-link {
    padding: 0px 10px;
  }
  .games__block {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
  }
  .bonus__content-title {
    text-align: center;
  }
  .bonus__content-block {
    flex-direction: column;
    text-align: center;
  }
  .bonus__content-right img {
    margin: 20px 0px;
    width: 324px;
    height: 236px;
  }
  .bonus__content-left {
    padding: 0px;
  }

  .game-card {
    flex: 0 0 auto;
    width: 200px;
  }
  .games-jackpot__img2 {
    position: absolute;
    right: -86px;
    bottom: 0;
    width: 283px;
    pointer-events: none;
    overflow: hidden;
    object-fit: cover;
  }
  .footer-copy {
    row-gap: 30px;
  }
  .footer-icons {
    margin: 0 auto;
  }
  .single-slot__iframe {
    height: 300px;
  }
  .games__block-related {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .main-banner__right-img {
    max-width: 300px;
  }
  .button-menu {
    margin: 0 auto;
  }
  .main-banner:after,
  .main-banner:before{
    display: none;
  }
  .main-banner__content {
    padding-top: 60px;
  }
  .main-banner__left {
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .games-jackpot__img1 {
    left: -15px;
  }
  .footer__socials {
    padding: 10px 10px;
  }
  .social-links__link img {
    width: 30px;
  }
  .games__info-text {
    font-size: 18px;
  }
  .card__item {
    gap: 20px;
  }
  .bonus__content-right img {
    max-width: 300px;
  }
  .bonus__content-text span:first-child {
    font-size: 25px;
  }
  .bonus__content-text span:last-child {
    font-size: 18px;
  }
  .bonus__content-number {
    font-size: 45px;
  }
  .games-jackpot__inner{
    padding: 0;
  }
  .games-jackpot__number span{
    font-size: 44px;
  }
  .games-jackpot__inner:before,
  .games-jackpot__inner:after {
    display: none;
  }
  /* .games-jackpot__inner:after {
    background-image: url(../images/bonus-jacp/bg_mob.webp);
  } */
}
