
    /* Основной контейнер */
.bonus-list-container {
    width: 100%;       /* Занимаем всю ширину */
    max-width: 100%;   /* Убираем ограничение в пикселях */
    margin: 0;         /* Убираем автоматические отступы по краям */
    font-family: 'Inter', 'Helvetica', sans-serif;
    box-sizing: border-box; 
}

/* Заголовок */
.bonus-list-header {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Карточка бонуса */
.bonus-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #23282e;
    border: 1px solid #363c45;
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; 
    box-sizing: border-box; 
}

/* Эффект при наведении */
.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #4a525e;
}

/* Логотип - ФИКС ТУТ */
.bonus-logo-wrapper {
    flex: 0 0 80px; /* Фиксированный размер для десктопа */
    width: 80px;
    height: 80px;
    border-radius: 12px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Чтобы не обрезалось */
    display: block;
}

/* Текст бонуса */
.bonus-text {
    flex-grow: 1;
    padding: 0 25px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* Кнопка */
.bonus-btn-wrapper {
    flex: 0 0 auto;
}

.bonus-btn {
    display: inline-block;
    background: var(--vsk-global-accent-color) !important;
    color: var(--vsk-global-accent-text-color) !important;
    text-decoration: none !important;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 168, 67, 0.3);
    white-space: nowrap;
    transition: all .3s ease;
}

.bonus-btn:hover {
    filter: brightness(85%);
    transition: all .3s ease;
}

/* --- Адаптивность --- */
@media (max-width: 768px) {
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .bonus-logo-wrapper {
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
    }

    .bonus-text {
        padding: 0 0 20px 0;
        font-size: 16px;
    }

    .bonus-btn-wrapper {
        width: 100%;
    }

    .bonus-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .bonus-list-header {
        font-size: 24px;
    }
}



.reviews-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0px;
  color: #fff;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.reviews-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.review-card {
  background: linear-gradient(145deg, #16191b 0%, #0d0f10 100%);
  border: 1px solid #23272a;
  border-radius: 20px;
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--vsk-global-accent-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.review-card:hover::before {
  opacity: 0.2;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 18px;
  font-weight: 600;
}

.review-stars {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1;
  color: #FFD43B;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
  margin-top: 0;
}

.reviews-swiper {
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.reviews-nav-btn {
  position: static;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  user-select: none;
  flex-shrink: 0;
}

.reviews-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-custom {
  position: static !important;
  width: auto !important;
  transform: none !important;
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  display: block;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .reviews-section {
    padding-left: 11px;
    padding-right: 11px;
  }
}

  .reviews-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
  }

  .reviews-swiper .review-card {
    height: 100%;
  }



/* ===== ТОЧКИ (PAGINATION) ===== */
.swiper-pagination-custom {
  position: static !important;
  width: auto !important;
  transform: none !important;
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  display: block;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 767px) {
  .reviews-section {
    /* Добавляем отступы по бокам 11px только на мобильных */
    padding-left: 11px;
    padding-right: 11px;
  }
}







    /* Основной контейнер */
.author-card-wrapper {
    background: linear-gradient(145deg, #16191b 0%, #0d0f10 100%);
    border: 1px solid #23272a;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    box-sizing: border-box;
    line-height: 1.6;
    /* На десктопе внешних отступов нет, так как ширину регулирует колонка Elementor */
    margin: 0; 
}

/* Блок с изображением */
.author-card-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}

.author-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255, 0.1);
}

/* Блок с контентом */
.author-card-content {
    flex-grow: 1;
}

/* Имя автора (ссылка) */
.author-name-link {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none !important;
    display: inline-block;
    margin-bottom: 5px;
    transition: opacity 0.3s;
}

.author-name-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Должность */
.author-role {
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Текст описания */
.author-bio {
    font-size: 15px;
    color: #d1d1d1;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Контейнер иконок */
.author-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Стили ссылок иконок */
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-link:hover {
    background-color: #ffffff;
    color: #2F3636;
    transform: translateY(-3px);
}

.author-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3a3f40;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: #ffffff;
  color: #000000;
}

/* АДАПТИВНОСТЬ (Мобильные устройства) */
@media (max-width: 768px) {
    .author-card-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
        /* ДОБАВЛЕНО: Отступы по бокам 11px для мобильных */
        margin-left: 11px;
        margin-right: 11px;
    }

    .author-card-image {
        width: 150px;
        height: 150px;
    }

    .author-socials {
        justify-content: center;
    }
}



