/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.header-contact a:hover {
    color: var(--brand-primary);
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header-social a:hover {
    transform: translateY(-2px);
}

.header-main {
    padding: 12px 0;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
}

.logo-domain {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--brand-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
}

.btn-login:hover {
    background: var(--gray-50);
}

.btn-register {
    color: var(--white);
}

.btn-register:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero-section {
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255,255,255,0.8);
}

/* ========== JACKPOT ========== */
.jackpot-banner {
    margin: 30px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

/* ========== GAMES ========== */
.games-section {
    padding: 20px 0 60px;
}

.games-category {
    margin-bottom: 50px;
}

.category-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--brand-primary);
}

.category-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.game-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.game-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0,0,0,0.3);
}

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

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

.game-name {
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
}

/* ========== FOOTER ========== */
.site-footer {
    background: #1a202c;
    color: #a0aec0;
}

.footer-providers {
    padding: 40px 0 20px;
    border-bottom: 1px solid #2d3748;
}

.footer-providers h4,
.footer-payments h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.provider-item {
    background: #2d3748;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-item img {
    max-height: 30px;
    object-fit: contain;
}

.footer-payments {
    padding: 30px 0;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-section h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.payment-item {
    background: #2d3748;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    max-height: 25px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-logo {
    font-weight: 700;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--gray-200);
    }
    
    .header-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-top {
        display: none;
    }
    
    .hero-section {
        padding: 50px 0 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   JACKPOT BANNER - PURE CSS ANIMATION
   ======================================== */

.jackpot-banner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    min-height: 180px;
}

/* Animated Background */
.jackpot-banner .bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.jackpot-banner .bg-animation .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.jackpot-banner .bg-animation .orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.15);
    top: -50%;
    left: -10%;
    animation-delay: 0s;
}

.jackpot-banner .bg-animation .orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: rgba(255, 100, 100, 0.1);
    bottom: -60%;
    right: -10%;
    animation-delay: -3s;
}

.jackpot-banner .bg-animation .orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: rgba(0, 200, 255, 0.1);
    top: 20%;
    right: 30%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Floating Particles */
.jackpot-banner .particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.jackpot-banner .particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.jackpot-banner .particles .particle:nth-child(1) { left: 5%; animation-duration: 6s; animation-delay: 0s; }
.jackpot-banner .particles .particle:nth-child(2) { left: 15%; animation-duration: 8s; animation-delay: 1s; }
.jackpot-banner .particles .particle:nth-child(3) { left: 25%; animation-duration: 7s; animation-delay: 2s; }
.jackpot-banner .particles .particle:nth-child(4) { left: 35%; animation-duration: 9s; animation-delay: 0.5s; }
.jackpot-banner .particles .particle:nth-child(5) { left: 45%; animation-duration: 6.5s; animation-delay: 1.5s; }
.jackpot-banner .particles .particle:nth-child(6) { left: 55%; animation-duration: 7.5s; animation-delay: 2.5s; }
.jackpot-banner .particles .particle:nth-child(7) { left: 65%; animation-duration: 8.5s; animation-delay: 0.8s; }
.jackpot-banner .particles .particle:nth-child(8) { left: 75%; animation-duration: 6s; animation-delay: 1.8s; }
.jackpot-banner .particles .particle:nth-child(9) { left: 85%; animation-duration: 7s; animation-delay: 2.8s; }
.jackpot-banner .particles .particle:nth-child(10) { left: 95%; animation-duration: 9s; animation-delay: 0.3s; }
.jackpot-banner .particles .particle:nth-child(11) { left: 10%; animation-duration: 7.2s; animation-delay: 1.2s; }
.jackpot-banner .particles .particle:nth-child(12) { left: 20%; animation-duration: 8.8s; animation-delay: 2.2s; }
.jackpot-banner .particles .particle:nth-child(13) { left: 30%; animation-duration: 6.3s; animation-delay: 0.7s; }
.jackpot-banner .particles .particle:nth-child(14) { left: 40%; animation-duration: 7.7s; animation-delay: 1.7s; }
.jackpot-banner .particles .particle:nth-child(15) { left: 50%; animation-duration: 8.3s; animation-delay: 2.3s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Content */
.jackpot-banner .jackpot-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left Side - Text */
.jackpot-banner .jackpot-text {
    flex: 1;
    min-width: 200px;
}

.jackpot-banner .jackpot-text .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.jackpot-banner .jackpot-text .title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 60px rgba(255, 215, 0, 0.6), 0 0 120px rgba(255, 215, 0, 0.3);
    }
}

