/* Vulkan Casino Custom Styles - Dark Theme with Blue Gradient */

/* Bootstrap Carousel Styles - Force white color with highest specificity */
.carousel-control-prev,
.carousel-control-next {
    opacity: 1 !important;
}

/* Force white carousel icons with maximum specificity */
.carousel-control-prev-icon,
.carousel-control-next-icon,
.hero-slider-container .carousel-control-prev-icon,
.hero-slider-container .carousel-control-next-icon,
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1) !important; /* Force white color */
}

.carousel-control-next-icon,
.hero-slider-container .carousel-control-next-icon,
.carousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1) !important; /* Force white color */
}

/* Override Bootstrap grid system for games */
.games-grid .row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

.games-grid .col-xl-2,
.games-grid .col-lg-3,
.games-grid .col-md-4,
.games-grid .col-sm-6,
.games-grid .col-6 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
}

/* Root Variables */
:root {
    /* Vulkan Casino color scheme based on logo */
    /* Blue gradient: from light cyan-blue to dark blue */
    --primary-color: #4A90E2;
    --primary-dark: #1E3A8A;
    --primary-darker: #0F172A;
    
    /* Red accent (from "ВУЛКАН" text) */
    --accent-red: #DC2626;
    --accent-red-dark: #B91C1C;
    
    /* Yellow/Orange (from stars/sparks) */
    --accent-yellow: #FBBF24;
    --accent-orange: #F59E0B;
    
    /* Secondary colors */
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #FBBF24;
    --info-color: #17a2b8;
    
    /* Dark theme colors with blue tint */
    --dark-color: #0F172A;
    --light-color: #1E293B;
    --text-primary: #ffffff;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --border-color: #334155;
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;
    
    /* Gradients */
    --casino-gradient: linear-gradient(135deg, #4A90E2 0%, #2563EB 50%, #1E3A8A 100%);
    --dark-gradient: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --red-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --yellow-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
   
    /* Shadows */
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.4);
    --shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 50%, #0A0F1A 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Ensure all text is visible on dark background */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

p, span, div {
    color: var(--text-primary);
}

/* Navigation */
.navbar-dark {
    background: var(--dark-gradient) !important;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Jackpot in Header - Gold Style */
.navbar-jackpot {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.jackpot-header-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.jackpot-header-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.jackpot-header-link:active {
    transform: scale(0.98);
}

.jackpot-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    animation: jackpotHeaderPulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jackpot-header-link:hover .jackpot-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
}

@keyframes jackpotHeaderPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
        border-color: rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        border-color: rgba(251, 191, 36, 0.6);
    }
}

.jackpot-icon {
    color: #FBBF24;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    animation: jackpotIconBounce 2s ease-in-out infinite;
}

@keyframes jackpotIconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(10deg);
    }
}

.jackpot-label-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(251, 191, 36, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-value-header {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
    transition: all 0.5s ease;
}

.jackpot-value-header.updating {
    animation: jackpotHeaderUpdate 0.8s ease-in-out;
}

@keyframes jackpotHeaderUpdate {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 25px rgba(251, 191, 36, 1));
    }
    75% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    }
    100% {
        transform: scale(1);
    }
}

.jackpot-currency-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FBBF24;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
}