/* Контейнер без фону */
.custom-pay-section {
    width: 100%;
    padding: 30px 0;
    background: transparent;
    display: flex;
    justify-content: center;
}

/* Ряд з іконками */
.pay-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 45px;
    max-width: 1300px;
    width: 100%;
    padding: 0 20px;
}

/* Стиль окремої іконки */
.pay-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.pay-item:hover {
    transform: scale(1.1);
}

/* Налаштування розміру зображень */
.pay-item img {
    height: 42px; /* Збільшений розмір */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Адаптивність для планшетів */
@media (max-width: 1024px) {
    .pay-row {
        gap: 30px;
    }
    .pay-item img {
        height: 36px;
    }
}

/* Адаптивність для смартфонів */
@media (max-width: 767px) {
    .pay-row {
        gap: 20px;
        justify-content: center;
    }
    .pay-item {
        flex: 0 0 auto; 
    }
    .pay-item img {
        height: 30px;
    }
}




.display-none {
  display: none !important
}

html body {
  color: #ffffff !important;
}

.themephi-breadcrumbs .breadcrumbs-inner {
    padding-top: 170px !important;
}


.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 260px;
  padding: 20px;
}

.hero-logo .themephi-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img.themephi-multi-image {
  width: 100%;          /* ← ВАЖНО */
  max-width: 100%;     /* ← контроль размера */
  height: auto;

  display: block;
}




table {
  width: 100%;
  border-collapse: collapse;
  background-color: #111;
  color: #fff;
}

table th,
table td {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  text-align: left;
  font-size: 15px;
}

table th {
  background-color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 1024px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}




.highlight-box {
  background: #fff;
  border: 1px solid #f3c2c2;
  border-left: 4px solid #d92d20;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b;
  margin: 20px 0;
}

.highlight-box strong {
  color: #b42318;
}


blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 28px 24px 32px;
  background: #000000;
  border-left: 4px solid #d92d20;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.7;
  color: #1d2939;
}

blockquote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 48px;
  color: rgb(217, 45, 32);
  font-weight: 700;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #667085;
}



/* ===== CLEAN GLASS MENU ===== */

.menu-wrap-off {
  background-color: rgba(255,255,255,0.82) !important;
  
  backdrop-filter: blur(12px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
  
  color: #111 !important;
}

/* Текст */
.menu-wrap-off p,
.menu-wrap-off span,
.menu-wrap-off li {
  color: #111 !important;
}

/* Ссылки */
.menu-wrap-off a {
  color: #111 !important;
}

/* SVG иконки */
.menu-wrap-off svg {
  fill: #111 !important;
  color: #111 !important;
}

/* Иконки через font */
.menu-wrap-off i {
  color: #111 !important;
}

/* ВАЖНО — убираем возможный белый фон у внутренних контейнеров */
.menu-wrap-off > div {
  background: transparent !important;
}

/* ===== FIX CONTACT BLOCK COLORS ===== */

/* Перебиваем встроенный color:#fff */
.menu-wrap-off .contact-info-block,
.menu-wrap-off .contact-text {
  color: #111 !important;
}

/* Ссылки внутри контактов */
.menu-wrap-off .contact-text a {
  color: #111 !important;
}

/* Иконки SVG — перебиваем stroke */
.menu-wrap-off .contact-icon svg path,
.menu-wrap-off .contact-icon svg circle {
  stroke: #111 !important;
}

/* Если где-то используется fill */
.menu-wrap-off .contact-icon svg {
  fill: none !important;
}



/* ===== Блюр хедера ===== */
.tp-sticky {
  position: sticky;
  top: 0;
  
  width: 100%;
  
  background-color: rgba(9,9,8,.75) !important;
  
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  
  z-index: 99;
}



/* --- Колесо фортуны --- */
.open-wof-trigger {
  cursor: pointer !important; /* Курсор-рука */
  transition: transform 0.2s ease !important; /* Плавность */
}
.open-wof-trigger:hover {
  transform: scale(1.02); /* Легкое увеличение при наведении для эффекта кликабельности */
}

/* --- 1. FLOATING WIDGET (DEFAULT SMALL ICON) --- */
.wof-floating-widget {
  position: fixed;
  bottom: 20px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999999 !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4) !important;
  border: 2px solid rgba(255,255,255,0.8) !important;
  background-color: #ffffff !important;
  animation: wof-spin-anim 10s linear infinite;
  transition: transform 0.3s;
  padding: 0 !important; margin: 0 !important; display: block !important;
}

