.games .swiper-slide:hover{
    transform: scale(0.95);
    opacity: 0.5;
    cursor: pointer;
}

.games .swiper-slide img {
    max-height: 130.31px;
}

@media (max-width: 800px) {
        #di_busqueda form{
            display:none!important;
        }

    .games .swiper-slide img {
        width: 108px;
        max-height: 77.75px;
    }
}


/* Casino Live Popup Styles */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: var(--color3);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
    background-color: #333;  /* Cambia el color al pasar el cursor */
    color: #fff;
}

.cta-button {
    background-color: #FF4500;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FF5733;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.9em;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}