/* ================================================================
   DVDCover Cinematic Lightbox
   ================================================================ */
.dvdc-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.dvdc-lb.dvdc-lb-active { display: flex; }
.dvdc-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.dvdc-lb-stage {
    position: absolute;
    inset: 56px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}
.dvdc-lb-img {
    max-width: 90vw;
    max-height: calc(90vh - 56px);
    width: auto;
    height: auto;
    display: block;
    border-radius: 3px;
    box-shadow: 0 8px 60px rgba(0,0,0,.8);
    transform-origin: center center;
    transition: opacity .22s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    cursor: zoom-in;
}
.dvdc-lb-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.dvdc-lb-spin {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: #e63946;
    border-radius: 50%;
    animation: dvdc-spin .7s linear infinite;
}
@keyframes dvdc-spin { to { transform: rotate(360deg); } }
.dvdc-lb-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background: rgba(8,8,8,.9);
    border-bottom: 1px solid rgba(255,255,255,.07);
    z-index: 10;
    gap: 8px;
}
.dvdc-lb-bar-left, .dvdc-lb-bar-right { display: flex; align-items: center; gap: 4px; }
.dvdc-lb-counter {
    font-family: 'Outfit',system-ui,sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    letter-spacing: .5px;
    padding: 0 8px;
    white-space: nowrap;
}
.dvdc-lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.75);
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s, color .15s, transform .12s;
    flex-shrink: 0;
    padding: 0;
}
.dvdc-lb-btn svg { width: 16px; height: 16px; pointer-events: none; }
.dvdc-lb-btn:hover { background: rgba(255,255,255,.14); color: #fff; transform: scale(1.06); }
.dvdc-lb-btn:active { transform: scale(.96); }
.dvdc-lb-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #e63946;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s, transform .12s;
    flex-shrink: 0;
}
.dvdc-lb-dl svg { width: 16px; height: 16px; pointer-events: none; }
.dvdc-lb-dl:hover { background: #c8303c; transform: scale(1.06); }
.dvdc-lb-dl:active { transform: scale(.96); }
.dvdc-lb-close:hover { background: #e63946 !important; color: #fff !important; }
.dvdc-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.85);
    cursor: pointer;
    z-index: 10;
    transition: background .15s, color .15s, transform .15s;
    padding: 0;
    margin-top: 28px;
}
.dvdc-lb-nav svg { width: 18px; height: 18px; pointer-events: none; }
.dvdc-lb-nav:hover { background: #e63946; color: #fff; border-color: transparent; transform: translateY(-50%) scale(1.1); }
.dvdc-lb-prev { left: 14px; }
.dvdc-lb-next { right: 14px; }
.dvdc-lb-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4) 70%, transparent);
    z-index: 10;
    display: none;
}
.dvdc-lb-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.dvdc-lb-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    letter-spacing: .2px;
    white-space: nowrap;
    padding: 0 14px;
}
.dvdc-lb-meta-item:first-child { padding-left: 0; }
.dvdc-lb-meta-item:last-child  { padding-right: 0; }
.dvdc-lb-meta-item + .dvdc-lb-meta-item {
    border-left: 1px solid rgba(255,255,255,.18);
}
.dvdc-lb-meta-item svg { opacity: .7; flex-shrink: 0; }
.dvdc-lb-meta-title {
    color: rgba(255,255,255,.5) !important;
    font-weight: 400 !important;
    font-size: 11px !important;
}
@media (max-width: 640px) {
    .dvdc-lb-img { max-width: 100vw; max-height: calc(100vh - 56px); border-radius: 0; }
    .dvdc-lb-prev { left: 6px; }
    .dvdc-lb-next { right: 6px; }
    .dvdc-lb-bar { padding: 0 6px; }
}
