.dpp-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 13, 31, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.dpp-overlay.dpp-is-visible {
    opacity: 1;
    visibility: visible;
}

.dpp-dialog {
    position: relative;
    width: min(92vw, 460px);
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
    color: #111827;
    text-align: center;
    transform: translateY(14px) scale(0.98);
    transition: transform 220ms ease;
}

.dpp-overlay.dpp-is-visible .dpp-dialog {
    transform: translateY(0) scale(1);
}

.dpp-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #1e293b;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
}

.dpp-close:hover,
.dpp-close:focus {
    background: #f8fafc;
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.dpp-image-wrap {
    aspect-ratio: 16 / 9;
    background: #edf2f7;
}

.dpp-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dpp-content {
    padding: 26px 28px 30px;
}

.dpp-title {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.dpp-description {
    margin: 0 0 22px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.dpp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 170px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.34);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dpp-button:hover,
.dpp-button:focus {
    background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.42);
}

body.dpp-no-scroll {
    overflow: hidden;
}

@media (max-width: 480px) {
    .dpp-overlay {
        padding: 14px;
    }

    .dpp-dialog {
        width: 100%;
        border-radius: 14px;
    }

    .dpp-content {
        padding: 22px 18px 24px;
    }

    .dpp-description {
        font-size: 15px;
    }

    .dpp-button {
        width: 100%;
    }
}
