* {
  box-sizing: border-box;
  outline: 0;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
}
body {
  background: #232341;
  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: 8px;
}
.btn-log button,
.btn-sign button {
  border-radius: 8px;
  padding: 12px 26px;
  border: none;
  font: 600 16px/24px Inter, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-log button {
  color: #fff;
  background: linear-gradient(0deg, #2bc368 0%, #2bc368 100%);
}

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

/* side bar */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 217px;
  padding: 0px 8px;
  padding-bottom: 15px;
  background: #1c1c37;
  color: #e9eef7;
  z-index: 1000;
  transition: width 0.25s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 100;
}
.scale-mini {
  transform: scale(0.9);
}
.sb-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.sidebar.small {
  width: 48px;
}
.sb-toggle {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: #31375b;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transform: rotate(180deg);
}

.sb-toggle img {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
}
.sidebar.small .sb-toggle img {
  transform: rotate(180deg);
}

.sb-logo {
  display: block;
  width: 160px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0 auto 12px;
}
.sb-note {
  font-size: 13px;
  color: #9aa3b2;
  text-align: center;
  margin-bottom: 10px;
}
.sb-link {
  margin-left: 6px;
  color: #e9eef7;
  cursor: pointer;
}
.sb-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 16px;
}
.btn {
  border: 0;
  border-radius: 10px;
  padding: 8px 14px;
  background: #14fd52;
  color: #000000;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  font: 600 14px / 16px Inter, sans-serif;
  text-align: center;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid #fdbd14;
}

