:root {
    --bg-primary: #1C1D1C;
    --bg-secondary: #30302F;
    --accent: #e6c156;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* 🔥 ИСПРАВЛЕНИЕ: Убираем блокировку скролла body */
body.menu-open {
    overflow: hidden;
}

/* Стили для акцентных элементов */
.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d4b04d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 193, 86, 0.2);
}

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

.text-accent {
    color: var(--accent);
}

.border-accent {
    border-color: var(--accent);
}

/* Стили для меню */
.header-menu a {
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.header-menu a:hover {
    color: var(--accent);
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-menu a:hover::after {
    width: 80%;
}

/* Стили для карточек игр */
.game-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(230, 193, 86, 0.15);
}

.game-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

/* Стили для слайдера */
.swiper-button-next, .swiper-button-prev {
    color: var(--accent);
    background-color: rgba(48, 48, 47, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* 🔥 ЛЕВЫЙ САЙДБАР (МЕНЮ) */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    width: 250px;
    background-color: var(--bg-secondary);
    z-index: 30;
    overflow-y: auto;
    padding-bottom: 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🔥 ПРАВЫЙ САЙДБАР (КУПОН) */
.right-sidebar {
    position: fixed;
    right: 0;
    top: 80px;
    height: calc(100vh - 80px);
    width: 320px;
    background-color: var(--bg-secondary);
    z-index: 30;
    overflow-y: auto;
    padding-bottom: 120px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Скрываем сайдбары на мобильных, показываем только на десктопе */
.left-sidebar, .right-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .left-sidebar, .right-sidebar {
        display: block;
    }
}

/* Основной контент - смещен с обоих сторон */
.main-content {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 1024px) {
    .main-content {
        margin-left: 250px;
        margin-right: 320px;
    }
}

/* 🔥 ПРАВИЛЬНЫЙ ФУТЕР - по ширине основного контента */
.footer-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 1024px) {
    .footer-container {
        margin-left: 250px;
        margin-right: 320px;
        width: calc(100% - 250px - 320px);
    }
}

/* Стили для блока купона */
.coupon-box {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(230, 193, 86, 0.2);
    margin-bottom: 20px;
}

.coupon-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-secondary);
}

.coupon-empty i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.coupon-bonus {
    background: linear-gradient(135deg, #e6c156, #d4b04d);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: var(--bg-primary);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.coupon-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-percent {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-button {
    background-color: var(--bg-primary);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Стили для футера */
.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* 🔥 ИСПРАВЛЕННОЕ МОБИЛЬНОЕ МЕНЮ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* 🔥 Оверлей для мобильного меню */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Стили для иконок видов спорта */
.sport-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 10px;
    background-color: rgba(48, 48, 47, 0.5);
    transition: all 0.3s ease;
}

.sport-icon:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-3px);
}

.sport-icon i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent);
}

/* Прогресс бар для игр */
.progress-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Гарантируем, что футер будет виден */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-wrapper {
    flex: 1;
}

/* Стили для навигации в левом сайдбаре */
.sidebar-nav {
    padding: 20px;
}

.sidebar-nav h3 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 10px;
}

.sidebar-nav ul {
    list-style: none;
    margin-bottom: 20px;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    color: var(--text-secondary);
    padding: 8px 10px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Кнопка в левом сайдбаре */
.sidebar-btn {
    background-color: var(--accent);
    color: var(--bg-primary);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 20px;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    background-color: #d4b04d;
    transform: translateY(-2px);
}

/* Стили для баннерного слайдера */
.bannerSwiper {
    width: 100%;
    height: auto;
}

.bannerSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.bannerSwiper .swiper-slide > a {
    width: 100%;
    display: block;
}

.bannerSwiper .swiper-slide > a > div {
    width: 100%;
    margin: 0;
}

.bannerSwiper .swiper-slide img {
    transition: transform 8s ease;
    width: 100%;
    height: 100%;
    display: block;
}

.bannerSwiper .swiper-slide-active img {
    transform: scale(1.03);
}

/* Адаптивные отступы */
@media (min-width: 768px) {
    .bannerSwiper .swiper-slide > a > div {
        width: calc(100% - 32px);
        margin: 0 auto;
        background: transparent !important;
    }
}

@media (min-width: 1024px) {
    .bannerSwiper .swiper-slide > a > div {
        width: calc(100% - 64px);
    }
}

@media (min-width: 1280px) {
    .bannerSwiper .swiper-slide > a > div {
        width: calc(100% - 128px);
    }
}

/* Стили для навигационных кнопок слайдера */
.swiper-button-next-banner,
.swiper-button-prev-banner {
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    opacity: 0.9;
}

.swiper-button-next-banner:hover,
.swiper-button-prev-banner:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Пагинация */
.swiper-pagination-banner {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.swiper-pagination-banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-banner .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.swiper-pagination-banner .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.2);
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
    .bannerSwiper .swiper-slide > a > div {
        border-radius: 0;
        width: 100%;
    }
    
    .bannerSwiper .swiper-slide img {
        object-fit: contain;
        padding: 0;
    }
    
    .swiper-pagination-banner {
        bottom: 15px !important;
        padding: 4px 8px;
    }
    
    .swiper-pagination-banner .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    
    .swiper-progress-bar {
        display: none;
    }
    
    .swiper-button-next-banner,
    .swiper-button-prev-banner {
        display: none !important;
    }
}

