.casino-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.casino-popup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
    animation: popupSlide 0.4s ease-out;
}

.casino-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 17px;
    z-index: 1;
}

.casino-popup-body {
    position: relative;
    z-index: 2;
}

.casino-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.casino-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.casino-popup-body {
    padding: 30px;
    text-align: center;
}

.casino-popup-title {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.casino-popup-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.casino-btn-play {
    background: linear-gradient(45deg, #e94560, #f39c12);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.casino-btn-play:hover {
    transform: translateY(-2px);
    color: white;
}

.casino-promo-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.casino-promo-title {
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popupSlide {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
