/* ========== ادامه پخش واقعی ========== */
.dpp-resume-card {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    width: min(390px, calc(100vw - 36px));
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(106, 78, 158, .22);
    border-radius: 16px;
    background: rgba(255,255,255,.97);
    color: #25202f;
    box-shadow: 0 14px 38px rgba(30, 22, 48, .18);
    direction: rtl;
    backdrop-filter: blur(12px);
}
.dpp-resume-card[hidden] {
    display: none !important;
}
.dpp-resume-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--dpp-primary-light, rgba(106,78,158,.14));
    color: var(--dpp-primary, #6a4e9e);
}
.dpp-resume-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.dpp-resume-content {
    flex: 1;
    min-width: 0;
}
.dpp-resume-title {
    display: block;
    margin: 0 0 2px;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dpp-resume-meta {
    display: block;
    color: #746d7e;
    font-size: 11px;
}
.dpp-resume-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}
.dpp-resume-continue,
.dpp-resume-dismiss {
    border: 0;
    font: inherit;
    cursor: pointer;
}
.dpp-resume-continue {
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--dpp-primary, #6a4e9e);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}
.dpp-resume-dismiss {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    color: #8a8491;
    font-size: 20px;
    line-height: 1;
}
.dpp-resume-dismiss:hover {
    background: rgba(106,78,158,.10);
    color: var(--dpp-primary, #6a4e9e);
}
.theme-dark .dpp-resume-card,
[data-theme="dark"] .dpp-resume-card,
.dark-skin .dpp-resume-card,
body.dark .dpp-resume-card,
body.dpp-light-player:not(.theme-dark) .dpp-resume-card {
    border-color: rgba(255,255,255,.10);
}
.theme-dark .dpp-resume-card,
[data-theme="dark"] .dpp-resume-card,
.dark-skin .dpp-resume-card,
body.dark .dpp-resume-card {
    background: rgba(25, 29, 41, .97);
    color: #f7f8fb;
    box-shadow: 0 14px 38px rgba(0,0,0,.32);
}
.theme-dark .dpp-resume-meta,
[data-theme="dark"] .dpp-resume-meta,
.dark-skin .dpp-resume-meta,
body.dark .dpp-resume-meta {
    color: #b9c0cf;
}
@media (max-width: 640px) {
    .dpp-resume-card {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
        gap: 9px;
        padding: 11px;
    }
    .dpp-resume-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .dpp-resume-title {
        font-size: 12px;
    }
    .dpp-resume-meta {
        font-size: 10px;
    }
    .dpp-resume-continue {
        padding: 5px 10px;
        font-size: 10px;
    }
}
