* {
  box-sizing: border-box;
  outline: 0;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
}
body {
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}
a button {
  cursor: pointer;
}

.mobile-on {
  display: none;
}
.decs {
  display: block;
}

.box-btn-menu {
  display: flex;
  gap: 4px;
}
.btn-log button,
.btn-sign button {
  border-radius: 8px;
  background: #3a31da;
  padding: 10px 24px;
  border: 1.5px solid #3a31da;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-log button {
  color: #3a31da;
  background: #ffffff;
  border: 1.5px solid #3a31da;
}

.main-btn button:hover,
.btn-log button:hover,
.btn-sign button:hover {
  filter: brightness(1.2);
  transition: 0.3s;
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: #ffffff;
}
.site-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 24px;
}
.site-logo {
  margin-right: 56px;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
}
.menu-logo {
  width: 100.503px;
}
.menu__item a {
  color: #1a1a1a;
  text-align: center;

  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  display: flex;
  align-items: center;

  margin-right: 32px;
}

.content {
  padding: 70px 0 0 0;
}

.hero {
  padding: 24px;

  position: relative;
}

.hero__container {
  max-width: 100%;
}
.hero__swiper {
  overflow: hidden;
  overscroll-behavior: contain;
}
.hero__slide {
  position: relative;
  height: 230px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
}
.hero__controls {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero__btn {
  width: 20px;
  height: 19.5px;
  position: relative;
  cursor: pointer;
}
.hero__btn svg {
  position: absolute;
  top: -2px;
  left: -8px;
  transform: scale(0.6);
  stroke: #495476;
}
.hero__btn svg:hover {
  stroke: #fbfbfb;
  transition: 0.9s;
}

.hero__slide img {
  height: 230px;
  width: 100%;
  max-width: 569px;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__slide h4 {
  color: #fff;
  font-family: Inter;
  font-size: 34.568px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.889px;
}

.hero__slide .bonus-hero {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  max-width: 280px;
}

.main-btn button {
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(0deg, #2bc368 0%, #2bc368 100%);
  border: none;
  border-radius: 8px;

  background: #ef61ff;
  transition: all 0.3s;
  padding: 10px 24px;
  font: 600 16px / 24px Inter, sans-serif;
}
.hero__pagination.swiper-pagination {
  position: static;
}

.hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  border-radius: 4px;
  background-color: #495476;
  margin: 0 4px;
  transition: width 0.5s ease, background-color 0.3s ease;
  opacity: 1;
  cursor: pointer;
}

.hero__pagination .swiper-pagination-bullet-active {
  width: 32px;
  height: 4px;
  background-color: #000206;
}

.hero__pagination .swiper-pagination-bullet:hover {
  background-color: #1e2027;
}
.hero__slide:hover img {
  filter: brightness(1.1);
  transition: 0.9s;
}

.hero__swiper:hover {
  touch-action: pan-y;
}

/* game w game */
.gwg {
  padding: 15px 24px 32px;
  background: transparent;
}
.gwg__container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.gwg__slide {
  width: auto;
  cursor: pointer;
}
.gwg-card {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gwg-card__picture {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.gwg-card__picture img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
}
.gwg-card__equal.cant-play {
  background-image: none;
  background-color: #00000070;
}

.gwg-card__content {
  display: grid;
  gap: 2px;
}
.gwg-card__name {
  overflow: hidden;
  color: rgba(74, 74, 74, 0.7);

  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.962px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gwg-card__win {
  overflow: hidden;
  color: #2e27ae;

  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.962px;
  max-width: 69px;
  text-wrap: nowrap;
}

.gwg-card__game {
  max-width: 69px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: rgba(74, 74, 74, 0.7);
  text-overflow: ellipsis;
  font-family: Inter;
  text-wrap: nowrap;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
/* game */

.kcats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 8px;
  width: 100%;
}
.kcats__bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.kcats__search-btn svg {
  width: 18px;
  height: 18px;
  stroke: #e9ecf1;
}

.kcats__slider {
  position: relative;

  width: 100%;
}

.kcats .swiper {
  overflow: hidden;
}
.kcats .swiper-wrapper {
  display: flex;
}
.kcats .swiper-slide {
  width: auto;
}
.kcats__card {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px 65px;
  border-radius: 6px;
  background: #f8f8f8;
  max-height: 48px;
  transition: opacity 0.3s ease-in-out;
}
.kcats__card:hover {
  opacity: 0.7;
}
.kcats__card.sport-btn {
  display: flex;
  justify-content: space-between;
  padding: 18px 60px;
  gap: 20px;
}
.kcats__card.sport-btn span {
  color: #3a31da;
}
.kcats__card,
.kcats__card * {
  transform: none !important;
}
.kcats__card img {
  width: 20px;
  height: 20px;
  pointer-events: none;
  -webkit-user-drag: none;
}
.kcats__card span {
  font: 500 14px / 12px Inter, sans-serif;
  color: rgb(0, 0, 0);
}

.kcats__nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.kcats__btn svg {
  width: 18px;
  height: 18px;
}

.box__category__info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.box__category__info__center {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: 36px;
}
.box__category__info__center h3 {
  color: #1a1a1a;

  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.box__category__info__center span {
  border-radius: 4px;
  background: #3e4666;
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 4px;
  color: #fff;

  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.box__category__info__center span strong {
  color: #2bc368;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

/* Games section */
.box__game {
  padding: 0 24px 40px;
}

.games__container {
  width: 100%;
  overflow: hidden;
}

.games__swiper {
  overflow: visible;
}

.games__slide {
  width: auto;
}

.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.game-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.game-card__image {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.game-card__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.game-card__label {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0px 8px;
  border-radius: 4px;
  background: #14a578;
  color: #fff;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  z-index: 2;
}

/* Providers section */
.providers__container {
  margin: 32px 0 0 0;
  width: 100%;
  overflow: hidden;
}

.providers__swiper {
  overflow: visible;
}

.providers__slide {
  width: auto;
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.provider-card img {
  width: 100%;
}
.providers__swiper .swiper-wrapper {
  align-items: center;
}
.banner {
  padding: 40px 22px 0 22px;
}
.banner__contant {
  padding: 40px 22px;
  background-image: url(../img/banner-pragmatic.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner__contant h2 {
  color: #fff;
  color: #fff;
  text-align: center;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.banner__contant h2 strong {
  color: #fff;
  text-align: center;

  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.banner__contant .main__btn {
  margin: 24px auto 0;
}
.main__btn button {
  border: none;
  padding: 10px 24px;
  color: #fff;
  text-align: center;

  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border-radius: 8px;
  background: #ef61ff;
  font-style: normal;

  color: white;
}
.main__btn:hover button {
  filter: brightness(1.2);
  transition: 0.9s;
}

/* Footer */
.footer {
  background: #f8f8f8;
  color: #1a1a1a;
  padding: 32px 24px;
  margin-top: 40px;
}

.footer__container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__language-selector {
  width: 200px;
}

.footer__language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #bbbbcd;
  border-radius: 8px;
  padding: 8px 12px;
  height: 40px;
  min-height: 40px;
}

.footer__language img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer__language span {
  flex: 1;
  line-height: 20px;
}

.footer__language svg {
  width: 10px;
  height: 16px;
  color: #1a1a1a;
  flex-shrink: 0;
}

.footer__columns {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.footer__column-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__heading {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 20px;
  text-transform: none;
}

.footer__accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  user-select: none;
}

.footer__accordion-toggle span:first-child {
  flex: 1;
}

.footer__accordion-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.footer__accordion-icon svg {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.footer__accordion.active .footer__accordion-icon svg {
  transform: rotate(180deg);
}

.footer__accordion-content {
  display: block;
  overflow: visible;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

@media (min-width: 1024px) {
  .footer__accordion-toggle {
    cursor: default;
  }

  .footer__accordion-icon {
    display: none !important;
  }

  .footer__accordion-content {
    display: block !important;
    max-height: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links li {
  margin: 0;
}

.footer__links a {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 16px;
  white-space: nowrap;
}

.footer__links a:hover {
  color: #1a1a1a;
}

.footer__divider {
  height: 1px;
  background: #ebebf0;
  width: 100%;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: flex-start;
}

.footer__bottom-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__copyright {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 20px;
  text-align: left;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__legal p {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #4a4a4a;
  margin: 0;
}

.footer__logo {
  margin-top: 12px;
}

.footer__logo img {
  width: 128px;
  height: 44px;
  object-fit: contain;
}

.footer__bottom-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 208px;
}

.footer__social-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 20px;
  white-space: nowrap;
}

.footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #1a1a1a;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-link svg {
  width: 24px;
  height: 24px;
}

.footer__responsible {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  min-height: 76px;
}

.footer__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border: none;
  border-radius: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}

.footer__begambleaware {
  position: absolute;
  left: 48px;
  top: 44px;
}

.footer__begambleaware img {
  height: 17px;
  width: auto;
}

.footer__responsible-text {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0;
  line-height: 16px;
  position: absolute;
  left: 48px;
  top: 0;
  width: 160px;
}

/* Benefits section */
.benefits {
  padding: 32px 20px;
}

.benefits__container {
  max-width: 100%;
}

.benefits__swiper {
  overflow: hidden;
  margin-bottom: 12px;
}

.benefits__slide {
  height: auto;
}

.benefits-card {
  padding: 32px 24px;
  border-radius: 16px;

  background: linear-gradient(90deg, #231e87 0%, #3a31da 100%);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;

  transition: transform 0.3s ease, background 0.3s ease;
}
.benefits-card img {
  position: absolute;
  bottom: -31px;
  right: -73px;
}

.benefits-card__title {
  color: #ebebeb;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.benefits-card__title strong {
  color: #fff;

  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.benefits-card .main__btn button {
  margin-top: 64px;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  padding: 10px 24px;
  font-weight: 400;
  line-height: 16px;
  transition: color 0.3s ease;
}

.benefits__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.benefits__btn {
  width: 20px;
  height: 19.5px;
  position: relative;
  cursor: pointer;
}

.benefits__btn svg {
  position: absolute;
  top: -2px;
  left: -8px;
  transform: scale(0.6);
  stroke: #495476;
}

.benefits__btn svg:hover {
  stroke: #1e1a1a;
  transition: 0.9s;
}

.benefits__pagination.swiper-pagination {
  position: static;
}

.benefits__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  border-radius: 4px;
  background-color: #495476;
  margin: 0 4px;
  transition: width 0.5s ease, background-color 0.3s ease;
  opacity: 1;
  cursor: pointer;
}

.benefits__pagination .swiper-pagination-bullet-active {
  width: 32px;
  height: 4px;
  background-color: #000000;
}

.benefits__pagination .swiper-pagination-bullet:hover {
  background-color: #1b1717;
}

/* Activity Table */
.activity-table {
  padding: 0 24px 40px;
}

.activity-table__container {
  width: 100%;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 16px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-table__header {
  display: flex;
  gap: 4px;
  padding: 0;
}

.activity-table__header-cell {
  padding: 0;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.activity-table__header-cell:nth-child(1) {
  flex: 1;
  min-width: 164px;
  padding: 0 8px;
}

.activity-table__header-cell:nth-child(2) {
  flex: 0 1 auto;
  min-width: 80px;
  max-width: 120px;
  padding: 0 12px;
}

.activity-table__header-cell:nth-child(3) {
  flex: 0 1 auto;
  min-width: 100px;
  padding: 0 12px;
  text-align: center;
}

.activity-table__header-cell:nth-child(4) {
  width: 140px;
  min-width: 100px;
  padding: 0 12px;
  text-align: center;
}

.activity-table__header-cell:nth-child(5) {
  flex: 0 1 auto;
  min-width: 100px;
  padding: 0 12px;
  text-align: center;
}

.activity-table__body {
  background: #ebebeb;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.activity-table__row {
  display: flex;
  gap: 4px;
  background: transparent;
}

.activity-table__row:nth-child(odd) .activity-table__cell:nth-child(1),
.activity-table__row:nth-child(odd) .activity-table__cell:nth-child(2),
.activity-table__row:nth-child(odd) .activity-table__cell:nth-child(3),
.activity-table__row:nth-child(odd) .activity-table__cell:nth-child(4),
.activity-table__row:nth-child(odd) .activity-table__cell:nth-child(5) {
  background: #ffffff;
}

.activity-table__cell {
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background: transparent;
  display: flex;
  align-items: center;
}

.activity-table__cell:nth-child(1) {
  flex: 1;
  min-width: 164px;
  padding: 8px;
}

.activity-table__cell:nth-child(2) {
  flex: 0 1 auto;
  min-width: 80px;
  max-width: 120px;
  padding: 12px 56px 12px 12px;
}

.activity-table__cell:nth-child(3) {
  flex: 0 1 auto;
  min-width: 400px;
  padding: 12px 50px;
  justify-content: center;
}

.activity-table__cell:nth-child(4) {
  width: 140px;
  min-width: 100px;
  padding: 12px 48px;
  justify-content: center;
}

.activity-table__cell:nth-child(5) {
  flex: 0 1 auto;
  min-width: 400px;
  padding: 12px;
  justify-content: center;
}

.activity-table__game {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.activity-table__game-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
}

.activity-table__game-name {
  color: #1a1a1a;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-table__profit {
  color: #1a1a1a !important;
}

.info {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.info > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.info__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.info h2 {
  color: #1a1a1a;
  font-family: Inter, sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  text-transform: none;
}

.info p {
  color: #4a4a4a;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.info .main__btn {
  width: auto;
  display: flex;
  justify-content: center;
  margin: 0;
}

.info .main__btn button {
  background: #3a31da;
  color: #ffffff;
  padding: 8px 16px;
  height: 48px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  min-width: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* page__promo */
.banner-promo {
  margin: 8px 0;
  height: 350px;
  max-width: 100%;
}
.page__promo h2 {
  color: #1a1a1a;
  font-family: Inter;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}
.page__promo p {
  color: rgb(0, 0, 0);
  opacity: 1;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}

.page__promo ol {
  counter-reset: list-counter;
  padding-left: 0;
  margin-bottom: 16px;
  margin-left: 0;
  list-style: none !important;
}

.page__promo ol li {
  color: #000000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
  list-style: none !important;
}

.page__promo ol li::before {
  content: counter(list-counter) ".";
  counter-increment: list-counter;
  color: #332bc3;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: absolute;
  left: 0;
}

.page__promo ul {
  padding-left: 0;
  margin-bottom: 16px;
  margin-left: 0;
  list-style: none !important;
}

.page__promo ul li {
  color: #000000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  list-style: none !important;
}

.page__promo ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #2bc368;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 9px;
}

/* FAQ Section */
.faq {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.faq h2 {
  color: #000000;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  margin: 0;
  width: 100%;
}

.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border-radius: 8px;
  background: #f8f8f8;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
  cursor: pointer;
  color: #1a1a1a;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  transition: background-color 0.3s ease;
}

.faq__question span:first-child {
  flex: 1;
  padding-right: 16px;
  max-width: 650px;
}

.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq__icon {
  position: absolute;
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon--plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq__icon--minus {
  opacity: 0;
  transform: rotate(0deg);
}

.faq__item.active .faq__icon--plus {
  opacity: 0;
}

.faq__item.active .faq__icon--minus {
  opacity: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 32px;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 32px 19px 32px;
}

.faq__answer p {
  color: #4a4a4a;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
/* ============================================================
   WYSIWYG / Gutenberg content styles
   Обертка: .zumo-wysiwyg
   ============================================================ */

.zumo-wysiwyg {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Headings */
.zumo-wysiwyg h1,
.zumo-wysiwyg h2,
.zumo-wysiwyg h3,
.zumo-wysiwyg h4,
.zumo-wysiwyg .wp-block-heading {
  color: #1a1a1a;
  font-family: Inter, Arial, sans-serif;
  font-style: normal;
  margin: 0;
}

.zumo-wysiwyg h1,
.zumo-wysiwyg .wp-block-heading:is(h1) {
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 8px;
}

.zumo-wysiwyg h2,
.zumo-wysiwyg .wp-block-heading:is(h2) {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 18px;
}

.zumo-wysiwyg h3,
.zumo-wysiwyg .wp-block-heading:is(h3) {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 14px;
}

/* Paragraphs */
.zumo-wysiwyg p {
  color: #4a4a4a;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.zumo-wysiwyg p + p {
  margin-top: 10px;
}

/* Links inside content */
.zumo-wysiwyg a {
  color: #3a31da;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.zumo-wysiwyg a:hover {
  opacity: 0.85;
}

/* Buttons inside content (твоя кнопка .main__btn) */
.zumo-wysiwyg .main__btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin: 8px 0 14px;
  text-decoration: none;
}

.zumo-wysiwyg .main__btn button {
  min-width: 180px;
}

/* Lists (ul/ol) — потому что глобально у тебя list-style: none */
.zumo-wysiwyg ul,
.zumo-wysiwyg ol,
.zumo-wysiwyg .wp-block-list {
  margin: 10px 0 14px;
  padding: 0;
}

/* Unordered list */
.zumo-wysiwyg ul li,
.zumo-wysiwyg .wp-block-list:is(ul) li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;

  color: #1a1a1a;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.zumo-wysiwyg ul li::before,
.zumo-wysiwyg .wp-block-list:is(ul) li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #2bc368;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 9px;
}

/* Ordered list */
.zumo-wysiwyg ol,
.zumo-wysiwyg .wp-block-list:is(ol) {
  counter-reset: zumo-counter;
}

.zumo-wysiwyg ol li,
.zumo-wysiwyg .wp-block-list:is(ol) li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;

  color: #1a1a1a;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.zumo-wysiwyg ol li::before,
.zumo-wysiwyg .wp-block-list:is(ol) li::before {
  counter-increment: zumo-counter;
  content: counter(zumo-counter) ".";
  color: #3a31da;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

/* Table / wp-block-table */
.zumo-wysiwyg figure.wp-block-table {
  margin: 12px 0 16px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

.zumo-wysiwyg figure.wp-block-table table {
  width: 100%;
  min-width: 520px; /* чтобы на мобилке красиво скроллилось */
  border-collapse: separate;
  border-spacing: 0;
  background: #f8f8f8;
  border: 1px solid #ebebf0;
  border-radius: 12px;
  overflow: hidden;
}

.zumo-wysiwyg figure.wp-block-table td,
.zumo-wysiwyg figure.wp-block-table th {
  padding: 12px 14px;
  border-bottom: 1px solid #ebebf0;

  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1a1a1a;
  vertical-align: top;
}

.zumo-wysiwyg figure.wp-block-table tr:last-child td,
.zumo-wysiwyg figure.wp-block-table tr:last-child th {
  border-bottom: none;
}

.zumo-wysiwyg figure.wp-block-table td strong,
.zumo-wysiwyg figure.wp-block-table th strong {
  font-weight: 600;
}

/* Em/strong */
.zumo-wysiwyg strong { color: #1a1a1a; }
.zumo-wysiwyg em { color: #4a4a4a; }

/* Small spacing helper for Gutenberg blocks */
.zumo-wysiwyg > *:first-child { margin-top: 0; }
.zumo-wysiwyg > *:last-child  { margin-bottom: 0; }

/* Mobile tweaks */
@media (max-width: 480px) {
  .zumo-wysiwyg { padding: 0 20px; }

  .zumo-wysiwyg h1 { font-size: 30px; line-height: 36px; }
  .zumo-wysiwyg h2 { font-size: 22px; line-height: 30px; }
  .zumo-wysiwyg p,
  .zumo-wysiwyg li { font-size: 15px; line-height: 22px; }

  .zumo-wysiwyg figure.wp-block-table table { min-width: 480px; }
}
/* Unordered list bullets */
.zumo-wysiwyg ul li::before,
.zumo-wysiwyg .wp-block-list:is(ul) li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ef61ff; /* was #2bc368 */
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 9px;
}

/* Ordered list numbers */
.zumo-wysiwyg ol li::before,
.zumo-wysiwyg .wp-block-list:is(ol) li::before {
  counter-increment: zumo-counter;
  content: counter(zumo-counter) ".";
  color: #3a31da; /* stays brand */
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}
/* ===== Footer language dropdown (акценты: #ef61ff / #3a31da) ===== */

.footer__language-selector{
  position: relative;
  display: inline-block;
  color: #111;
}

.footer__language{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(58, 49, 218, .22);
  background: #fff;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 8px 22px rgba(58, 49, 218, .08);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.footer__language:hover{
  border-color: rgba(239, 97, 255, .55);
  box-shadow: 0 10px 26px rgba(239, 97, 255, .12);
  transform: translateY(-1px);
}

.footer__language:focus{
  outline: none;
}

.footer__language:focus-visible{
  box-shadow: 0 0 0 3px rgba(239, 97, 255, .22), 0 12px 30px rgba(58, 49, 218, .12);
  border-color: rgba(58, 49, 218, .55);
}

.footer__language img{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .9;
}

.footer__lang-caret{
  margin-left: 6px;
  transition: transform .18s ease;
  opacity: .85;
}

.footer__language-selector.is-open .footer__lang-caret{
  transform: rotate(180deg);
}

/* ВАЖНО: жёстко прячем hidden, чтобы список не выпадал вниз как на скрине */
.footer__language-drop[hidden]{
  display: none !important;
}

.footer__language-drop{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(58, 49, 218, .18);
  box-shadow: 0 16px 40px rgba(58, 49, 218, .14);
  z-index: 999;
}

.footer__language-item{
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.footer__language-item:hover{
  background: linear-gradient(90deg, rgba(239, 97, 255, .14), rgba(58, 49, 218, .10));
  color: #3a31da;
  transform: translateX(2px);
}

.footer__language-item:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 97, 255, .22);
}

/* ===== Footer social icons (только иконки) ===== */

.footer__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(58, 49, 218, .18);
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(58, 49, 218, .08);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.footer__social-link:hover{
  border-color: rgba(239, 97, 255, .55);
  color: #3a31da;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(239, 97, 255, .12);
}

.footer__social-link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 97, 255, .22), 0 12px 30px rgba(58, 49, 218, .12);
}

/* Чтобы SVG точно подчинялись цвету */
.footer__social-link svg{
  display: block;
}

@media (prefers-reduced-motion: reduce){
  .footer__language,
  .footer__language-item,
  .footer__social-link,
  .footer__lang-caret{
    transition: none !important;
  }
}
/* =========================
   Casino page content styles
   Parent: .casino-content
   ========================= */

.casino-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px;
}

.casino-content--zumo {
  /* если захочешь — можно сюда добавить доп. правила только для этой версии */
}

/* Headings */
.casino-content .wp-block-heading {
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.casino-content h1.wp-block-heading {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
}

.casino-content h2.wp-block-heading {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 750;
  margin-top: 26px;
  margin-bottom: 12px;
}

.casino-content h3.wp-block-heading {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 10px;
}

/* Text */
.casino-content p {
  margin: 0 0 14px;
  line-height: 1.75;
  font-size: 16px;
  opacity: 0.92;
}

/* Emphasis */
.casino-content strong {
  font-weight: 700;
}

.casino-content em {
  font-style: italic;
}

/* Lists */
.casino-content .wp-block-list,
.casino-content ul,
.casino-content ol {
  margin: 12px 0 18px;
  padding-left: 22px;
  line-height: 1.7;
}

.casino-content ul li,
.casino-content ol li {
  margin: 8px 0;
}

/* Nested list inside OL (your volatility part) */
.casino-content ol li ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 18px;
}

.casino-content li::marker {
  opacity: 0.85;
}

/* Nice “content card” blocks for long text */
.casino-content p + h2.wp-block-heading,
.casino-content ul + h2.wp-block-heading,
.casino-content ol + h2.wp-block-heading {
  padding-top: 6px;
}

/* Links */
.casino-content a {
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,0.35);
}

.casino-content a:hover {
  border-bottom-style: solid;
}

/* Soft highlight blocks (optional)
   If you later add <div class="casino-note">...</div>
*/
.casino-content .casino-note {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Divider line between big sections (optional)
   If you add <hr class="casino-divider">
*/
.casino-content .casino-divider,
.casino-content hr {
  border: 0;
  height: 1px;
  margin: 22px 0;
  background: rgba(255,255,255,0.12);
}

/* =========================
   Responsive tweaks
   ========================= */
@media (max-width: 768px) {
  .casino-content {
    padding: 22px 14px;
  }

  .casino-content p {
    font-size: 15.5px;
  }
}

@media (max-width: 480px) {
  .casino-content {
    padding: 18px 12px;
  }

  .casino-content ul,
  .casino-content ol {
    padding-left: 18px;
  }
}