/* Если вы хотите СКРЫТЬ маленькую иконку и оставить только ваше большое колесо,
раскомментируйте (уберите /* и * /) строчку ниже: */
/* .wof-floating-widget { display: none !important; } */

.wof-widget-icon { width: 100% !important; height: 100% !important; display: block !important; border-radius: 50%; }
.wof-floating-widget:hover { transform: scale(1.1); }

/* --- 2. OVERLAY --- */
.wof-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  
  /* Glass + blur */
  background: rgba(0, 0, 0, 0.4) !important;
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  z-index: 1000000 !important;
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  
  will-change: opacity;
}

.wof-overlay.wof-open {
  opacity: 1;
  visibility: visible;
}

/* Fallback если blur не поддерживается */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .wof-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
  }
}

/* --- 3. WHEEL --- */
.wof-wrapper {
  position: relative;
  width: 500px; height: 500px;
  display: flex; justify-content: center; align-items: center;
  overflow: visible !important;
  transform: scale(0.65); 
  transition: transform 0.3s ease;
}

@media (min-width: 768px) { .wof-wrapper { transform: scale(0.9); } }
@media (min-width: 1024px) { .wof-wrapper { transform: scale(1.0); } }
@media (min-width: 1440px) { .wof-wrapper { transform: scale(1.25); } }

/* POINTER */
.wof-pointer {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 45px; height: 55px;
  z-index: 50 !important;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.5));
  transition: transform 0.1s ease-out;
  transform-origin: 50% 10px;
}
.wof-pointer svg { width: 100%; height: 100%; display: block; overflow: visible; }

#wofCanvas {
  display: block; width: 500px; height: 500px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  z-index: 1;
}

