.jackpot-wrap{
    margin: 2rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ebf0ff 60%, #ffffff 100%);
    border-radius: 10px;
    box-shadow: 0 0 2px inset white;
    filter: drop-shadow(0 4px 0 #ebf0ff) drop-shadow(0 5px 6px #6c7ba855);
    padding: 15px;
}
.jackpot-section .light-img{
    display: block;
}
.jackpot-section .dark-img{
    display: none;
}
.jackpot-bars{
    max-width: 100%;
    margin-bottom: 1rem;
}
.jackpot-bar {
    flex: 1;
    height: 65px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bar-grand { 
    background: url(../images/jackpot/grand.png) no-repeat center center;
    background-size: contain;
}
.bar-mega { 
    background: url(../images/jackpot/mega.png) no-repeat center center;
    background-size: contain;
}
.bar-major {
    background: url(../images/jackpot/major.png) no-repeat center center;
    background-size: contain;
}
.bar-minor { 
    background: url(../images/jackpot/minor.png) no-repeat center center;
    background-size: contain;
}

.bar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.bar-symbol {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bar-label {
    font-size: 8px;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 1px 4px;
    border-radius: 3px;
}

.bar-amount {
    flex: 1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    text-align: center;
    /* margin-bottom: 10px; */
    margin-left: 20px;
}

/* Jackpot Games Section */
.jackpot-games {
    padding: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #ffa466;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px 12px 12px;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.game-info {
    padding: 12px;
    background: #fff;
    height: 100%;
}

.game-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #6c7ba8;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.game-info p {
    font-size: 12px;
    color: #6c7ba8;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .game-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-info h3 {
        font-size: 13px;
    }
    
    .game-info p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .game-image {
        height: 200px;
    }
    
    .jackpot-games {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
}