/* Для очень маленьких экранов (смартфоны) */
@media (max-width: 480px) {
    .bannerSwiper .swiper-slide > a > div {
        height: 45vw;
        min-height: 180px;
        max-height: 220px;
    }
    
    .swiper-pagination-banner {
        bottom: 10px !important;
    }
}

/* Для маленьких смартфонов */
@media (max-width: 375px) {
    .bannerSwiper .swiper-slide > a > div {
        min-height: 160px;
        max-height: 200px;
    }
}

/* Плавная анимация для всех элементов */
.bannerSwiper * {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Декоративная тень для слайдов на десктопе */
@media (min-width: 768px) {
    .bannerSwiper .swiper-slide > a > div {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transition: box-shadow 0.3s ease;
        background: transparent;
    }
    
    .bannerSwiper .swiper-slide-active > a > div {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .bannerSwiper .swiper-slide img {
        object-fit: cover;
    }
}
/* Стили для квадратных изображений слотов */
.slot-image {
    height: 160px;
    width: 100%;
    object-fit: contain; /* Это ключевое изменение - не растягивает, а вписывает */
    background-color: rgba(48, 48, 47, 0.3); /* Фон для сохранения пропорций */
    padding: 10px;
    border-radius: 8px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .slot-image {
        height: 140px;
    }
}
/* КВАДРАТНЫЕ ИЗОБРАЖЕНИЯ ДЛЯ СЛОТОВ */
.slot-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Это делает элемент квадратным */
    background-color: rgba(48, 48, 47, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.slot-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет квадрат полностью */
    padding: 8px;
}

/* Альтернатива: если хотите видеть все изображение без обрезки */
.slot-image-contained {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Показывает все изображение с фоновыми полосами */
    padding: 8px;
}

/* НАСТРОЙКИ СЛАЙДЕРА ДЛЯ БОЛЬШЕГО КОЛИЧЕСТВА КАРТОЧЕК */
.slotsSwiper .swiper-slide {
    width: 200px; /* Уменьшаем ширину для отображения большего количества */
    height: auto;
}

/* Адаптивность */
@media (max-width: 768px) {
    .slotsSwiper .swiper-slide {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .slotsSwiper .swiper-slide {
        width: 140px;
    }
}

/* Убираем старые стили для slot-image */
/* УДАЛИТЬ или ЗАКОММЕНТИРОВАТЬ старые стили: */
/*
.slot-image {
    height: 160px;
    width: 100%;
    object-fit: contain;
    background-color: rgba(48, 48, 47, 0.3);
    padding: 10px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .slot-image {
        height: 140px;
    }
}

/* Дополнительные оптимизации для мобильных */
@media (max-width: 767px) {
    /* Уменьшаем отступы секции на мобильных */
    #slots.py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Уменьшаем заголовок секции */
    #slots h2.text-3xl {
        font-size: 1.5rem !important;
    }
    
    /* Кнопки навигации делаем меньше */
    .swiper-button-prev-slots,
    .swiper-button-next-slots {
        padding: 0.5rem !important;
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .swiper-button-prev-slots i,
    .swiper-button-next-slots i {
        font-size: 0.875rem !important;
    }
    
    /* Уменьшаем отступы карточки */
    .game-card .p-4 {
        padding: 0.75rem !important;
    }
}

/* Оптимизация для очень маленьких экранов */
@media (max-width: 360px) {
    .slotsSwiper .swiper-slide {
        width: 43%; /* Еще уже для маленьких экранов */
        max-width: 130px;
    }
    
    .slot-image-container {
        padding-bottom: 85%; /* Еще менее квадратные */
    }
}

/* СТИЛИ ДЛЯ ЛАЙВ КАЗИНО */
.live-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Квадратное соотношение */
    background-color: rgba(28, 29, 28, 0.8);
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.live-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.live-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.live-play-btn {
    background: rgba(230, 193, 86, 0.95);
    color: var(--bg-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 193, 86, 0.4);
}

/* Ховер эффекты для лайв игр */
.game-card:hover .live-image {
    transform: scale(1.05);
}

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

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

/* Адаптивность для лайв казино */
@media (max-width: 640px) {
    #live-casino .flex.justify-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    #live-casino .flex.space-x-2 {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    #live-casino .live-category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .live-image-container {
        padding-bottom: 90%; /* Чуть менее квадратные на мобильных */
    }
    
    .live-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .live-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .live-play-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    #live-casino .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #live-casino .grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #live-casino .grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Активный класс для кнопок категорий */
.live-category-btn.active {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
}

.live-category-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1) !important;
}
/* СТИЛИ ДЛЯ CRASH ИГР */
.crash-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Квадратное соотношение */
    background: linear-gradient(135deg, rgba(28, 29, 28, 0.9), rgba(48, 48, 47, 0.9));
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.crash-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.crash-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.crash-play-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.crash-play-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Ховер эффекты для crash игр */
#crash .game-card:hover .crash-image {
    transform: scale(1.05);
}