.wof-center {
  position: absolute; width: 110px; height: 110px;
  background: #2d3436; border-radius: 50%; z-index: 5;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.wof-spin-btn {
  position: absolute; width: 80px; height: 80px;
  background: #2d3436 !important;
  border: 4px solid #d32222 !important; /* RED */
  border-radius: 50%; color: white !important;
  font-family: Arial, sans-serif; font-weight: bold; font-size: 18px;
  cursor: pointer; z-index: 20; text-transform: uppercase;
  letter-spacing: 1px; outline: none;
  animation: wof-pulse 1.5s infinite ease-in-out;
  transition: background 0.3s;
  display: flex; justify-content: center; align-items: center; padding: 0;
}
.wof-spin-btn:hover { background: #3a4b50 !important; }
.wof-spin-btn:active { animation: none; transform: scale(0.95); }
.wof-spin-btn:disabled { animation: none; cursor: not-allowed; opacity: 0.5; background: #111 !important; transform: scale(1); }

/* --- 4. POPUP --- */
.wof-popup-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; justify-content: center; align-items: center;
  z-index: 200 !important;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease;
  pointer-events: none;
}
.wof-popup-overlay.wof-active { opacity: 1; visibility: visible; pointer-events: all; }

#wofOverlay #wofPopup .wof-popup-content {
  position: relative;
  background: linear-gradient(135deg, #2d3436, #1e272e) !important;
  padding: 60px 80px;
  border-radius: 25px;
  text-align: center;
  color: #fff !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.95) !important;
  border: 3px solid #d32222 !important; /* RED */
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  min-width: 300px;
  font-family: Arial, sans-serif;
  display: block !important;
  zoom: 0.9;
}

.wof-popup-overlay.wof-active .wof-popup-content { transform: translateY(0) scale(1); opacity: 1; }

.wof-popup-close {
  position: absolute; top: 15px; right: 20px; font-size: 30px; color: #888;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.wof-popup-close:hover { color: #fff; }

.wof-title { font-size: 45px; font-size: 45px; font-weight: bold; color: #ccc !important; margin: 0 0 10px 0; }
.wof-prize { font-size: 80px; font-weight: 800; color: #feca57 !important; margin: 20px 0 40px 0; text-shadow: 0 4px 15px rgba(254, 202, 87, 0.4); }

#wofClaimBtn.wof-claim-btn {
  display: inline-block !important; 
  text-decoration: none !important;
  padding: 20px 60px;
  background: linear-gradient(to right, #d32222, #ff6b6b) !important; /* RED */
  border: none !important; border-radius: 40px; 
  color: white !important; font-size: 24px; font-weight: bold; 
  cursor: pointer; 
  box-shadow: 0 10px 25px rgba(211, 34, 34, 0.5) !important; /* RED */
  animation: wof-pulse 1.5s infinite ease-in-out;
  transition: transform 0.1s, box-shadow 0.2s;
  text-transform: uppercase; outline: none; opacity: 1 !important;
  line-height: 1.2 !important;
}

#wofClaimBtn.wof-claim-btn:hover { animation: none; transform: scale(1.05); box-shadow: 0 15px 35px rgba(211, 34, 34, 0.8) !important; }
#wofClaimBtn.wof-claim-btn:active { animation: none; transform: scale(0.98); }

@keyframes wof-spin-anim { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes wof-pulse { 0% { transform: scale(1); box-shadow: 0 0 0 rgba(211, 34, 34, 0); } 50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(211, 34, 34, 0.6); } 100% { transform: scale(1); box-shadow: 0 0 0 rgba(211, 34, 34, 0); } }

/* ===== CLOSE BUTTON (MAIN OVERLAY) ===== */
.wof-close-game {
  position: absolute;
  top: 25px;
  right: 30px;
  
  width: 48px;
  height: 48px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  
  border-radius: 50%;
  cursor: pointer;
  
  z-index: 1000001 !important;
  
  transition: all 0.2s ease;
}

.wof-close-game:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}





/* --- Куки баннер --- */
#rp-cookie-banner {
  position: fixed;
  bottom: 20px; /* Отступ по умолчанию (десктоп) */
  left: 0;
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 99999;
  padding: 0 15px;
}

#rp-cookie-banner * {
  box-sizing: border-box;
}

#rp-cookie-banner .rp-cookie-box {
  background: #ffffff;
  color: #111111;
  width: 100%;
  max-width: 760px;
  border-radius: 10px;
  padding: 24px 22px 22px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  text-align: center; /* Текст всегда по центру */
}

#rp-cookie-banner.active .rp-cookie-box {
  opacity: 1;
  transform: translateY(0);
}

#rp-cookie-banner p {
  margin: 0 0 18px 0;
  line-height: 1.6;
  font-size: 15px;
}

#rp-cookie-banner a,
#rp-cookie-banner a:visited {
  color: #2d6cdf !important;
  text-decoration: none !important;
  font-weight: 500;
}

#rp-cookie-banner a:hover {
  text-decoration: underline !important;
  color: #1f54b5 !important;
}

/* Контейнер кнопок — ВСЕГДА по центру */
#rp-cookie-banner .rp-btn-container {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center; 
}

#rp-cookie-banner .rp-btn {
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none !important;
  cursor: pointer;
  transition: background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

#rp-cookie-banner .rp-btn-primary {
  background: #2d6cdf !important;
  color: #fff !important;
}

#rp-cookie-banner .rp-btn-primary:hover {
  background: #1f54b5 !important;
}

#rp-cookie-banner .rp-btn-secondary {
  background: #f0f0f0 !important;
  color: #111 !important;
}

#rp-cookie-banner .rp-btn-secondary:hover {
  background: #e4e4e4 !important;
  color: #111 !important;
}

#rp-cookie-banner .rp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  font-size: 18px;
  line-height: 1;
  color: #777 !important;
  cursor: pointer;
  padding: 0;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 640px) {
  #rp-cookie-banner {
    bottom: 100px; /* Отступ 100px ТОЛЬКО на мобильном */
  }
  
  #rp-cookie-banner .rp-cookie-box {
    padding: 30px 18px 20px 18px;
  }
  
  #rp-cookie-banner .rp-btn {
    flex: 1 1 auto;
  }
  
  #rp-cookie-banner .rp-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 19px;
  }
}






/* --- Блок  купона --- */
.bwin-wrapper {
  width: 100%;
  display: flex;
}

