/* PC tab intro video popup — pricing page */
.da-pc-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.da-pc-video-modal[hidden] {
    display: none !important;
}
.da-pc-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(6px);
}
.da-pc-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}
.da-pc-video-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.da-pc-video-modal__title {
    margin: 0;
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
}
.da-pc-video-modal__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.da-pc-video-modal__skip,
.da-pc-video-modal__close {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
}
.da-pc-video-modal__skip {
    background: #2398ca;
    color: #fff;
    padding: 10px 16px;
}
.da-pc-video-modal__skip:hover {
    background: #1d7fa9;
}
.da-pc-video-modal__close {
    width: 36px;
    height: 36px;
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}
.da-pc-video-modal__close:hover {
    background: rgba(148, 163, 184, 0.35);
}
.da-pc-video-modal__body {
    background: #000;
}
.da-pc-video-modal__video {
    display: block;
    width: 100%;
    max-height: min(70vh, 520px);
    background: #000;
}
body.da-pc-video-open {
    overflow: hidden;
}