#crash .game-card:hover .crash-play-btn {
    transform: translateY(-2px);
}

/* Адаптивность для crash игр */
@media (max-width: 640px) {
    #crash .flex.justify-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    #crash .flex.space-x-2 {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    #crash .crash-category-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .crash-image-container {
        padding-bottom: 90%; /* Чуть менее квадратные на мобильных */
    }
    
    .crash-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .crash-play-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    #crash .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    #crash .p-4 {
        padding: 0.75rem !important;
    }
    
    #crash .p-4 h3 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    
    #crash .text-xl {
        font-size: 1.125rem !important;
    }
    
    #crash .text-xs {
        font-size: 10px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #crash .grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #crash .grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 1281px) and (max-width: 1536px) {
    #crash .grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

@media (min-width: 1537px) {
    #crash .grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

/* Активный класс для кнопок категорий */
.crash-category-btn.active {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
}

.crash-category-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Цвета для множителей */
.text-green-400 {
    color: #10b981 !important;
}

/* Иконки игроков */
#crash .fa-users {
    font-size: 10px;
}
/* СТИЛИ ДЛЯ JACKPOT СЛОТОВ */

/* Градиентные бейджи */
.bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Джекпот индикаторы внизу изображения */
.slot-image-container .absolute.bottom-2 {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Улучшаем отображение для джекпот слотов */
#jackpot-slots .game-card {
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

#jackpot-slots .game-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

/* Пульсирующая анимация для джекпот бейджей */
@keyframes pulse-gold {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#jackpot-slots .bg-gradient-to-r {
    animation: pulse-gold 2s ease-in-out infinite, gradientShift 3s ease infinite;
}

/* Адаптивность для джекпот блока */
@media (max-width: 640px) {
    #jackpot-slots .flex.justify-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    #jackpot-slots .flex.items-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    
    #jackpot-slots .bg-accent {
        align-self: flex-start;
    }
    
    .slot-image-container .absolute.bottom-2 {
        font-size: 10px;
        padding: 4px 6px;
    }
    
    .slot-image-container .absolute.bottom-2 span {
        font-size: 11px;
    }
    
    /* Уменьшаем текст в карточках на мобильных */
    #jackpot-slots .p-4 h3 {
        font-size: 14px;
        line-height: 1.2;
    }
    
    #jackpot-slots .p-4 p {
        font-size: 11px;
    }
    
    #jackpot-slots .text-sm {
        font-size: 11px;
    }
}

/* Оптимизация для планшетов */
@media (min-width: 641px) and (max-width: 1024px) {
    #jackpot-slots .swiper-slide {
        width: calc(100% / 4) !important;
    }
}

/* Специальные стили для кнопки джекпот */
#jackpot-slots .bg-gradient-to-r.from-yellow-500.to-orange-500 {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
}

#jackpot-slots .bg-gradient-to-r.from-purple-500.to-pink-500 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899) !important;
}

#jackpot-slots .bg-gradient-to-r.from-green-500.to-emerald-500 {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

#jackpot-slots .bg-gradient-to-r.from-blue-500.to-cyan-500 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4) !important;
}

#jackpot-slots .bg-gradient-to-r.from-red-500.to-orange-500 {
    background: linear-gradient(135deg, #ef4444, #f97316) !important;
}