.bwin-coupon-container {
  width: 100%;
  background-color: #24262b; 
  border-radius: 12px;
  padding: 35px 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Прозрачные вырезы */
  -webkit-mask: 
  radial-gradient(circle at 0px 50%, transparent 22px, #000 23px) top left / 51% 100% no-repeat,
  radial-gradient(circle at 100% 50%, transparent 22px, #000 23px) top right / 51% 100% no-repeat;
  mask: 
  radial-gradient(circle at 0px 50%, transparent 22px, #000 23px) top left / 51% 100% no-repeat,
  radial-gradient(circle at 100% 50%, transparent 22px, #000 23px) top right / 51% 100% no-repeat;
}

.coupon-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.coupon-logo-box {
  background: #0f1013;
  min-width: 220px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px;
}
.coupon-logo-box img {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.bonus-header {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff; 
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.info-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid #888;
  color: #888;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
}

.badges {
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.badge-green {
  background-color: #2b7a3d;
  color: #ffffff;
}
.badge-dark {
  background-color: #383a42;
  color: #e0e0e0;
}

.promo-field {
  flex-grow: 1;
  max-width: 250px;
  border: 2px dashed #555;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.promo-field:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: #888;
}
.promo-field span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.copy-hint {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.claim-button {
  background-color: var(--vsk-global-accent-color) !important;
  color: var(--vsk-global-accent-text-color) !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  transition: all .3s ease;
}
.claim-button:hover {
  transform: translateY(-2px);
  filter: brightness(85%);
  transition: all .3s ease;
}

@media (max-width: 900px) {
  .bwin-coupon-container {
    padding: 20px;
    -webkit-mask: none;
    mask: none;
  }
  .coupon-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .coupon-text {
    text-align: center;
    width: 100%;
  }
  .bonus-header, .badges {
    justify-content: center;
  }
  .promo-field {
    max-width: 100%;
  }
}




/* --- Блок бонуса с динамическим процентом --- */
.custom-promo-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 12px;
  padding: clamp(30px, 4vw, 0px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-promo-banner::before {
  content: "";
  position: absolute;
  top: -10px; 
  left: -10px; 
  right: -10px; 
  bottom: -10px;
  background: linear-gradient(rgba(20, 10, 30, 0.75), rgba(20, 10, 30, 0.75)), 
  url('/wp-content/uploads/2026/02/background-bonus-casino.jpg') center center/cover no-repeat;
  filter: blur(5px);
  z-index: -1;
}

.custom-promo-banner h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin: 0 0 5px 0;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.custom-promo-banner p.subtitle {
  font-size: clamp(16px, 3vw, 20px);
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.9);
}

.custom-timer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(5px, 2vw, 15px);
  margin-bottom: 25px;
}

.timer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-digits {
  display: flex;
  gap: clamp(4px, 1vw, 8px);
}

.timer-digit {
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #111111;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  width: clamp(35px, 7vw, 48px);
  height: clamp(45px, 9vw, 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.timer-separator {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  line-height: clamp(45px, 9vw, 60px);
  color: #ffffff;
  margin: 0 2px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.timer-label {
  font-size: clamp(12px, 2.5vw, 14px);
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-bonus-btn {
  display: inline-block;
  background: var(--vsk-global-accent-color) !important;
  color: var(--vsk-global-accent-text-color) !important;
  text-decoration: none;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 10px 20px -10px rgba(255, 193, 7, 0.5);
  transition: all 0.3s ease;
}

.custom-bonus-btn:hover {
  filter: brightness(85%);
  transform: translateY(-3px);
  transition: all .3s ease;
}






/* --- Блок последних выигрышей динамический --- */
:root {
  --bg-card: #181818;
  --accent-gold: #ffc107;
  --text-white: #ffffff;
  --text-gray: #717171;
  --border: 1px solid #252525;
  --accent-red: #d32222; /* Червоний колір кнопки */
}

.winners-container {
  border: var(--border);
  border-radius: 12px;
  padding: 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  width: 100%;
  box-sizing: border-box;
  background: #111010;
}

.winners-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Розносить заголовок і кнопку по боках */
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap; /* Для адаптивності на малих екранах */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.winners-header h2 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.winners-get-bonus {
  background-color: var(--vsk-global-accent-color) !important;
  color: var(--vsk-global-accent-text-color) !important;
  text-decoration: none !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  transition: all .3s ease;
}

.winners-get-bonus:hover {
  filter: brightness(85%);
  transition: all .3s ease;
  transform: translateY(-2px);
}

.winners-ticker-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.winners-ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 5px 0 15px 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.winners-ticker::-webkit-scrollbar { display: none; }

.winner-card {
  min-width: 210px;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: var(--border);
  flex-shrink: 0;
  animation: slideInFade 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideInFade {
  from { opacity: 0; transform: translateX(-30px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.winner-avatar {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important; 
  object-fit: cover !important;
  flex-shrink: 0 !important; 
  border: 1px solid #333 !important;
  display: block !important;
}

.winner-info { 
  flex: 1; 
  min-width: 0; 
}

.winner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  gap: 8px; 
  width: 100%;
}

.winner-name { 
  color: var(--accent-gold); 
  font-weight: 700; 
  font-size: 14px; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  flex-shrink: 1; 
}

.winner-time { 
  color: var(--text-gray); 
  font-size: 10px; 
  white-space: nowrap; 
  flex-shrink: 0; 
}

.winner-amount { 
  color: var(--text-white); 
  font-weight: 800; 
  font-size: 17px; 
}

.winner-card {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.4s ease forwards;
}

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

.winner-avatar {
  filter: grayscale(30%) brightness(0.9);
}

.win-label {
  font-size: 11px;
  margin-left: 6px;
  color: #ffcc00;
  font-weight: 600;
}

@media (max-width: 480px) {
  .winners-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .winners-get-bonus {
    width: 100%;
    text-align: center;
  }
}





/* --- table of content --- */
.custom-toc-container {
  background-color: #1e1e1e; 
  border: 1px solid #333; 
  border-radius: 8px;
  padding: 12px 16px;
  margin: 30px 0;
  font-family: sans-serif;
  width: 100%; 
  box-sizing: border-box;
  height: 250px; 
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333; 
  padding-bottom: 8px; 
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.toc-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0; }
.toc-toggle-btn { cursor: pointer; color: #888; font-size: 13px; user-select: none; }

.toc-body { 
  flex: 1 1 auto;
  overflow-y: auto; 
  transition: opacity 0.3s ease;
}

/* Коли блок згорнутий, ми дозволяємо йому зменшити висоту всього контейнера */
.custom-toc-container.is-collapsed {
  height: auto !important;
  min-height: 0;
}
.custom-toc-container.is-collapsed .toc-body {
  display: none;
}
.custom-toc-container.is-collapsed .toc-header {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.toc-skeleton .line {
  height: 12px;
  background: #2a2a2a;
  margin: 12px 0;
  border-radius: 4px;
  animation: toc-shimmer 1.5s infinite ease-in-out;
}
@keyframes toc-shimmer { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }

.toc-body ul { list-style: none; padding: 0; margin: 0; }
.toc-body li { margin-bottom: 8px; }
.toc-level-h2 { font-weight: 600; }
.toc-level-h3 { margin-left: 12px; font-size: 13px; }
.toc-level-h4 { margin-left: 22px; font-size: 12px; opacity: 0.8; }
.toc-body a { text-decoration: none; color: #ccc; font-size: 14px; display: block; }
.toc-body a:hover { color: #fff; }

.toc-body::-webkit-scrollbar { width: 4px; }
.toc-body::-webkit-scrollbar-track { background: #1e1e1e; }
.toc-body::-webkit-scrollbar-thumb { background: #444; border-radius: 10px; }



.custom-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 250 / 180;
  background: #000;
  text-decoration: none;
}

.game-card-img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease !important;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.play-button {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #1a1a1a;
}

.game-card:hover .play-overlay {
  opacity: 1;
}

.game-card:hover .play-button {
  transform: translateY(0);
}

.game-card:hover img {
  filter: blur(4px) brightness(0.8);
  transform: scale(1.1);
}

@media (max-width: 1024px) { .custom-games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .custom-games-grid { grid-template-columns: repeat(2, 1fr); } }





.styled-games-container {
  width: 100%;
  margin: 20px 0;
  font-family: sans-serif;
}

.styled-games-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.styled-games-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  color: inherit;
}
.title-icon {
  margin-right: 8px;
}
.styled-games-button {
  background-color: var(--vsk-global-accent-color) !important;
  color: var(--vsk-global-accent-text-color) !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.2s;
  transition: all .3s ease;
}
.styled-games-button:hover {
  filter: brightness(85%);
  transition: all .3s ease;
}

.styled-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  gap: 16px;
}

@media (max-width: 1200px) {
  .styled-games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .styled-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .styled-games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .styled-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game-card-styled {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.game-card-styled:hover {
  transform: scale(1.02);
}

.game-card-img-wrap-styled img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 210 / 150;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.game-card-styled:hover .game-card-img-wrap-styled img {
  filter: blur(4px);
}

.play-overlay-styled {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card-styled:hover .play-overlay-styled {
  opacity: 1;
}

.play-button-styled {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.play-button-styled::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #333;
  margin-left: 4px;
}







.providers-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit;
  box-sizing: border-box;
}
.providers-grid-wrapper > *:not(.provider-card) {
  display: none !important;
}
.provider-card {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 767px) {
  .provider-card {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
.provider-logo {
  transform: translateY(-30px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 70%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.provider-logo img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}
.provider-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #262626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #333333;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  padding: 0 10px;
  box-sizing: border-box;
}
.provider-name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 4px 0 !important;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.provider-games {
  color: #999999;
  font-size: 11px;
  margin: 0 !important;
  line-height: 1.2;
  white-space: nowrap;
}
.provider-card:hover {
  border-color: #444444;
}
.provider-card:hover .provider-logo {
  transform: translateY(0);
}
.provider-card:hover .provider-info {
  opacity: 0;
  transform: translateY(15px);
}









  .promo-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .promo-widget-container.show-popup {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .promo-content {
    position: relative;
    width: 430px;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    text-align: center;
  }

  .promo-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
    outline: none;
  }

  .promo-close-btn:hover {
    color: #FFCC00;
    background-color: transparent !important; 
  }

  .promo-title {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
  }

  .promo-subtitle {
    font-size: 16px;
    margin: 5px 0 15px 0;
    font-weight: 600;
  }

  .promo-offer {
    color: #FFCC00;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
  }

  .promo-register-btn {
    display: block;
    background-color: var(--vsk-global-accent-color) !important;
    color: var(--vsk-global-accent-text-color) !important;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    transition: all .3s ease;
  }

  .promo-register-btn:hover {
  filter: brightness(85%);
  transition: all .3s ease;
}

  .promo-register-btn:active {
    transform: scale(0.97);
  }

  @media (max-width: 600px) {
    .promo-widget-container {
      right: 0;
      bottom: 0;
      width: 100%;
    }
    .promo-content {
      width: 100%;
      border-radius: 16px 16px 0 0; 
      padding: 40px 20px 30px; 
    }
  }








.casino-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 20px 0;
  font-family: inherit;
}

.casino-benefit-card {
  background: linear-gradient(145deg, #16191b 0%, #0d0f10 100%);
  border: 1px solid #23272a;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.casino-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--vsk-global-accent-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.casino-benefit-card > * {
  position: relative;
  z-index: 2;
}

.casino-benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--vsk-global-accent-color);
}

.casino-benefit-card:hover::before {
  opacity: 0.15;
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #1a1e20;
  border: 1px solid var(--vsk-global-accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--vsk-global-accent-color);
  transition: all 0.3s ease;
}

.casino-benefit-card:hover .benefit-icon-wrapper {
  background: var(--vsk-global-accent-color);
  color: #0d0f10;
  box-shadow: 0 0 15px var(--vsk-global-accent-color);
}

.benefit-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.casino-benefit-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .casino-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .casino-benefit-card {
    padding: 24px 16px;
  }
  .casino-benefit-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .casino-benefits-grid {
    grid-template-columns: 1fr;
  }
}










  .fake-betting-widget-v12 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1a1a1a; padding: 24px; border-radius: 12px;
    max-width: 1400px; width: 100%; margin: 0 auto;
    cursor: pointer; color: #fff;
    -webkit-user-select: none; user-select: none; 
  }
  .lazy-icon {
    display: inline-block; background-color: currentColor; 
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center; mask-position: center;
  }
  .fb-cat-icon { width: 22px; height: 22px; vertical-align: middle; transition: transform 0.2s; }
  .fb-icon { width: 24px; height: 24px; margin-right: 12px; vertical-align: middle; opacity: 0.9; }
  .fb-header { margin-bottom: 20px; }
  .fb-header h2 { font-size: 24px; font-weight: bold; margin: 0; color: #ffffff; }
  .fb-categories-wrapper { border-bottom: 1px solid #2a2a2a; margin-bottom: 20px; padding-bottom: 10px; }
  .fb-categories { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; align-items: center; padding-bottom: 5px; }
  .fb-categories::-webkit-scrollbar { display: none; }
  .fb-cat {
    font-weight: 600; color: #888888; padding-bottom: 8px; cursor: pointer;
    transition: color 0.2s, border-color 0.2s; white-space: nowrap; font-size: 14px;
    border-bottom: 3px solid transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; 
  }
  .fb-cat.active { color: var(--vsk-global-accent-color); border-bottom-color: var(--vsk-global-accent-color); }
  .fb-cat:hover:not(.active) { color: #fff; }
  .fb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
  .fb-card {
    background: #2a2a2a; border: 1px solid #3a3a3a; border-radius: 8px; padding: 14px;
    transition: background 0.2s, border-color 0.2s; display: flex; flex-direction: column; justify-content: space-between;
  }
  .fb-card:hover { background: #333333; border-color: #444; }
  .fb-card.is-live { border-top: 2px solid #ff5e5e; }
  .fb-card-header {
    font-size: 12px; color: #aaaaaa; margin-bottom: 16px; display: flex; align-items: center;
    border-bottom: 1px solid #3a3a3a; padding-bottom: 10px;
  }
  .fb-live-wrapper {
    margin-left: auto; display: flex; align-items: center; gap: 5px;
    color: #ff5e5e; font-weight: bold; background: rgba(255, 94, 94, 0.1);
    padding: 4px 8px; border-radius: 4px; font-size: 11px;
  }
  .fb-live-icon { width: 14px; height: 14px; color: #ff5e5e; }
  @keyframes pulseLive { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
  .fb-live-icon.pulse { animation: pulseLive 1.5s infinite ease-in-out; }
  .fb-teams {
    display: flex; justify-content: space-between; font-weight: 600; font-size: 15px;
    margin-bottom: 16px; text-align: center; align-items: center; min-height: 40px;
  }
  .fb-teams span { flex: 1; color: #ffffff; line-height: 1.2; }
  .fb-draw-text { font-weight: normal; color: #888888; font-size: 11px; }
  .fb-live-score { 
    color: var(--vsk-global-accent-color); font-size: 16px; font-weight: 800; 
    letter-spacing: 2px; background: #1a1a1a; padding: 4px 10px; border-radius: 6px;
  }
  .fb-odds { display: flex; gap: 8px; justify-content: center; }
  .fb-odds button {
    flex: 1; background: #3a3a3a; border: none; padding: 10px 0; border-radius: 6px;
    font-weight: bold; color: #fff; font-size: 13px; cursor: pointer; transition: background 0.2s, color 0.2s;
  }
  .fb-odds button:hover { background: var(--vsk-global-accent-color); color: #ffffff; }
  .fb-footer { display: flex; justify-content: flex-end; align-items: center; }
  .fb-pagination { display: flex; gap: 6px; }
  .fb-pagination button {
    background: #2a2a2a; border: 1px solid #3a3a3a; padding: 6px 12px; border-radius: 4px;
    font-weight: bold; cursor: pointer; color: #ccc; font-size: 13px; transition: 0.2s;
  }
  .fb-pagination button.active { background: var(--vsk-global-accent-color); color: var(--vsk-global-accent-text-color); border-color: var(--vsk-global-accent-color); }
  .fb-pagination button:hover:not(.active) { background: #3a3a3a; color: #fff; }
  @media (max-width: 992px) { .fb-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) { 
    .fb-grid { grid-template-columns: 1fr; } 
    .fb-footer { justify-content: center; margin-top: 10px; } 
    .fb-categories { gap: 15px; } 
  }








.modern-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.modern-app-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 16px;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.modern-app-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.modern-app-btn svg {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  fill: #ffffff;
}
.modern-app-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modern-app-sub {
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  margin-bottom: 2px;
  font-family: system-ui, -apple-system, sans-serif;
}
.modern-app-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.2;
  font-family: system-ui, -apple-system, sans-serif;
}