.jackpot-banner .jackpot-text .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Right Side - Slot Animation */
.jackpot-banner .jackpot-slots {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.jackpot-banner .jackpot-slots .slot-item {
    font-size: 2.5rem;
    line-height: 1;
    animation: slotSpin 0.5s steps(1) infinite;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.jackpot-banner .jackpot-slots .slot-item:nth-child(2) {
    animation-delay: 0.3s;
}

.jackpot-banner .jackpot-slots .slot-item:nth-child(3) {
    animation-delay: 0.6s;
}

.jackpot-banner .jackpot-slots .slot-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 300;
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

/* Jackpot Amount */
.jackpot-banner .jackpot-amount {
    text-align: center;
    padding: 5px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.jackpot-banner .jackpot-amount .currency {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-banner .jackpot-amount .value {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    }
}

/* CTA Button */
.jackpot-banner .jackpot-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700 0%, #f0a500 100%);
    border: none;
    border-radius: 50px;
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.jackpot-banner .jackpot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.jackpot-banner .jackpot-btn:active {
    transform: scale(0.95);
}

.jackpot-banner .jackpot-btn .btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite;
}

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

/* Confetti Burst */
.jackpot-banner .confetti-burst {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.jackpot-banner .confetti-burst .confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    top: -10px;
    animation: confettiFall linear infinite;
}

.jackpot-banner .confetti-burst .confetti:nth-child(1) { left: 10%; animation-duration: 4s; animation-delay: 0s; background: #ffd700; }
.jackpot-banner .confetti-burst .confetti:nth-child(2) { left: 20%; animation-duration: 5s; animation-delay: 0.5s; background: #ff6b6b; }
.jackpot-banner .confetti-burst .confetti:nth-child(3) { left: 30%; animation-duration: 3.5s; animation-delay: 1s; background: #4ecdc4; }
.jackpot-banner .confetti-burst .confetti:nth-child(4) { left: 40%; animation-duration: 4.5s; animation-delay: 0.3s; background: #ffd93d; }
.jackpot-banner .confetti-burst .confetti:nth-child(5) { left: 50%; animation-duration: 5.5s; animation-delay: 0.8s; background: #ff6b6b; }
.jackpot-banner .confetti-burst .confetti:nth-child(6) { left: 60%; animation-duration: 4s; animation-delay: 1.2s; background: #a8e6cf; }
.jackpot-banner .confetti-burst .confetti:nth-child(7) { left: 70%; animation-duration: 5s; animation-delay: 0.6s; background: #ffd700; }
.jackpot-banner .confetti-burst .confetti:nth-child(8) { left: 80%; animation-duration: 3.8s; animation-delay: 1.5s; background: #ff6b6b; }
.jackpot-banner .confetti-burst .confetti:nth-child(9) { left: 90%; animation-duration: 4.8s; animation-delay: 0.2s; background: #4ecdc4; }
.jackpot-banner .confetti-burst .confetti:nth-child(10) { left: 15%; animation-duration: 4.2s; animation-delay: 0.9s; background: #ffd93d; }

.jackpot-banner .confetti-burst .confetti::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    background: inherit;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .jackpot-banner .jackpot-content {
        padding: 25px 30px;
    }
    
    .jackpot-banner .jackpot-text .title {
        font-size: 1.8rem;
    }
    
    .jackpot-banner .jackpot-amount .value {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .jackpot-banner {
        min-height: auto;
        border-radius: 12px;
    }
    
    .jackpot-banner .jackpot-content {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .jackpot-banner .jackpot-text .title {
        font-size: 1.5rem;
    }
    
    .jackpot-banner .jackpot-text .subtitle {
        font-size: 0.85rem;
    }
    
    .jackpot-banner .jackpot-slots {
        padding: 12px 20px;
        gap: 8px;
    }
    
    .jackpot-banner .jackpot-slots .slot-item {
        font-size: 2rem;
    }
    
    .jackpot-banner .jackpot-amount .value {
        font-size: 1.4rem;
    }
    
    .jackpot-banner .jackpot-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .jackpot-banner .jackpot-content {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .jackpot-banner .jackpot-text .title {
        font-size: 1.2rem;
    }
    
    .jackpot-banner .jackpot-text .label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .jackpot-banner .jackpot-slots {
        padding: 10px 15px;
        gap: 5px;
    }
    
    .jackpot-banner .jackpot-slots .slot-item {
        font-size: 1.5rem;
    }
    
    .jackpot-banner .jackpot-slots .slot-divider {
        font-size: 1rem;
    }
    
    .jackpot-banner .jackpot-amount .value {
        font-size: 1.2rem;
    }
    
    .jackpot-banner .jackpot-amount .currency {
        font-size: 0.65rem;
    }
}