.dra-promo-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;

    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dra-promo-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.dra-promo-modal {
    max-width: 600px;
    width: 90%;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.dra-promo-modal img {
    width: 100%;
    height: auto;
    display: block;
}

.dra-promo-close {
    position: absolute;
    top: 0px;
    right: 4px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.dra-promo-close:hover, .dra-promo-close:focus {
    background: none;
    color: #ED2991;
}

/* BounceIn animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}
