/* ===== Promotional Popup Modal ===== */

.dsp-promo-modal .modal-dialog {
    width: 90%;
    max-width: 720px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 60px);
}

.dsp-promo-modal .modal-content {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    overflow: visible;
}

.dsp-promo-modal .modal-body {
    padding: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.dsp-promo-modal .modal-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.dsp-promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    width: 38px;
    height: 38px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a017 0%, #e8c056 100%);
    color: #061428;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
    outline: none;
}

.dsp-promo-close span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-top: -2px;
}

.dsp-promo-close:hover,
.dsp-promo-close:focus {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    color: #061428;
    outline: none;
}

.dsp-promo-modal .modal-backdrop.in {
    opacity: 0.75;
    background: #061428;
}

.dsp-promo-dont-show {
    text-align: center;
    margin-top: 12px;
}

.dsp-promo-dont-show label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

.dsp-promo-dont-show input {
    margin-right: 6px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .dsp-promo-modal .modal-dialog {
        width: 94%;
        margin: 15px auto;
        min-height: calc(100vh - 30px);
    }

    .dsp-promo-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }

    .dsp-promo-close span {
        font-size: 22px;
    }
}