#jackpot-slots .bg-gradient-to-r.from-indigo-500.to-purple-500 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

#jackpot-slots .bg-gradient-to-r.from-amber-500.to-yellow-500 {
    background: linear-gradient(135deg, #f59e0b, #eab308) !important;
}

#jackpot-slots .bg-gradient-to-r.from-teal-500.to-green-500 {
    background: linear-gradient(135deg, #14b8a6, #10b981) !important;
}

/* Цвета для иконок трофеев */
.text-green-400 { color: #10b981 !important; }
.text-blue-400 { color: #60a5fa !important; }
.text-yellow-400 { color: #fbbf24 !important; }
.text-red-400 { color: #f87171 !important; }
.text-indigo-400 { color: #818cf8 !important; }
.text-amber-400 { color: #fbbf24 !important; }
.text-teal-400 { color: #2dd4bf !important; }
/* ВЫРАВНИВАНИЕ КАРТОЧЕК ПО НИЗУ */
.swiper-slide {
    display: flex !important;
}

.swiper-slide > a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.swiper-slide .game-card {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.swiper-slide .slot-image-container {
    flex-shrink: 0;
}

.swiper-slide .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.swiper-slide .p-4 > div:last-child {
    margin-top: auto;
}

/* Ограничиваем заголовок 2 строками */
.swiper-slide h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    line-height: 1.4;
}

/* Ограничиваем провайдера 1 строкой */
.swiper-slide p.text-gray-400 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* СТИЛИ ДЛЯ ГОРИЗОНТАЛЬНОГО СЛАЙДЕРА КАТЕГОРИЙ */
.categoriesSwiper {
    padding: 4px 0;
    overflow: visible !important;
}

.categoriesSwiper .swiper-slide {
    width: auto !important; /* Автоматическая ширина */
}

.category-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 70px; /* Фиксированная ширина для всех */
}

.category-slide:hover {
    background-color: rgba(48, 48, 47, 0.7);
    transform: translateY(-2px);
}

.category-slide-image {
    width: 56px;
    height: 56px;
    background-color: var(--bg-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6px;
    padding: 10px;
    transition: all 0.2s ease;
}

.category-slide:hover .category-slide-image {
    background-color: rgba(230, 193, 86, 0.1);
    transform: scale(1.05);
}

.category-slide-img {
    width: 65%; /* Уменьшенные иконки */
    height: 65%;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.2s ease;
    filter: brightness(0.9);
}

.category-slide:hover .category-slide-img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.category-slide-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-slide:hover .category-slide-label {
    color: var(--accent);
}

/* Кнопки навигации */
.swiper-button-prev-categories,
.swiper-button-next-categories {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--bg-primary) !important;
    border-radius: 50% !important;
    color: var(--text-primary) !important;
    transition: all 0.2s ease !important;
}

.swiper-button-prev-categories:hover,
.swiper-button-next-categories:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent) !important;
    transform: scale(1.1);
}

.swiper-button-prev-categories:after,
.swiper-button-next-categories:after {
    content: none !important;
}

/* Адаптивность для горизонтального слайдера */
@media (max-width: 480px) {
    .category-slide {
        width: 60px;
        padding: 3px;
    }
    
    .category-slide-image {
        width: 48px;
        height: 48px;
        padding: 8px;
    }
    
    .category-slide-img {
        width: 45%;
        height: 45%;
    }
    
    .category-slide-label {
        font-size: 10px;
    }
    
    .swiper-button-prev-categories,
    .swiper-button-next-categories {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .category-slide {
        width: 65px;
    }
    
    .category-slide-image {
        width: 52px;
        height: 52px;
        padding: 9px;
    }
    
    .category-slide-img {
        width: 48%;
        height: 48%;
    }
    
    .category-slide-label {
        font-size: 11px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .category-slide {
        width: 70px;
    }
    
    .category-slide-image {
        width: 56px;
        height: 56px;
        padding: 10px;
    }
    
    .category-slide-img {
        width: 50%;
        height: 50%;
    }
    
    .category-slide-label {
        font-size: 12px;
    }
}

@media (min-width: 1025px) {
    .category-slide {
        width: 75px;
    }
    
    .category-slide-image {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .category-slide-img {
        width: 65%;
        height: 65%;
    }
    
    .category-slide-label {
        font-size: 12px;
    }
}

/* Убираем стандартные стрелки Swiper */
.categoriesSwiper .swiper-button-next,
.categoriesSwiper .swiper-button-prev {
    display: none !important;
}