/* Responsive adjustments for header jackpot */
@media (max-width: 991px) {
    .navbar-jackpot {
        order: -1;
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }
    
    .jackpot-header {
        flex: 1;
        max-width: 500px;
        justify-content: center;
    }
    
    .jackpot-value-header {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .jackpot-label-header {
        font-size: 0.75rem;
    }
    
    .jackpot-value-header {
        font-size: 1rem;
    }
    
    .jackpot-currency-header {
        font-size: 0.9rem;
    }
    
    .jackpot-icon {
        font-size: 1rem;
    }
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.navbar-brand i {
    color: var(--accent-yellow);
    margin-right: 0.5rem;
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
}

.dropdown-menu {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 10001; /* Выше кнопки полноэкранного режима (z-index: 1000) */
}

.dropdown-item {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Dice Five Icon - White Color */
.fa-dice-five {
    color: #ffffff !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px !important; /* Фиксированная высота для всех экранов */
    min-height: 420px !important;
    max-height: 420px !important;
    /* Оптимизация производительности */
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slider-container .carousel {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.hero-slider-container .carousel-inner {
    border-radius: 15px;
    height: 100%;
}

.hero-slider-container .carousel-item {
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

/* Адаптивная высота для мобильных */
@media (max-width: 768px) {
    .hero-slider-container .carousel,
    .hero-slider-container .carousel-inner,
    .hero-slider-container .carousel-item {
        height: auto !important;
        min-height: 280px !important;
    }
}

@media (max-width: 576px) {
    .hero-slider-container .carousel,
    .hero-slider-container .carousel-inner,
    .hero-slider-container .carousel-item {
        height: auto !important;
        min-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .hero-slider-container .carousel,
    .hero-slider-container .carousel-inner,
    .hero-slider-container .carousel-item {
        height: auto !important;
        min-height: 220px !important;
    }
}

.hero-slider-container .carousel-item .hero-section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-container .carousel-item.active {
    display: block;
}

/* Carousel Indicators */
.hero-slider-container .carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
    z-index: 10;
}

.hero-slider-container .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

/* Force white indicators with maximum specificity */
.carousel-indicators button.active,
.hero-slider-container .carousel-indicators button.active,
.carousel .carousel-indicators button.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Force white indicators on hover */
.carousel-indicators button:hover,
.hero-slider-container .carousel-indicators button:hover,
.carousel .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1) !important;
}

.hero-slider-container .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    outline: none !important;
    box-shadow: none !important;
}

.hero-slider-container .carousel-indicators button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hero-slider-container .carousel-indicators button:active {
    outline: none !important;
    box-shadow: none !important;
}

.hero-slider-container .carousel-indicators button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


/* Carousel Controls - Custom styling for hero slider */
.hero-slider-container .carousel-control-prev,
.hero-slider-container .carousel-control-next {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.hero-slider-container .carousel-control-prev {
    left: 20px !important;
}

.hero-slider-container .carousel-control-next {
    right: 20px !important;
}

.hero-slider-container .carousel-control-prev:hover,
.hero-slider-container .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.hero-slider-container .carousel-control-prev-icon,
.hero-slider-container .carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    background-size: 20px 20px !important;
}

/* Feature Items in Slides */
.hero-slider-container .feature-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-slider-container .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-slider-container .feature-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-slider-container .feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.hero-slider-container .feature-item i {
    transition: all 0.3s ease;
}

.hero-slider-container .feature-item:hover i {
    transform: scale(1.1);
}

/* Slide-specific animations */
.hero-slider-container .carousel-item:nth-child(1) .hero-section {
    background: linear-gradient(135deg, #4A90E2 0%, #2563EB 50%, #1E3A8A 100%);
}

.hero-slider-container .carousel-item:nth-child(2) .hero-section {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
}

.hero-slider-container .carousel-item:nth-child(3) .hero-section {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
}

/* Slide transition effects - Horizontal sliding */
.hero-slider-container .carousel-item {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.hero-slider-container .carousel-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Pause animation on hover */
.hero-slider-container:hover .carousel {
    animation-play-state: paused;
}

/* No animations - instant display */

/* External indicators styles - removed as they are no longer needed */

/* Progress indicator styles - removed blue line */

/* Cards */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.card-header {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0.75rem 0.75rem 0 0 !important;
    color: var(--text-primary);
    font-weight: 600;
}

.card-body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 12px;
}

.card-title {
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
}

/* Feature Icons */
.feature-icon i {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon i {
    transform: scale(1.1);
}

/* Game Cards - Higher specificity to override Bootstrap */
.game-card {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: var(--shadow) !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.game-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color) !important;
}

.game-card .game-image {
    position: relative !important;
    width: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

.game-card .game-image picture {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.game-card .game-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    display: block !important;
}

/* Game placeholder styles removed - no longer needed */

.game-card .game-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    text-align: center !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
}


/* Statistics */
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.stat-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.stat-box:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.stat-box h4 {
    color: var(--text-primary);
}

.stat-box p {
    color: var(--text-muted);
}

/* Forms */
.form-control {
    background-color: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-text {
    color: var(--text-muted);
}

.form-check-input {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-primary);
}

.form-select {
    background-color: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.form-select:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--casino-gradient);
    border: none;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.3);
}

.btn-success {
    background: var(--success-color);
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

.btn-warning {
    background: var(--yellow-gradient);
    color: #212529;
    border: none;
    box-shadow: 0 4px 6px rgba(251, 191, 36, 0.3);
}

.btn-danger {
    background: var(--red-gradient);
    border: none;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

.btn-info {
    background: var(--info-color);
    box-shadow: 0 4px 6px rgba(23, 162, 184, 0.3);
}

/* Profile Page */
.profile-avatar {
    margin-bottom: 1rem;
}

.balance-item {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.balance-item:hover {
    background-color: var(--bg-secondary) !important;
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

.activity-item {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    color: var(--text-primary);
}

.activity-item:hover {
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 0.25rem;
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem;
}

.personal-data-section {
    border-top: 1px solid var(--border-color) !important;
}

.personal-data-item {
    color: var(--text-primary);
}

.personal-data-item small {
    color: var(--text-muted);
}

/* Game Page */
.user-info {
    background: var(--dark-gradient);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.game-status {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-primary);
}

.stat-item {
    font-size: 0.9rem;
    color: var(--text-primary);
}

#gameContainer {
    border-radius: 0 0 0.75rem 0.75rem;
    overflow: hidden;
}

#loadingScreen {
    background: var(--casino-gradient);
    color: white;
}

#gameFrame {
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Progress Bar */
.progress {
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    border-radius: 0.25rem;
}

/* Badges */
.badge {
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 0.375rem;
}

.badge.bg-primary {
    background: var(--casino-gradient) !important;
}

.badge.bg-warning {
    background: var(--yellow-gradient) !important;
    color: #212529 !important;
}

.badge.bg-danger {
    background: var(--red-gradient) !important;
}

.progress-bar {
    background: var(--casino-gradient) !important;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0F172A 0%, #0A0F1A 100%) !important;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
    margin-top: auto;
    color: var(--text-primary);
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4A90E2 0%, #2563EB 50%, #1E3A8A 100%);
}

footer h5, footer h6 {
    color: var(--text-primary);
    font-weight: 600;
}

footer p {
    color: var(--text-secondary);
}

footer small {
    color: var(--text-muted);
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

footer .fab {
    transition: transform 0.3s ease;
}

footer .fab:hover {
    transform: scale(1.1);
}

footer img {
    transition: opacity 0.3s ease;
}

footer img:hover {
    opacity: 1 !important;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left-color: var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-left-color: var(--danger-color);
    color: var(--danger-color);
}

.alert-warning {
    background-color: rgba(251, 191, 36, 0.15);
    border-left-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.alert-info {
    background-color: rgba(74, 144, 226, 0.15);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Badges */
.badge {
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 0.375rem;
}

/* Text utilities */
.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--accent-yellow) !important;
}

.text-info {
    color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

.slide-in {
    animation: slideIn 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Flash Messages */
.alert {
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    #gameFrame {
        height: 400px !important;
    }
    
    #loadingScreen {
        height: 400px !important;
    }
    
    #errorScreen {
        height: 400px !important;
    }
    
    .stat-box {
        margin-bottom: 1rem;
    }
    
    .balance-item {
        margin-bottom: 1rem;
    }
    
    .personal-data-item {
        margin-bottom: 0.5rem;
    }
    
    /* Hero Slider Mobile Styles - Адаптивная высота */
    .hero-slider-container {
        height: auto !important; /* Адаптивная высота для мобильных */
        min-height: 280px !important; /* Минимальная высота */
        max-height: 350px !important; /* Максимальная высота */
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    /* Скрываем кнопки навигации на мобильных */
    .hero-slider-container .carousel-control-prev,
    .hero-slider-container .carousel-control-next {
        display: none !important;
    }
    
    /* External indicators removed - using Bootstrap's native indicators */
    
    /* Скрываем внутренние индикаторы на мобильных */
    .hero-slider-container .carousel-indicators {
        display: none !important;
    }
    
    /* Минималистичный контент слайдов */
    .hero-slider-container .hero-section {
        padding: 1rem 0 !important;
        text-align: center;
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    /* На мобильных все слайды должны быть синими */
    .hero-slider-container .carousel-item:nth-child(1) .hero-section,
    .hero-slider-container .carousel-item:nth-child(2) .hero-section,
    .hero-slider-container .carousel-item:nth-child(3) .hero-section {
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    .hero-slider-container .hero-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-slider-container .hero-section h1 {
        font-size: 1.8rem !important; /* Увеличен размер заголовка */
        font-weight: 600;
        margin-bottom: 0.8rem !important;
        line-height: 1.2;
    }
    
    .hero-slider-container .hero-section .lead {
        font-size: 1rem !important; /* Увеличен размер описания */
        margin-bottom: 1.2rem !important;
        line-height: 1.4;
        opacity: 0.9;
    }
    
    .hero-slider-container .hero-section .btn {
        font-size: 0.9rem !important; /* Увеличен размер кнопок */
        padding: 0.6rem 1.2rem !important;
        min-height: 40px !important;
        border-radius: 6px;
        margin-bottom: 0.4rem;
    }
    
    .hero-slider-container .hero-section .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
        align-items: center;
    }
    
    /* Упрощенные feature items */
    .hero-slider-container .feature-item {
        padding: 0.4rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .hero-slider-container .feature-item h5 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        font-weight: 500;
    }
    
    .hero-slider-container .feature-item p {
        font-size: 0.7rem;
        margin-bottom: 0;
        opacity: 0.8;
    }
    
    .hero-slider-container .feature-item i {
        font-size: 1rem !important;
        margin-bottom: 0.3rem;
    }
    
    /* Скрываем сложные элементы на мобильных */
    .hero-slider-container .cashback-features,
    .hero-slider-container .row {
        display: none !important;
    }
    
    /* Показываем только основные элементы */
    .hero-slider-container .hero-section .d-flex {
        display: flex !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .hero-section .btn {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Кнопка "Смотреть все игры" на мобильных */
    .btn-lg {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .form-control-lg {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .btn-group-vertical .btn {
        margin-bottom: 0.5rem;
    }
    
    .d-flex.gap-2 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .d-flex.gap-2 .btn {
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand img {
        height: 55px;
    }

    
    .card-header h5 {
        font-size: 1rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    /* Hero Slider Small Mobile Styles - Адаптивная высота */
    .hero-slider-container {
        height: auto !important; /* Адаптивная высота для маленьких экранов */
        min-height: 250px !important; /* Минимальная высота */
        max-height: 320px !important; /* Максимальная высота */
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    /* Полностью скрываем все элементы навигации */
    .hero-slider-container .carousel-control-prev,
    .hero-slider-container .carousel-control-next,
    .hero-slider-container .carousel-indicators {
        display: none !important;
    }
    
    /* External indicators removed - using Bootstrap's native indicators */
    
    /* Максимально упрощенный контент */
    .hero-slider-container .hero-section {
        padding: 0.8rem 0 !important;
        text-align: center;
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    /* На мобильных все слайды должны быть синими */
    .hero-slider-container .carousel-item:nth-child(1) .hero-section,
    .hero-slider-container .carousel-item:nth-child(2) .hero-section,
    .hero-slider-container .carousel-item:nth-child(3) .hero-section {
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    .hero-slider-container .hero-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-slider-container .hero-section h1 {
        font-size: 1.5rem !important; /* Увеличен размер заголовка */
        font-weight: 600;
        margin-bottom: 0.6rem !important;
        line-height: 1.1;
    }
    
    .hero-slider-container .hero-section .lead {
        font-size: 0.9rem !important; /* Увеличен размер описания */
        margin-bottom: 1rem !important;
        line-height: 1.3;
        opacity: 0.85;
    }
    
    .hero-slider-container .hero-section .btn {
        font-size: 0.85rem !important; /* Увеличен размер кнопок */
        padding: 0.5rem 1rem !important;
        min-height: 36px !important;
        border-radius: 5px;
        margin-bottom: 0.3rem;
    }
    
    .hero-slider-container .hero-section .d-flex {
        flex-direction: column;
        gap: 0.4rem !important;
        align-items: center;
    }
    
    /* Скрываем все сложные элементы */
    .hero-slider-container .feature-item,
    .hero-slider-container .cashback-features,
    .hero-slider-container .row,
    .hero-slider-container .col-md-4,
    .hero-slider-container .col-lg-8,
    .hero-slider-container .col-lg-4,
    .hero-slider-container .user-stats-card {
        display: none !important;
    }
    
    /* Показываем только заголовок, описание и кнопки */
    .hero-slider-container .hero-section h1,
    .hero-slider-container .hero-section .lead,
    .hero-slider-container .hero-section .btn {
        display: block !important;
    }
    
    .hero-slider-container .hero-section .d-flex {
        display: flex !important;
    }
    
    /* Убираем все декоративные элементы */
    .hero-slider-container .hero-section h1 i,
    .hero-slider-container .hero-section .btn i {
        display: none !important;
    }
    
    /* Минималистичные тени */
    .hero-slider-container .hero-section h1,
    .hero-slider-container .hero-section .lead {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer,
    #gameContainer {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid var(--border-color) !important;
        background: var(--bg-secondary) !important;
        color: var(--text-primary) !important;
    }
    
/* Force dark theme on mobile devices */
@media (max-width: 768px) {
    html, body {
        background: linear-gradient(180deg, #1E293B 0%, #0F172A 50%, #0A0F1A 100%) !important;
        background-attachment: fixed !important;
        color: var(--text-primary) !important;
    }
    
    .container, .container-fluid {
        background-color: transparent !important;
    }
    
    /* Hero slider - улучшенное отображение на мобильных */
    .hero-slider-container {
        margin-bottom: 2rem !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .hero-slider-container .hero-section {
        padding: 1.5rem 0 !important;
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    /* На мобильных все слайды должны быть синими */
    .hero-slider-container .carousel-item:nth-child(1) .hero-section,
    .hero-slider-container .carousel-item:nth-child(2) .hero-section,
    .hero-slider-container .carousel-item:nth-child(3) .hero-section {
        background: linear-gradient(135deg, #4A90E2 0%, #2563EB 30%, #1E3A8A 70%, #0F172A 100%) !important;
    }
    
    .hero-slider-container .hero-section h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-slider-container .hero-section .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-slider-container .hero-section .btn {
        font-size: 0.95rem !important;
        padding: 0.7rem 1.5rem !important;
        min-height: 44px !important;
    }
    
    /* Ensure all text elements use dark theme colors */
    h1, h2, h3, h4, h5, h6, p, span, div, a {
        color: var(--text-primary) !important;
    }
    
    /* Fix navbar on mobile */
    .navbar {
        background-color: var(--dark-color) !important;
    }
    
    /* Fix form elements */
    .form-control {
        background-color: var(--bg-secondary) !important;
        color: var(--text-primary) !important;
        border-color: var(--border-color) !important;
    }
    
    .form-control:focus {
        background-color: var(--bg-secondary) !important;
        color: var(--text-primary) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25) !important;
    }
}

/* Games Grid Styles - Simplified for Bootstrap */
.games-grid {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.casino-showcase {
    margin-bottom: 4rem !important;
}

.casino-showcase h2 {
    margin-bottom: 2.5rem !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Simple hover effect for game cards */
.game-slot:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .casino-showcase h2 {
        font-size: 2rem;
        margin-bottom: 2rem !important;
    }
}

/* Mobile games grid - принудительно 2 колонки */
@media (max-width: 576px) {
    .games-grid .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    /* Принудительно сбрасываем все Bootstrap классы */
    .games-grid .row > * {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        padding-left: 0.125rem !important;
        padding-right: 0.125rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Дополнительная защита от Bootstrap */
    .games-grid .col-6,
    .games-grid .col-sm-6,
    .games-grid .col-md-3,
    .games-grid .col-lg-2,
    .games-grid .col-xl-2 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        padding-left: 0.125rem !important;
        padding-right: 0.125rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .game-card {
        margin-bottom: 0.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
    }
    
    .game-card .game-image {
        margin-bottom: 0.25rem !important;
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    
    .game-card .game-image picture {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }
    
    .game-card .game-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        display: block !important;
    }
    
    /* Game placeholder styles removed - no longer needed */
    
    .game-card .game-title {
        font-size: 0.8rem !important;
        margin-top: 0.25rem !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--text-primary) !important;
        font-weight: 600 !important;
        padding: 0.5rem !important;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-section {
        padding: 1.5rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .card {
        margin-bottom: 0.75rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .form-control {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .form-control-lg {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.25rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand img {
        height: 25px;
    }
    
    .card-header h4,
    .card-header h5 {
        font-size: 0.95rem;
    }
    
    .dropdown-menu {
        font-size: 0.9rem;
    }
    
    .alert {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .badge {
        font-size: 0.7em;
    }
    
    /* Слайдер для очень маленьких экранов - Адаптивная высота */
    .hero-slider-container {
        height: auto !important; /* Адаптивная высота для очень маленьких экранов */
        min-height: 220px !important; /* Минимальная высота */
        max-height: 280px !important; /* Максимальная высота */
        margin-bottom: 0.8rem;
        border-radius: 8px;
    }
    
    .hero-slider-container .hero-section {
        padding: 0.6rem 0 !important;
    }
    
    .hero-slider-container .hero-section h1 {
        font-size: 1.3rem !important; /* Увеличен размер заголовка */
        margin-bottom: 0.5rem !important;
    }
    
    .hero-slider-container .hero-section .lead {
        font-size: 0.85rem !important; /* Увеличен размер описания */
        margin-bottom: 0.8rem !important;
    }
    
    .hero-slider-container .hero-section .btn {
        font-size: 0.8rem !important; /* Увеличен размер кнопок */
        padding: 0.4rem 0.8rem !important;
        min-height: 32px !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* External indicators removed - using Bootstrap's native indicators */
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    .form-control {
        min-height: 44px;
        padding: 0.75rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .game-card:hover {
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    /* Touch-оптимизация для минималистичного слайдера */
    .carousel-indicators-outside button {
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Улучшенная навигация для touch */
    .hero-slider-container {
        touch-action: pan-y pinch-zoom;
    }
    
    .hero-slider-container .carousel-inner {
        touch-action: pan-y;
    }
    
    /* Убираем все hover эффекты на touch устройствах */
    .hero-slider-container .feature-item:hover,
    .hero-slider-container .btn:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #ffffff;
        --text-muted: #cccccc;
        --bg-tertiary: #333333;
    }
    
    .card {
        border-width: 2px;
    }
    
    .btn {
        border-width: 2px;
    }
    
    .form-control {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .game-card:hover {
        transform: none;
    }
}/* Profile Page Styles */
.profile-avatar {
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.info-item {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.balance-card {
    transition: all 0.3s ease;
}

.balance-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.personal-data-item {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.personal-data-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: var(--casino-gradient) !important;
}

.bg-gradient-secondary {
    background: var(--dark-gradient) !important;
}

/* Quick actions buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modal styles */
.modal-content {
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
    background: rgba(74, 144, 226, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    background: rgba(74, 144, 226, 0.05);
}

.form-control {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-label {
    color: var(--text-primary);
}

/* Notification styles */
.alert {
    border: none;
    border-radius: 0.5rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border-left: 4px solid var(--success-color);
    color: var(--text-primary);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-left: 4px solid var(--danger-color);
    color: var(--text-primary);
}

/* Hero section for authenticated users */
.user-stats-card {
    backdrop-filter: blur(10px);
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

/* Welcome features for non-authenticated users */
.welcome-features {
    backdrop-filter: blur(10px);
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.stat-item {
    padding: 0.5rem 0;
}

/* Responsive adjustments for profile */
@media (max-width: 768px) {
    .profile-avatar i {
        font-size: 3rem !important;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .user-stats-card {
        margin-top: 2rem;
    }
}
/* Updated: пятница,  5 сентября 2025 г. 21:50:43 (MSK) */

/* Features Section Styles */
.features-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.features-section .card {
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.features-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.features-section .feature-icon {
    margin-bottom: 1.5rem;
}

.features-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-section .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Payment Methods Section */
.payment-methods-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-top: 4rem;
    margin-bottom: 6rem !important; /* Принудительный отступ снизу */
    padding: 3rem 0;
}

.payment-methods-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-methods-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* Не переносить на новую строку */
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important; /* Уменьшенный отступ */
    margin-top: 2rem;
    padding: 0 1rem;
    overflow-x: auto !important; /* Горизонтальная прокрутка если не помещается */
}

.payment-method-item {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.payment-method-item img {
    max-width: 100%;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Payment Methods */
@media (max-width: 768px) {
    .payment-methods-section {
        padding: 2rem 0;
        margin-top: 3rem;
        margin-bottom: 4rem !important; /* Принудительный отступ снизу для мобильных */
    }
    
    .payment-methods-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-methods-grid {
        gap: 0.5rem; /* Уменьшенный отступ */
        margin-top: 1.5rem;
        padding: 0 0.5rem;
        flex-wrap: nowrap; /* Не переносить на новую строку */
        justify-content: center;
        overflow-x: auto; /* Горизонтальная прокрутка */
    }
    
    .payment-method-item {
        padding: 0.75rem;
        height: 60px;
        min-width: 100px;
        max-width: 120px;
        flex-shrink: 0;
    }
    
    .payment-method-item img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .payment-methods-grid {
        gap: 0.25rem; /* Минимальный отступ */
        padding: 0 0.25rem;
        flex-wrap: nowrap; /* Не переносить на новую строку */
        justify-content: center;
        overflow-x: auto; /* Горизонтальная прокрутка */
    }
    
    .payment-method-item {
        padding: 0.5rem;
        height: 50px;
        min-width: 80px;
        max-width: 100px;
        flex-shrink: 0;
    }
    
    .payment-method-item img {
        max-height: 30px;
    }
}

/* Jackpot Section - Premium Visual */
.jackpot-section {
    margin: 2rem 0;
    position: relative;
}

.jackpot-container {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(220, 38, 38, 0.15) 50%, rgba(251, 191, 36, 0.15) 100%);
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: jackpotPulse 3s ease-in-out infinite;
}

.jackpot-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    animation: jackpotRotate 8s linear infinite;
}

@keyframes jackpotPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.3), 0 0 60px rgba(251, 191, 36, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(251, 191, 36, 0.5), 0 0 100px rgba(251, 191, 36, 0.2);
    }
}

@keyframes jackpotRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.jackpot-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.jackpot-label i {
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
    animation: jackpotIconBounce 2s ease-in-out infinite;
}

@keyframes jackpotIconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.jackpot-amount {
    position: relative;
    z-index: 2;
    margin: 1rem 0;
}

.jackpot-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #DC2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    letter-spacing: 3px;
    display: inline-block;
    transition: all 0.5s ease;
    animation: jackpotValueGlow 2s ease-in-out infinite;
}

@keyframes jackpotValueGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.9));
    }
}

.jackpot-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-left: 0.5rem;
    position: relative;
    z-index: 2;
}

.jackpot-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.jackpot-subtitle i {
    color: var(--accent-yellow);
}

/* Анимация обновления значения */
.jackpot-value.updating {
    animation: jackpotUpdate 0.6s ease-in-out;
}

@keyframes jackpotUpdate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(251, 191, 36, 1));
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for jackpot */
@media (max-width: 768px) {
    .jackpot-value {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .jackpot-currency {
        font-size: 1.5rem;
    }
    
    .jackpot-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .jackpot-container {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .jackpot-value {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .jackpot-currency {
        font-size: 1.2rem;
    }
    
    .jackpot-label {
        font-size: 0.9rem;
    }
}

/* Statistics Section - Brand Color Scheme */
.statistics-section {
    background: transparent;
}

.stat-card {
    background: linear-gradient(135deg, rgba(42, 70, 255, 0.1) 0%, rgba(30, 58, 204, 0.05) 100%);
    border: 1px solid rgba(42, 70, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2a46ff 0%, #1e3acc 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 70, 255, 0.3) !important;
    border-color: rgba(42, 70, 255, 0.4);
    background: linear-gradient(135deg, rgba(42, 70, 255, 0.15) 0%, rgba(30, 58, 204, 0.1) 100%);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    transition: all 0.3s ease;
}

.stat-icon i {
    background: linear-gradient(135deg, #2a46ff 0%, #1e3acc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(42, 70, 255, 0.3));
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card:hover .stat-icon i {
    filter: drop-shadow(0 4px 8px rgba(42, 70, 255, 0.5));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #2a46ff 0%, #1e3acc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Responsive adjustments for statistics */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon i {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Стили для игровых слотов - удалены дублирующиеся стили */

/* Payment Methods - Override Styles */
.payment-methods-section {
    margin-bottom: 6rem !important;
}

@media (max-width: 768px) {
    .payment-methods-section {
        margin-bottom: 4rem !important;
    }
    
    .payment-method-item {
        height: 80px !important;
    }
}

/* Recent Wins Ticker Styles */
.wins-ticker-section {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

/* Bootstrap ticker card styles */
.ticker-card {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(74, 144, 226, 0.3) !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.ticker-card:hover {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ticker-card .card-body {
    padding: 0.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
}

/* Win type colors */
.mega-win {
    color: #FBBF24 !important;
}

.jumbo-win {
    color: #fd7e14 !important;
}

.giant-win {
    color: #20c997 !important;
}

.mythic-win {
    color: #6f42c1 !important;
}

/* Ensure ticker stays in single line */
#winsTickerTrack {
    flex-wrap: nowrap !important;
}

.wins-header {
    position: relative;
    padding: 2rem 0;
}

.wins-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wins-header .section-title i {
    animation: pulse-glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.wins-header .gradient-text {
    background: linear-gradient(45deg, #4A90E2, #FBBF24, #DC2626, #1E3A8A);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}



/* Responsive adjustments for ticker */
@media (max-width: 1200px) {
    .ticker-card {
        width: 170px !important;
        height: 78px !important;
    }
}

@media (max-width: 992px) {
    .ticker-card {
        width: 160px !important;
        height: 75px !important;
    }
    
    .ticker-card .card-body {
        padding: 0.4rem !important;
    }
}

@media (max-width: 768px) {
    .wins-ticker-section {
        margin-top: 3rem;
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .wins-header .section-title {
        font-size: 2rem;
    }
    
    .wins-header .section-title i {
        font-size: 1.5rem !important;
    }
    
    .wins-ticker-container {
        height: 80px !important;
    }
    
    .ticker-card {
        width: 150px !important;
        height: 70px !important;
    }
    
    .ticker-card .card-body {
        padding: 0.35rem !important;
    }
}

@media (max-width: 576px) {
    .wins-ticker-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .wins-header .section-title {
        font-size: 1.8rem;
    }
    
    .wins-header .section-title i {
        font-size: 1.3rem !important;
    }
    
    .wins-ticker-container {
        height: 75px !important;
    }
    
    .ticker-card {
        width: 130px !important;
        height: 65px !important;
    }
    
    .ticker-card .card-body {
        padding: 0.3rem !important;
    }
}

@media (max-width: 480px) {
    .wins-ticker-container {
        height: 70px !important;
    }
    
    .ticker-card {
        width: 120px !important;
        height: 60px !important;
    }
    
    .ticker-card .card-body {
        padding: 0.25rem !important;
    }
}

@media (max-width: 360px) {
    .wins-ticker-container {
        height: 65px !important;
    }
    
    .ticker-card {
        width: 110px !important;
        height: 55px !important;
    }
    
    .ticker-card .card-body {
        padding: 0.2rem !important;
    }
}

/* Стили для красивого заголовка "Популярные игры" */
.section-header {
    position: relative;
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title i {
    animation: pulse-glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.gradient-text {
    background: linear-gradient(45deg, #4A90E2, #FBBF24, #DC2626, #1E3A8A);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

/* Анимации */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
    }
}

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

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-title i {
        font-size: 1.5rem !important;
    }
}

/* OAuth Buttons Styles */
.oauth-btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px; /* Минимальная высота для удобства нажатия на мобильных */
    font-weight: 500;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.oauth-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.oauth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.oauth-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Специальные стили для кнопки Google */
.oauth-btn.btn-danger {
    background: linear-gradient(135deg, #db4437 0%, #c23321 100%);
    color: white;
}

.oauth-btn.btn-danger:hover {
    background: linear-gradient(135deg, #c23321 0%, #a52a1f 100%);
    color: white;
}

/* Специальные стили для кнопки Telegram */
.oauth-btn.btn-primary {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
}

.oauth-btn.btn-primary:hover {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
    color: white;
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 576px) {
    .oauth-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.6rem;
        min-height: 42px;
    }
    
    .oauth-btn i {
        font-size: 1rem;
    }
}

/* Адаптивность для средних экранов */
@media (min-width: 768px) and (max-width: 991px) {
    .oauth-btn {
        font-size: 0.9rem;
        padding: 0.55rem 0.8rem;
    }
}

/* Адаптивность для больших экранов */
@media (min-width: 992px) {
    .oauth-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .oauth-btn i {
        font-size: 1.2rem;
    }
}

/* CRITICAL: Force white carousel elements - Maximum priority */
body .carousel-control-prev-icon,
body .carousel-control-next-icon,
body .hero-slider-container .carousel-control-prev-icon,
body .hero-slider-container .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1) !important;
}

body .carousel-control-next-icon,
body .hero-slider-container .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1) !important;
}

/* ============================================
   JACKPOT PAGE STYLES
   ============================================ */

/* Hero Section для страницы джекпота */
.jackpot-hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 50%, #0A0F1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

.jackpot-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 35, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(251, 191, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(251, 191, 35, 0.1) 0%, transparent 50%);
    animation: jackpotParticles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes jackpotParticles {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.jackpot-hero-section .jackpot-hero-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.jackpot-hero-section .jackpot-hero-content > * {
    display: block !important;
    width: 100% !important;
}

/* Переопределение Bootstrap для страницы джекпота */
.jackpot-hero-section .container .row .col-12.text-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.jackpot-hero-section .container .row {
    display: flex !important;
    flex-direction: row !important;
}

.jackpot-hero-section .container .row .col-12 {
    display: flex !important;
    flex-direction: column !important;
}

.jackpot-hero-section .jackpot-hero-icon {
    font-size: 5rem !important;
    color: #FBBF23 !important;
    text-shadow: 
        0 0 20px rgba(251, 191, 35, 0.9),
        0 0 40px rgba(251, 191, 35, 0.7),
        0 0 60px rgba(251, 191, 35, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.5) !important;
    animation: jackpotHeroIcon 3s ease-in-out infinite;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
    width: auto !important;
}

.jackpot-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid rgba(251, 191, 35, 0.5);
    border-radius: 50%;
    animation: jackpotGlowRing 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes jackpotGlowRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
        border-color: rgba(251, 191, 35, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
        border-color: rgba(251, 191, 35, 0.8);
    }
}

/* Анимация монет вокруг трофея */
.jackpot-coins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.jackpot-coin {
    position: absolute;
    color: #FBBF23 !important;
    font-size: 2rem;
    animation: jackpotCoinFloat 4s ease-in-out infinite;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.8),
        0 0 20px rgba(251, 191, 35, 0.5);
}

.jackpot-coin.coin-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.jackpot-coin.coin-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.jackpot-coin.coin-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 2s;
}

.jackpot-coin.coin-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes jackpotCoinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

/* Анимация плавающих монет */
.jackpot-floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #FBBF23 0%, #F59E0B 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(251, 191, 35, 0.8),
        0 0 20px rgba(251, 191, 35, 0.5);
    animation: floatingCoin 8s linear infinite;
    opacity: 0.6;
}

@keyframes floatingCoin {
    0% {
        bottom: -20px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100%;
        transform: translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Анимация заголовка */
.jackpot-title-word {
    display: inline-block;
    animation: jackpotTitleWord 2s ease-in-out infinite;
    color: #FFD700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 45px rgba(255, 215, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

.jackpot-title-word:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes jackpotTitleWord {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Анимация контейнера суммы */
.jackpot-amount-container {
    position: relative;
    display: inline-block;
}

.jackpot-amount-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(251, 191, 35, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    animation: jackpotShadowPulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes jackpotShadowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Анимация точек пульсации */
.jackpot-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FBBF23;
    border-radius: 50%;
    margin: 0 10px;
    animation: jackpotPulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(251, 191, 35, 0.8);
}

@keyframes jackpotPulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Анимация статистики */
.jackpot-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
}

.jackpot-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    color: #FFD700 !important;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    animation: jackpotStatFadeIn 1s ease-out;
    animation-fill-mode: both;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.jackpot-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.jackpot-stat:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

.jackpot-stat:hover::before {
    left: 100%;
}

.jackpot-stat:nth-child(1) {
    animation-delay: 0.2s;
}

.jackpot-stat:nth-child(2) {
    animation-delay: 0.4s;
}

.jackpot-stat:nth-child(3) {
    animation-delay: 0.6s;
}

.jackpot-stat i {
    font-size: 2.5rem;
    animation: jackpotStatIcon 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px currentColor);
    flex-shrink: 0;
}

/* Цветные иконки для каждого блока */
.jackpot-stat:nth-child(1) i {
    color: #4A90E2 !important; /* Синий для "Тысячи игроков" */
    text-shadow: 
        0 0 15px rgba(74, 144, 226, 0.9),
        0 0 30px rgba(74, 144, 226, 0.6),
        0 0 45px rgba(74, 144, 226, 0.3);
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.8));
}

.jackpot-stat:nth-child(2) i {
    color: #DC2626 !important; /* Красный для "Горячий приз" */
    text-shadow: 
        0 0 15px rgba(220, 38, 38, 0.9),
        0 0 30px rgba(220, 38, 38, 0.6),
        0 0 45px rgba(220, 38, 38, 0.3);
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.8));
}

.jackpot-stat:nth-child(3) i {
    color: #FBBF23 !important; /* Желтый/золотой для "Мгновенная выплата" */
    text-shadow: 
        0 0 15px rgba(251, 191, 35, 0.9),
        0 0 30px rgba(251, 191, 35, 0.6),
        0 0 45px rgba(251, 191, 35, 0.3);
    filter: drop-shadow(0 0 10px rgba(251, 191, 35, 0.8));
}

.jackpot-stat span {
    text-align: center;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

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

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

@keyframes jackpotHeroIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        text-shadow: 
            0 0 20px rgba(251, 191, 35, 0.9),
            0 0 40px rgba(251, 191, 35, 0.7),
            0 0 60px rgba(251, 191, 35, 0.5),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: translateY(-10px) rotate(15deg) scale(1.1);
        text-shadow: 
            0 0 30px rgba(251, 191, 35, 1),
            0 0 60px rgba(251, 191, 35, 0.9),
            0 0 90px rgba(251, 191, 35, 0.7),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
}

.jackpot-hero-section .jackpot-hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: #FFD700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 45px rgba(255, 215, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

.jackpot-hero-section .jackpot-hero-title .jackpot-title-word {
    color: #FFD700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 45px rgba(255, 215, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5) !important;
}
    margin: 0 auto 2rem auto !important;
    position: relative !important;
    z-index: 1 !important;
    animation: jackpotTitleFadeIn 1s ease-out;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.jackpot-hero-section .jackpot-hero-amount {
    font-size: 6rem !important;
    font-weight: 900 !important;
    color: #FBBF23 !important;
    letter-spacing: 0.1em !important;
    text-shadow: 
        0 0 20px rgba(251, 191, 35, 0.8),
        0 0 40px rgba(251, 191, 35, 0.6),
        0 0 60px rgba(251, 191, 35, 0.4),
        0 0 80px rgba(251, 191, 35, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.5) !important;
    animation: jackpotAmountGlow 3s ease-in-out infinite;
    transition: all 0.5s ease;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
}

@keyframes jackpotTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes jackpotAmountGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(251, 191, 35, 0.8),
            0 0 40px rgba(251, 191, 35, 0.6),
            0 0 60px rgba(251, 191, 35, 0.4),
            0 0 80px rgba(251, 191, 35, 0.2),
            0 4px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(251, 191, 35, 1),
            0 0 60px rgba(251, 191, 35, 0.8),
            0 0 90px rgba(251, 191, 35, 0.6),
            0 0 120px rgba(251, 191, 35, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.02);
    }
}

.jackpot-hero-amount.updating {
    animation: jackpotAmountUpdate 1s ease-in-out;
}

.jackpot-hero-amount.counting {
    animation: jackpotAmountCount 0.1s ease-in-out infinite;
}

@keyframes jackpotAmountCount {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4),
            0 0 80px rgba(255, 215, 0, 0.2),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.6),
            0 0 120px rgba(255, 215, 0, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
}

@keyframes jackpotAmountUpdate {
    0% {
        text-shadow: 
            0 0 20px rgba(251, 191, 35, 0.8),
            0 0 40px rgba(251, 191, 35, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    25% {
        text-shadow: 
            0 0 40px rgba(251, 191, 35, 1),
            0 0 80px rgba(251, 191, 35, 0.8),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 60px rgba(251, 191, 35, 1),
            0 0 120px rgba(251, 191, 35, 0.9),
            0 0 180px rgba(251, 191, 35, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    75% {
        text-shadow: 
            0 0 40px rgba(251, 191, 35, 1),
            0 0 80px rgba(251, 191, 35, 0.8),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(251, 191, 35, 0.8),
            0 0 40px rgba(251, 191, 35, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
}

.jackpot-hero-currency {
    font-size: 4rem;
    color: #FBBF23 !important;
    text-shadow: 
        0 0 15px rgba(251, 191, 35, 0.9),
        0 0 30px rgba(251, 191, 35, 0.7),
        0 0 45px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.jackpot-hero-subtitle {
    font-size: 1.2rem !important;
    color: rgba(251, 191, 35, 0.9) !important;
    font-weight: 500 !important;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: jackpotSubtitleFadeIn 1s ease-out 0.5s both;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 1rem auto 0 auto !important;
}

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

.jackpot-hero-subtitle i {
    animation: jackpotSync 2s linear infinite;
}

@keyframes jackpotSync {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Информационная секция */
.jackpot-info-section {
    background: var(--bg-primary);
    padding: 4rem 0;
}

.jackpot-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.jackpot-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FBBF23;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-info-title i {
    font-size: 2rem;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.8),
        0 0 20px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.jackpot-info-text strong {
    color: #FBBF23;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(251, 191, 35, 0.4);
}

/* Особенности джекпота */
.jackpot-feature-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.jackpot-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.jackpot-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.jackpot-feature-icon i {
    font-size: 1.8rem;
    color: #FBBF23;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.8),
        0 0 20px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.jackpot-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Как выиграть джекпот */
.jackpot-how-to-play {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.jackpot-how-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FBBF23;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-how-title i {
    font-size: 1.8rem;
    text-shadow: 
        0 0 10px rgba(251, 191, 35, 0.8),
        0 0 20px rgba(251, 191, 35, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jackpot-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.jackpot-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FBBF23 0%, #F59E0B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1E293B;
    flex-shrink: 0;
    box-shadow: 
        0 0 20px rgba(251, 191, 35, 0.6),
        0 0 40px rgba(251, 191, 35, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.jackpot-step-content {
    flex: 1;
}

.jackpot-step-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.jackpot-step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Кнопки призыва к действию */
.jackpot-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.btn-jackpot-play,
.btn-jackpot-register {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-jackpot-play {
    background: linear-gradient(135deg, #FBBF23 0%, #F59E0B 100%);
    border: none;
    color: #1E293B;
    box-shadow: 
        0 5px 20px rgba(251, 191, 35, 0.5),
        0 0 30px rgba(251, 191, 35, 0.3);
}

.btn-jackpot-play:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(251, 191, 35, 0.7),
        0 0 50px rgba(251, 191, 35, 0.4);
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #1E293B;
}

.btn-jackpot-register {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

.btn-jackpot-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, #357ABD 0%, #2E6DA4 100%);
    color: #ffffff;
}

/* Адаптивность для страницы джекпота */
@media (max-width: 991px) {
    .jackpot-hero-title {
        font-size: 3rem;
    }
    
    .jackpot-hero-amount {
        font-size: 4rem;
    }
    
    .jackpot-hero-currency {
        font-size: 3rem;
    }
    
    .jackpot-hero-icon {
        font-size: 4rem;
    }
    
    .jackpot-info-card {
        padding: 2rem;
    }
    
    .jackpot-info-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .jackpot-hero-section {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .jackpot-hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .jackpot-hero-amount {
        font-size: 3rem;
    }
    
    .jackpot-hero-currency {
        font-size: 2.5rem;
    }
    
    .jackpot-hero-icon {
        font-size: 3rem;
    }
    
    .jackpot-hero-subtitle {
        font-size: 1rem;
    }
    
    .jackpot-info-card {
        padding: 1.5rem;
    }
    
    .jackpot-info-title {
        font-size: 1.8rem;
    }
    
    .jackpot-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jackpot-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .btn-jackpot-play,
    .btn-jackpot-register {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .jackpot-cta {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .jackpot-hero-title {
        font-size: 2rem;
    }
    
    .jackpot-hero-amount {
        font-size: 2.5rem;
    }
    
    .jackpot-hero-currency {
        font-size: 2rem;
    }
    
    .jackpot-hero-icon {
        font-size: 2.5rem;
    }
    
    .jackpot-info-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .jackpot-feature-item {
        padding: 1.5rem;
    }
    
    .jackpot-hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .jackpot-stat {
        min-width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .jackpot-stat i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .jackpot-stat {
        flex: 1 1 100%;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        min-width: 100%;
    }
    
    .jackpot-stat i {
        font-size: 1.75rem;
    }
}

body .carousel-indicators button.active,
body .hero-slider-container .carousel-indicators button.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}
