:root {
  --color-primary: #0255c2;
  --color-success: #54b146;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #dddddd;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.header-main {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo img {
  max-width: 180px;
  height: auto;
}

.nav-menu {
  gap: 2rem;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

.btn-login {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-login:hover {
  background-color: #013d8f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 85, 194, 0.3);
}

.btn-signup {
  background-color: var(--color-success);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-signup:hover {
  background-color: #3d8a32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--color-white);
  transition: left 0.3s;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-inner {
  padding: 2rem;
}

.mobile-nav-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  margin-top: 0;
}

.hero-slider {
  height: 500px;
}

.hero-slide {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 85, 194, 0.8), rgba(84, 177, 70, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero {
  background-color: var(--color-success);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
  border: none;
}

.btn-hero:hover {
  background-color: #3d8a32;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(84, 177, 70, 0.4);
}

/* Breadcrumbs */
.breadcrumbs-nav {
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--color-text-light);
}

/* Main Content */
.main-content {
  flex: 1;
}

.content-wrapper {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.main-text-content {
  line-height: 1.8;
}

.main-text-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.main-text-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.main-text-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.main-text-content ul,
.main-text-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.main-text-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.main-text-content table {
  width: 100%;
  margin: 2rem auto;
  border-collapse: collapse;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-text-content table th,
.main-text-content table td {
  padding: 1rem;
  text-align: left;
  border: 2px solid var(--color-border);
}

.main-text-content table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.main-text-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Advantages Section */
.xj8k2-advantages {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.xj8k2-advantages h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.adv-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.adv-icon {
  font-size: 3rem;
}

.adv-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.adv-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.screenshots-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.screenshot-card {
  transition: transform 0.3s;
}

.screenshot-card:hover {
  transform: scale(1.05);
}

.screenshot-card img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tournaments Section */
.tournaments-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tournaments-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.tournament-card {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid #ffcc80;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.tournament-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e65100;
}

.tournament-timer {
  background-color: rgba(230, 81, 0, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
}

.timer-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.timer-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e65100;
  display: block;
  margin-top: 0.25rem;
}

.tournament-prize {
  text-align: center;
  font-size: 1.1rem;
  margin: 1rem 0;
  color: var(--color-text);
}

.tournament-prize strong {
  color: #e65100;
  font-size: 1.3rem;
}

/* Bonuses Section */
.bonuses-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bonuses-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.bonus-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid #81c784;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.bonus-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #ff5722;
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bonus-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2e7d32;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.bonus-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(46, 125, 50, 0.2);
  color: var(--color-text-light);
}

.bonus-features li:last-child {
  border-bottom: none;
}

/* Slot Game Section */
.slot-game-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slot-game-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.slot-machine-wrapper {
  display: flex;
  justify-content: center;
}

.slot-machine {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.slot-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.slot-reel {
  background-color: var(--color-white);
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s;
}

.slot-reel.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.slot-result {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 600;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.slot-result.win {
  animation: celebrate 0.5s ease-in-out;
}

@keyframes celebrate {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Author Section */
.author-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.author-card {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #ba68c8;
}

.author-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #6a1b9a;
}

.author-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.author-bio {
  line-height: 1.8;
  color: var(--color-text-light);
}

/* Footer */
.footer-main {
  background-color: var(--color-white);
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: var(--color-primary);
}

.footer-payments img,
.footer-providers img {
  max-width: 100%;
  height: auto;
}

.footer-legal {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fixed-widget.hidden {
  display: none;
}

.widget-inner {
  background: linear-gradient(135deg, var(--color-success) 0%, #3d8a32 100%);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 350px;
}

.widget-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.widget-close:hover {
  opacity: 1;
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-white);
}

.widget-icon {
  font-size: 2.5rem;
}

.widget-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.widget-text strong {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.widget-text span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.widget-btn {
  background-color: var(--color-white);
  color: var(--color-success);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-slider,
  .hero-slide {
    height: 400px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .fixed-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .widget-inner {
    max-width: 100%;
  }

  .slot-display {
    gap: 0.5rem;
  }

  .slot-reel {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.p9k2l {
  /* Unique class for styling */
}

.k9j2x {
  /* Unique class for styling */
}

/* Unused styles for obfuscation */
.wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  flex-wrap: wrap;
}

.elementor-section {
  position: relative;
}

.yoast-schema-wrapper {
    display: none;
}
     /* Контейнер для адаптації таблиць */
 .table-wrapper {
     width: 100%;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
 }

/* Базові стилі для таблиць */
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* запобігає стисканню колонок */
}

/* Для малих екранів */
@media (max-width: 768px) {
    .table-wrapper {
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    .table-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .table-wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
}

/* === MOBILE: горизонтальний скрол блоків === */
@media (max-width: 767.98px) {
    .swiper-screenshots,
    .swiper-tournaments,
    .swiper-bonuses {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: .5rem; /* місце під скролбар */
    }
    .swiper-screenshots .swiper-wrapper,
    .swiper-tournaments .swiper-wrapper,
    .swiper-bonuses .swiper-wrapper {
        display: flex;
        gap: 12px;
        width: max-content; /* щоб не ламало перенос */
    }
    .swiper-screenshots .swiper-slide,
    .swiper-tournaments .swiper-slide,
    .swiper-bonuses .swiper-slide {
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: start;
    }
    .swiper-pagination { display: none !important; }
    /* картинки всередині — на всю ширину картки */
    .swiper-slide img { width: 100%; height: auto; display: block; }
}

/* === DESKTOP: нічого не міняємо, 3 в ряд як було === */
@media (min-width: 768px) {
    .swiper-screenshots,
    .swiper-tournaments,
    .swiper-bonuses {
        overflow: visible;
        padding-bottom: 0;
    }
}
/* ==== MOBILE FIX: горизонт. скрол без "хвоста" справа ==== */
@media (max-width: 767.98px) {
    /* контейнер скролиться сам, сторінка не роз’їжджає */
    .swiper-screenshots,
    .swiper-tournaments,
    .swiper-bonuses {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding: 0;                 /* без внутр. відступів, щоб не було зайвини */
        max-width: 100%;
    }

    /* глушимо верстку Swiper і робимо рівний ряд */
    .swiper-screenshots .swiper-wrapper,
    .swiper-tournaments .swiper-wrapper,
    .swiper-bonuses .swiper-wrapper {
        display: flex !important;
        gap: 12px;
        transform: none !important;   /* Swiper translateX */
        width: auto !important;       /* не роздуваємо width=max-content */
        padding-inline: 16px;         /* симетричні поля для красивого початку/кінця */
        box-sizing: border-box;
    }

    /* кожна картка займає ширину вьюпорта мінус поля контейнера */
    .swiper-screenshots .swiper-slide,
    .swiper-tournaments .swiper-slide,
    .swiper-bonuses .swiper-slide {
        flex: 0 0 calc(100% - 32px);  /* 32 = 16px ліворуч + 16px праворуч */
        max-width: calc(100% - 32px);
        scroll-snap-align: start;
    }

    /* компенсуємо ліве поле, щоб останній слайд ставав рівно до правого краю */
    .swiper-screenshots .swiper-wrapper::after,
    .swiper-tournaments .swiper-wrapper::after,
    .swiper-bonuses .swiper-wrapper::after {
        content: "";
        flex: 0 0 16px; /* дорівнює правому внутр. полю wrapper'а */
    }

    /* картинки не вилазять */
    .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* пункти й стрілки не потрібні у горизонт. скролі */
    .swiper-pagination,
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}

/* DESKTOP — без змін */
@media (min-width: 768px) {
    .swiper-screenshots,
    .swiper-tournaments,
    .swiper-bonuses { overflow: visible; }
}
/* ==== MOBILE HEADER BURGER: завжди видимий ==== */
@media (max-width: 767.98px) {
    /* хедер поверх усього, нічого не обрізаємо */
    .header-main {
        position: sticky; /* як і було */
        top: 0;
        z-index: 2000;
        overflow: visible !important;
    }

    /* даємо місце під бургер справа, щоб його не перекривали кнопки */
    .header-main .container,
    .header-main .container-fluid {
        padding-right: 56px; /* ≈ ширина бургер-зони */
        max-width: 100%;
    }

    /* сам бургер фіксуємо у правому верхньому куті хедера */
    .burger-menu {
        position: absolute !important;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        align-items: center;
        gap: 4px;
        z-index: 2100;           /* вище всіх елементів хедера */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .burger-menu span { display: block !important; }

    /* якщо кнопки "Вход/Регистрация" штовхають верстку — трохи піджимаємо їх на мобілці */
    .header-main .btn-login,
    .header-main .btn-signup {
        padding: 0.5rem 0.9rem;
        font-size: .9rem;
    }
    /* або, якщо місця зовсім мало, можна приховати одну/обидві на xs:
       .header-main .btn-login, .header-main .btn-signup { display:none; } */

    /* запобігаємо горизонтальному скролу сторінки */
    html, body, .wrapper-main { max-width: 100%; overflow-x: hidden; }
}
@media (max-width: 767.98px) {
    .xj8k2-advantages .row,
    .screenshots-section .row,
    .tournaments-section .row,
    .bonuses-section .row,
    .footer-main .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0;
    }

    .swiper-screenshots,
    .swiper-tournaments,
    .swiper-bonuses {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-left: 12px;
        padding-right: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    .swiper-screenshots .swiper-wrapper,
    .swiper-tournaments .swiper-wrapper,
    .swiper-bonuses .swiper-wrapper {
        display: flex !important;
        gap: 12px;
        transform: none !important;
        width: auto !important;
    }
    .swiper-screenshots .swiper-slide,
    .swiper-tournaments .swiper-slide,
    .swiper-bonuses .swiper-slide {
        flex: 0 0 calc(100% - 24px);
        max-width: calc(100% - 24px);
        scroll-snap-align: start;
    }
    .swiper-screenshots .swiper-wrapper::after,
    .swiper-tournaments .swiper-wrapper::after,
    .swiper-bonuses .swiper-wrapper::after {
        content: "";
        flex: 0 0 12px;
    }
}