.nav-item {
  margin: 4px 0;
}
.nav-item img {
  width: 24px;
  height: 24px;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  width: 100%;
  color: #e7ecf5;
  transition: 0.2s;
  background-color: #2e3458;
  font: 400 12px / 18px Inter, sans-serif;
  position: relative;
}
.nav-link:hover {
  background-color: #606493;
}
.arr {
  position: absolute;
  left: 90%;
  width: 8px;
  height: 8px;

  background-image: url(../img/arr.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;

  transition: 0.7s;
}
.drop {
  display: none;
}
.nav-item.open .drop {
  display: block;
  padding: 8px 12px;
  background-color: #131620;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.nav-item.open .arr {
  transform: rotate(180deg);
}
.sub {
  color: #c5ccda;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4px 8px;
  color: #cfcfe5;
  background-color: transparent;
  border-radius: 8px;
  font: 400 12px / 18px Inter, sans-serif;
  margin-bottom: 4px;
}
.sub:hover {
  background: #6c7489;
}

.nav-item.first-item .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font: 400 14px / 24px Inter, sans-serif;
  padding: 6px 12px;
}
.nav-item.first-item {
  margin-bottom: 0;
}
.nav-box .nav-item img {
  width: 32px;
  height: 32px;
}
.nav-box,
.nav {
  margin-top: 12px;
  margin-bottom: 12px;
}
.nav-box-bonus {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-box-bonus .nav-link {
  width: 47px;
  height: 44px;
  justify-content: center;
}

.nav-box-bonus .nav-link::after {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 2px;
  content: "";
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}

/* small side bar */
.sidebar.small .drop,
.sidebar.small .sb-head,
.sidebar.small .sb-note,
.sidebar.small .sb-actions,
.sidebar.small .nav-link span,
.sidebar.small .arr {
  display: none;
}
.sidebar.small .sb-logo {
  width: 42px;
  height: 42px;
  margin: 0 auto;
}
.sidebar.small .nav-link {
  justify-content: center;
  padding: 10px;
}

.page {
  margin: 0px 10px 0px 110px;
  transition: all 0.3s;
}
body.sb-small .page {
  margin-left: 48px;
}
body.sb-small .sb-toggle {
  background: transparent;
  left: 4px;
  transition: all 0.3s;
}
body.sb-small .nav-link {
  padding: 8px;
  width: 40px;
  height: 40px;
}
body.sb-small .sb-scroll {
  margin-top: 64px;
}
body.sb-small .sidebar {
  padding: 0 4px;
}
.sidebar.small .nav-box,
.sidebar.small .nav-box-bonus .nav-item {
  margin-top: 0;
  margin-bottom: 0;
}
.sidebar.small .nav-box-bonus {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.sidebar.small .nav-item.first-item {
  margin-bottom: 4px;
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 217px;
  right: 0;
  z-index: 9;
}
body.sb-small header {
  left: 48px;
}
.site-navbar {
  background-color: #1c1c37;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 24px;
}
.site-logo {
  margin-right: 20px;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
}
.menu-logo {
  width: 110px;
}
.menu__item a, .menu-scroll {
  color: #fdfee7;
  font: 400 16px / 24px Inter, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 26px;
}
.menu__item a img {
  width: 24px;
  height: 24px;
}
.menu__item a:hover img {
  filter: brightness(0) saturate(100%) invert(87%) sepia(24%) saturate(5095%)
    hue-rotate(260deg) brightness(85%) contrast(98%);
}

.box-btn-menu.decs {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.box-btn-menu.decs button {
  padding: 6px 12px;
  border: 0;
  border-radius: 8px;
  background: #ff5ab3;
  color: #fff;
  font-weight: 600;
}

.content {
  padding: 70px 0 0 0;
}
.logo-side-bar {
  display: block;
  max-width: 110px;
  margin-top: 12px;
  margin-left: 55px;
}
.sidebar.small .logo-side-bar {
  display: none;
}

.hero {
  padding: 24px 3px 24px 24px;

  position: relative;
}
.hero * {
  box-sizing: border-box;
}
.hero__container {
  max-width: 100%;
}
.hero__swiper {
  overflow: hidden;
  overscroll-behavior: contain;
}
.hero__slide {
  position: relative;
  height: 244px;
  padding: 24px;
  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: 244px;
  width: 100%;
  max-width: 500px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__slide h4 {
  color: #fbfbff;

  font-family: Sora;
  font-size: 23.453px;
  font-style: normal;
  font-weight: 800;
  line-height: 26.58px; /* 113.333% */
  text-transform: uppercase;
}
.hero__slide h4 strong {
  color: #fbfbff;

  font-family: Sora;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 34px; /* 113.333% */
  text-transform: uppercase;
}
.hero__slide .bonus-hero {
  display: inline-block;
  margin-top: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.37);
  color: #2e3458;
  padding: 8px 6px;

  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 10px; /* 125% */
  text-transform: uppercase;
}
.hero__slide .bonus-hero strong {
  color: #2e3458;

  text-align: center;
  font-family: Sora;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
}

.main-btn button {
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(0deg, #2bc368 0%, #2bc368 100%);
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
  padding: 12px 32px;
  font: 600 16px / 24px Inter, sans-serif;
  margin-top: 10px;
}
.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: #fff;
}

.hero__pagination .swiper-pagination-bullet:hover {
  background-color: #fff;
}
.hero__slide:hover img {
  transform: scale(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(255, 255, 255, 0.5);
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gwg-card__win {
  overflow: hidden;
  color: #2bc368;
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  max-width: 69px;
  text-wrap: nowrap;
}

.gwg-card__game {
  max-width: 69px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: rgba(255, 255, 255, 0.5);
  text-overflow: ellipsis;
  font-family: Inter;
  text-wrap: nowrap;
  font-size: 10px;
  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;
  height: 44px;
  max-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  transition: opacity 0.3s ease-in-out;
  gap: 8px;

  background: #31375b;
}
.kcats__card:hover {
  opacity: 0.7;
}
.kcats__card.sport-btn span {
  color: #2bc368;
}
.kcats__card,
.kcats__card * {
  transform: none !important;
}
.kcats__card img {
  width: 24px;
  height: 24px;
  pointer-events: none;
  -webkit-user-drag: none;
}
.kcats__card span {
  font: 400 14px / 12px Inter, sans-serif;
  color: white;
}

.kcats__nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.kcats__btn {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a1f2d;
  border: 1px solid #394055;
  color: #e9ecf1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 6;
}
.kcats__btn svg {
  width: 18px;
  height: 18px;
}

.box__more {
  gap: 22px;
  color: #9b82ff;
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.box__category {
  padding: 34px 0px 20px 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box__more__prev__next {
  border-radius: 8px;
  border: 1px solid #31375b;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.box__more .more__prev,
.box__more .more__next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box__more .more__prev svg {
  width: 16px;
  height: 16px;
  stroke: #464c71;
}
.box__more .more__next svg {
  width: 16px;
  height: 16px;
  stroke: #7c87b3;
}
.box__more .more__prev:hover,
.box__more .more__next:hover {
  filter: brightness(1.2);
  transition: 0.9s;
  cursor: pointer;
}
.box__category__info {
  display: flex;
  gap: 8px;
  align-items: center;
}
.box__category__info .decor {
  border-radius: 4px;
  background: #32c8c8;
  width: 8px;
  height: 67px;
}
.box__category__info .decor.mini {
  width: 8px;
  height: 32px;
}
.box__category__info__center {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.box__category__info__center h3 {
  color: #fff;
  font-family: Sora;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
.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__container {
    padding: 34px 24px;
  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 {
  width: 100%;
  padding: 0px 0px 0px 24px;
  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%;
  max-width: 80px;
  max-height: 28px;
}
.providers__swiper .swiper-wrapper {
  align-items: center;
}
.banner {
  padding: 0 22px;
}
.banner__contant {
  padding: 79px 22px;
  background-image: url(../img/banner-pragmatic.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.banner__contant h2 {
  color: #fff;

  font-family: Sora;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.main__btn button {
  border: none;
  padding: 16px 96px;
  font-family: Inter;
  font-size: 16px;
  background: #2bc368;

  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: white;
}
.main__btn:hover button {
  filter: brightness(1.2);
  transition: 0.9s;
}

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

.footer__container {
  max-width: 100%;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 32px;
}

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

.footer__language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #e9eef7;
  cursor: pointer;
}

.footer__language img {
  width: 16px;
  height: 16px;
}

.footer__language svg {
  width: 12px;
  height: 12px;
  color: #9aa3b2;
}

.footer__copyright {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #e9eef7;
  margin: 0;
}

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

.footer__legal p {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(233, 238, 247, 0.471);
  margin: 0;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer__heading {
  font-family: Sora, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e9eef7;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

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

.footer__links li {
  margin: 0;
  margin-bottom: 8px;
}

.footer__links a {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(233, 238, 247, 0.611);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #e9eef7;
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

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

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

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

.footer__responsible {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.footer__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e9eef7a2;
  border-radius: 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e9eef7;
}

.footer__responsible p {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(233, 238, 247, 0.7);
  margin: 0;
}

.footer__begambleaware img {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

.footer__divider {
  height: 1px;
  background: rgba(233, 238, 247, 0.1);
  margin: 24px 0;
}

.footer__providers,
.footer__payments {
  padding: 16px 0;
}

.footer__providers-list,
.footer__payments-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__providers-list img,
.footer__payments-list img {
  width: 100%;
  max-width: 62px;
  opacity: 0.7;

  transition: opacity 0.3s ease;
}
.footer__payments-list img {
  opacity: 0.4;
  width: 80%;
  max-width: 62px;
  max-height: 16px;
}

.footer__providers-list img:hover,
.footer__payments-list img:hover {
  opacity: 1;
}

/* 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: 16px 22px;
  background: #31375b;
  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: 0;
  right: 0;
}

.benefits-card:hover {
  background: #3e4666;
}

.benefits-card__title {
  color: #fff;
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.benefits-card__description {
  color: rgba(255, 255, 255, 0.4);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 24px;
  max-width: 180px;
}

.benefits-card__link {
  color: #9b82ff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  transition: color 0.3s ease;
}

.benefits-card__link:hover {
  color: #b5a4ff;
}

.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: #fbfbfb;
  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: #fff;
}

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

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

.activity-table__container {
  width: 100%;
  border-radius: 12px;
  background: #31375b;
  padding: 16px;
}

.activity-table__table {
  width: 100%;
  border-collapse: collapse;
  background: #292e46;
}

.activity-table__table thead {
  background: #31375b;
  border-bottom: none;
}

.activity-table__table th {
  padding: 8px;
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: rgba(233, 238, 247, 0.7);
}

.activity-table__table th:nth-child(3) {
  text-align: center;
}
.activity-table__table th:nth-child(5) {
  text-align: right;
}

.activity-table__table th:nth-child(4) {
  text-align: center;
}

.activity-table__table th:nth-child(2),
.activity-table__table th:nth-child(4) {
  border-left: 4px solid #31375b;
  border-right: 4px solid #31375b;
}

.activity-table__table td:nth-child(2),
.activity-table__table td:nth-child(4) {
  border-left: 4px solid #31375b;
  border-right: 4px solid #31375b;
}

.activity-table__table tbody tr {
  background: #1f1f3a;
}
.activity-table__table tbody tr:nth-child(even) {
  background: #31375b;
}

.activity-table__table tbody tr:last-child {
  border-bottom: none;
}

.activity-table__table td {
  padding: 8px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #e9eef7;
}

.activity-table__table td:nth-child(3) {
  text-align: center;
}
.activity-table__table td:nth-child(5) {
  text-align: right;
}

.activity-table__table td:nth-child(4) {
  text-align: center;
}

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

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

.activity-table__game-name {
  color: #e9eef7;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.activity-table__profit {
  color: #2bc368 !important;
}

.info {
  padding: 0 24px;
}
.info h2 {
  color: #ffff;
  font-family: Sora;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 91.429% */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info p {
  color: #fff;
  text-overflow: ellipsis;
  opacity: 0.7;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}
.info .main__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.info .main__btn button {
  padding: 12px 20px;
}

/* page__promo */
.banner-promo {
  margin: 47px 0 80px;
  height: 290px;
  max-width: 100%;
}
.page__promo h2 {
  font-family: Sora;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 91.429% */
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page__promo p {
  color: white;
  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: #fff;
  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: #2bc368;
  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: #fff;
  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;
}

.faq h2 {
  color: #ffff;
  font-family: Sora;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.faq__item {
  border-radius: 8px;
  background: #31375b;

  box-shadow: 0 1px 4px 0 rgba(25, 33, 61, 0.06);

  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
  cursor: pointer;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color 0.3s ease;
}

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

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

.faq__icon {
  position: absolute;
  width: 25px;
  height: 30px;
  stroke: #ffffff;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

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

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

.faq__item.active .faq__icon--plus {
  opacity: 0;
  transform: rotate(90deg);
}

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

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

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

.faq__answer p {
  color: white;

  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  padding-top: 16px;
}
.nav-link {
  cursor: pointer;
}
/* Footer language dropdown */
.footer-lang { position: relative; }

.footer-lang__toggle{
  display:flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:0;
  padding:0;
  color:inherit;
  cursor:pointer;
}

.footer-lang__drop{
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  z-index:50;
  min-width:160px;
  padding:8px;
  border-radius:10px;
  background:#232341;
}

.footer-lang__link{
  display:block;
  padding:6px 10px;
  border-radius:8px;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.footer-lang__link:hover{
  background:rgba(255,255,255,.06);
}
/* =========================
   PROSE (контент внутренних страниц)
   работает ТОЛЬКО внутри .sb-prose
   ========================= */

.sb-prose{
  color: #fff;
  line-height: 1.65;
}

.sb-prose__title{
  color:#fff;
  margin: 0 0 16px;
}

.sb-prose h1,
.sb-prose h2,
.sb-prose h3,
.sb-prose h4,
.sb-prose h5,
.sb-prose h6{
  color:#fff;
  margin: 0 0 14px;
}

.sb-prose p{
  color:#fff;
  margin: 0 0 14px;
}

.sb-prose strong,
.sb-prose b{
  color:#fff;
  font-weight: 700;
}

.sb-prose em,
.sb-prose i{
  color:#fff;
}

.sb-prose ul,
.sb-prose ol{
  color:#fff;
  margin: 0 0 14px 20px;
}

.sb-prose li{
  color:#fff;
  margin: 6px 0;
}

/* ссылки */
.sb-prose a{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sb-prose a:hover{
  opacity:.85;
}

/* если кнопки у тебя как <a class="main__btn"> */
.sb-prose a.main__btn{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* отступ для блоков кнопок между абзацами */
.sb-prose .spiny-cta{
  margin: 18px 0;
}

/* =========================
   TABLES (Gutenberg wp-block-table + обычные table)
   ========================= */

/* чтобы таблица не ломала страницу на мобилке */
.sb-prose figure.wp-block-table{
  margin: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

/* таблица */
.sb-prose figure.wp-block-table table,
.sb-prose table{
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* ячейки */
.sb-prose figure.wp-block-table th,
.sb-prose figure.wp-block-table td,
.sb-prose table th,
.sb-prose table td{
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  vertical-align: top;
  color: #fff;
}

/* заголовки таблицы */
.sb-prose figure.wp-block-table th,
.sb-prose table th{
  font-weight: 600;
  background: rgba(255,255,255,0.06);
}

/* зебра */
.sb-prose figure.wp-block-table tbody tr:nth-child(even),
.sb-prose table tbody tr:nth-child(even){
  background: rgba(255,255,255,0.03);
}

/* ссылки в таблицах */
.sb-prose figure.wp-block-table a,
.sb-prose table a{
  color:#fff;
  text-decoration: underline;
}

/* =========================
   OPTIONAL: blockquote / hr
   ========================= */

.sb-prose blockquote{
  border-left: 3px solid rgba(255,255,255,0.25);
  padding-left: 14px;
  margin: 16px 0;
  color: rgba(255,255,255,0.92);
}

.sb-prose hr{
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}
.sb-prose__inner {
    padding: 20px;
}
.footer__new-link {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(233, 238, 247, 0.611);
    text-decoration: none;
    transition: color 0.3s ease;
}
/* ===== WYSIWYG dark content wrapper ===== */
.binobet-wysiwyg,
.binobet-wysiwyg p,
.binobet-wysiwyg li,
.binobet-wysiwyg dd,
.binobet-wysiwyg dt,
.binobet-wysiwyg blockquote {
  color: #fff;
}

.binobet-wysiwyg h1,
.binobet-wysiwyg h2,
.binobet-wysiwyg h3,
.binobet-wysiwyg h4,
.binobet-wysiwyg h5,
.binobet-wysiwyg h6 {
  color: #fff;
}

/* links */
.binobet-wysiwyg a {
  color: #fff;
  text-decoration: underline;
}

/* Gutenberg table wrapper */
.binobet-wysiwyg figure.wp-block-table {
  margin: 16px 0;
  overflow-x: auto;
}

/* tables */
.binobet-wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.binobet-wysiwyg th,
.binobet-wysiwyg td {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 14px;
  vertical-align: top;
  background: rgba(255,255,255,0.04);
}

.binobet-wysiwyg th {
  font-weight: 700;
  background: rgba(255,255,255,0.08);
}

/* lists */
.binobet-wysiwyg ul,
.binobet-wysiwyg ol {
  color: #fff;
}

.binobet-wysiwyg strong {
  color: #fff;
}

/* CTA spacing */
.binobet-wysiwyg .binobet-cta {
  margin: 18px 0 26px;
}
