@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
    --dpt-bg: #0d0f14;
    --dpt-surface: #13161e;
    --dpt-border: #1f2433;
    --dpt-accent: #4f8cff;
    --dpt-accent2: #00e5b0;
    --dpt-text: #eef0f6;
    --dpt-muted: #6b7280;
    --dpt-radius: 14px;
    --dpt-shadow: 0 24px 80px rgba(0, 0, 0, .65);
}

/* ── Scroll lock when popup is open ─────────────────── */
body.dpt-body-lock {
    overflow: hidden;
}

/* Popup Overlay */
.dpt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Popup Container */
.dpt-popup {
    background: url("/wp-content/uploads/2026/03/Group-8.png") no-repeat center/cover;
    border: 1px solid var(--dpt-border);
    border-radius: var(--dpt-radius);
    box-shadow: var(--dpt-shadow);
    width: 100%;
    max-width: 900px;
    height: 581px;
    padding: 36px 32px 28px;
    position: relative;
    transform: translateY(20px) scale(.96);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Close Button */
.dpt-close-x {
    background: #fff;
    color: #23234b;
    box-shadow: 0 4px 22px rgba(79, 140, 255, .5);
    width: auto;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .14s, box-shadow .14s, background .14s, border-color .14s, color .14s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    line-height: 1 !important;
}

.dpt-close-x:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79, 140, 255, .5);
}

/* Title */
.dpt-title {
    font-family: 'Geometric', sans-serif;
    font-size: 90px;
    font-weight: 800;
    width: 80%;
    text-align: center;
    color: var(--dpt-text);
    margin: 0 0 6px;
    padding: 0;
    border: none;
    line-height: 0.9;
}

.dpt-subtitle {
    font-family: 'Geometric', monospace;
    font-size: 24px;
    color: #fff;
    margin: 0 0 24px;
}

/* Success Message */
.dpt-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.dpt-success svg {
    width: 18px;
    height: 18px;
}

/* Download Button */
.dpt-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .14s, box-shadow .14s, background .14s, border-color .14s, color .14s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    line-height: 1 !important;
}

.dpt-btn-primary {
    background: #fff;
    color: #23234b;
    box-shadow: 0 4px 22px rgba(79, 140, 255, .5);
    width: auto;
}

.dpt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79, 140, 255, .5);
}


.dpt-btn-primary svg {
    width: 18px;
    height: 18px;
}

/* Loading State */
.dpt-btn-primary.dpt-loading {
    opacity: 0.7;
    cursor: wait;
}

/* Body Lock */
.dpt-body-lock {
    overflow: hidden;
}

/* Animation */
@keyframes dptSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .dpt-popup {
        padding: 28px 18px 22px 18px;
        height: 265px;
    }

    .dpt-title {
        font-size: 37px;
    }

    .dpt-subtitle {
        font-size: 16px;
    }

    .dpt-btn,
    .dpt-close-x {
        padding: 9px;
        font-size: 16px;
    }
}