.vw-player-shell {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(33, 184, 204, 0.18);
    background: linear-gradient(180deg, rgba(0, 43, 54, 0.96), rgba(7, 20, 28, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.vw-player-shell__launch {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.vw-player-shell__poster,
.vw-player-shell__poster-fallback {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.vw-player-shell__poster {
    object-fit: cover;
}

.vw-player-shell__poster-fallback {
    background: linear-gradient(135deg, rgba(0, 43, 54, 1), rgba(74, 84, 89, 0.88));
}

.vw-player-shell__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}

.vw-player-shell__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.vw-player-shell__play {
    align-self: center;
    justify-self: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    border: 1px solid rgba(204, 155, 33, 0.32);
    background: rgba(0, 43, 54, 0.78);
    color: #fdf6e3;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.vw-player-shell__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vw-player-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(33, 184, 204, 0.22);
    background: rgba(7, 20, 28, 0.72);
    color: #d7e7ea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vw-player-chip--accent {
    border-color: rgba(204, 155, 33, 0.26);
    color: #f5d79a;
}

.vw-player-chip--muted {
    color: #9cb0b6;
}

.vw-player-shell__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vw-player-shell__link {
    color: #21b8cc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.vw-player-shell__link:hover {
    color: #54d3e2;
}

.vw-player-shell__note {
    margin: 0;
    color: #afc2c8;
    font-size: 13px;
    line-height: 1.7;
}

.vw-player-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(2, 10, 14, 0.86);
    backdrop-filter: blur(14px);
}

.vw-player-modal.is-open {
    display: flex;
}

.vw-player-modal__dialog {
    width: min(1180px, 100%);
    max-height: calc(100vh - 44px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(33, 184, 204, 0.18);
    background: linear-gradient(180deg, rgba(0, 43, 54, 0.98), rgba(9, 16, 23, 0.98));
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4);
}

.vw-player-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-player-modal__title {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vw-player-modal__close {
    border: 0;
    border-radius: 999px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: #fdf6e3;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.vw-player-modal__body {
    padding: 18px;
}

.vw-player-modal__surface {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.vw-player-modal__surface video,
.vw-player-modal__surface iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

.vw-player-modal__surface video.is-active,
.vw-player-modal__surface iframe.is-active {
    display: block;
}

.vw-player-modal__note {
    margin: 14px 0 0;
    color: #afc2c8;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 720px) {
    .vw-player-modal {
        padding: 12px;
    }

    .vw-player-modal__bar,
    .vw-player-modal__body {
        padding: 14px;
    }

    .vw-player-shell__play {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}
