    .watch-page-shell {
        position: relative;
        min-height: calc(100vh - 220px);
        background:
            linear-gradient(180deg, #050816 0%, #08101f 28%, #eef4fb 28.1%, #eef4fb 100%);
    }
    .watch-page-shell::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 640px;
        background:
            radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.28), transparent 24%),
            radial-gradient(circle at 88% 14%, rgba(14, 165, 233, 0.18), transparent 24%),
            linear-gradient(180deg, rgba(255,255,255,0.03), transparent 75%);
        pointer-events: none;
    }
    .watch-stage {
        position: relative;
        z-index: 1;
        padding: 1.25rem 0 2rem;
        color: #fff;
    }
    .watch-stage-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) 360px;
        gap: 1.25rem;
        align-items: start;
    }
    .watch-player-shell {
        border-radius: 26px;
        overflow: hidden;
        background: #020617;
        border: 1px solid rgba(148, 163, 184, 0.14);
        box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
    }
    .watch-player-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1rem;
        background: linear-gradient(180deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78));
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }
    .watch-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.45rem 0.78rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.14);
        background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
        color: rgba(226, 232, 240, 0.94);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    .watch-kicker:hover,
    .watch-kicker:focus-visible {
        color: #fff;
        text-decoration: none;
        border-color: rgba(96, 165, 250, 0.26);
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.12));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 24px rgba(37, 99, 235, 0.16);
        transform: translateY(-1px);
    }
    .watch-kicker-logo {
        width: 20px;
        height: 20px;
        object-fit: contain;
        border-radius: 6px;
        background: rgba(255,255,255,0.14);
        padding: 2px;
    }
    .watch-stage-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.55rem;
    }
    .watch-stage-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255,255,255,0.08);
        color: #fff;
        padding: 0.6rem 0.9rem;
        font-size: 0.86rem;
        font-weight: 700;
        backdrop-filter: blur(12px);
        transition: all 0.25s ease;
    }
    .watch-stage-btn:disabled {
        opacity: 0.52;
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }
    .watch-stage-btn:hover,
    .watch-stage-btn.is-active {
        background: linear-gradient(135deg, #4f46e5 0%, #0ea5a4 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        transform: translateY(-1px);
    }
    .watch-stage-more {
        position: relative;
        display: none;
    }
    .watch-stage-more > summary {
        list-style: none;
        cursor: pointer;
    }
    .watch-stage-more > summary::-webkit-details-marker {
        display: none;
    }
    .watch-stage-more-menu {
        position: absolute;
        z-index: 90;
        top: calc(100% + 0.55rem);
        right: 0;
        min-width: 220px;
        padding: 0.45rem;
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.98);
        box-shadow: 0 20px 44px rgba(2, 6, 23, 0.36);
    }
    .watch-stage-more-action {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        border: 0;
        border-radius: 12px;
        padding: 0.72rem 0.78rem;
        background: transparent;
        color: #e2e8f0;
        font-weight: 750;
        text-align: left;
    }
    .watch-stage-more-action:hover,
    .watch-stage-more-action:focus-visible,
    .watch-stage-more-action.is-active {
        background: rgba(59, 130, 246, 0.18);
        color: #fff;
    }
    
    /* Skeleton Loader */
    .asydev-skeleton {
        background: linear-gradient(90deg, rgba(15,23,42,0.04) 25%, rgba(15,23,42,0.08) 37%, rgba(15,23,42,0.04) 63%);
        background-size: 400% 100%;
        animation: asydev-skeleton-loading 1.4s ease infinite;
        border-radius: 8px;
    }
    [data-theme="dark"] .asydev-skeleton {
        background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 37%, rgba(255,255,255,0.04) 63%);
        background-size: 400% 100%;
    }
    @keyframes asydev-skeleton-loading {
        0% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .media-comments-loading {
        display: grid;
        gap: 1rem;
        padding: 1rem;
    }
    .media-comment-skeleton {
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 1rem;
    }
    .media-comment-skeleton-line-sm {
        height: 14px;
        width: 40%;
    }
    .media-comment-skeleton-line-lg {
        height: 48px;
        width: 100%;
    }
    .watch-player-container {
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #000;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    .watch-primary-info {
        padding: 1.15rem 1.15rem 0.45rem;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    }
    .watch-primary-info h1 {
        margin: 0;
        color: #fff;
        font-size: clamp(1.55rem, 2.25vw, 2.35rem);
        line-height: 1.12;
        font-weight: 850;
        letter-spacing: -0.025em;
        text-wrap: balance;
    }
    .watch-primary-info p {
        margin: 0.65rem 0 0;
        color: rgba(226, 232, 240, 0.78);
        line-height: 1.62;
        max-width: 78ch;
    }
    .watch-player-container > video,
    .watch-player-container > iframe,
    .watch-player-container > .plyr,
    .watch-player-container .plyr__video-wrapper,
    .watch-player-container .plyr__video-embed,
    .watch-player-container .plyr__video-embed iframe {
        width: 100%;
        height: 100%;
    }
    .watch-player-container > video,
    .watch-player-container .plyr video {
        display: block;
        object-fit: contain;
        object-position: center center;
        background: #000;
    }
    .watch-player-container > .plyr,
    .watch-player-container .plyr__video-wrapper {
        aspect-ratio: 16 / 9;
        min-height: 0;
        background: #000;
    }
    .watch-embed-frame {
        width: 100%;
        height: 100%;
        border: 0;
    }
    .watch-player-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 1rem;
        background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(15,23,42,0.96));
        border-top: 1px solid rgba(148, 163, 184, 0.12);
    }
    .watch-player-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    .watch-player-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.45rem 0.75rem;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        font-size: 0.82rem;
        color: rgba(255,255,255,0.88);
    }
    .watch-quality-controls {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        padding: 0.8rem 0.95rem;
        border-radius: 20px;
        background:
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 40%),
            linear-gradient(135deg, rgba(15,23,42,0.84), rgba(15,23,42,0.72));
        border: 1px solid rgba(96, 165, 250, 0.18);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .watch-quality-summary {
        display: none;
    }
    .watch-quality-copy {
        min-width: 220px;
    }
    .watch-quality-copy strong {
        display: block;
        font-size: 0.92rem;
    }
    .watch-quality-copy span {
        display: block;
        font-size: 0.82rem;
        color: rgba(226, 232, 240, 0.72);
    }
    .watch-quality-controls .form-select {
        min-width: 190px;
        border-radius: 999px;
        background:
            linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.16)),
            rgba(255,255,255,0.08);
        color: #fff;
        border-color: rgba(148,163,184,0.18);
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
    }
    .watch-quality-controls .form-select:focus {
        border-color: rgba(96, 165, 250, 0.42);
        box-shadow: 0 0 0 0.24rem rgba(37, 99, 235, 0.2);
    }
    .watch-sidebar {
        border-radius: 24px;
        padding: 1rem;
        background: rgba(2,6,23,0.74);
        border: 1px solid rgba(148,163,184,0.2);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        backdrop-filter: blur(18px);
        position: sticky;
        top: 92px;
    }
    .watch-sidebar-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .watch-sidebar-title {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 800;
        color: #fff;
    }
    .watch-autoplay-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        color: rgba(226,232,240,0.82);
    }
    .watch-autoplay-toggle input {
        width: 38px;
        height: 20px;
        accent-color: #3b82f6;
    }
    .watch-next-card {
        display: grid;
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 0.85rem;
        padding: 0.6rem;
        border-radius: 18px;
        text-decoration: none;
        color: #fff;
        transition: transform 0.2s ease, background 0.2s ease;
    }
    .watch-next-card:hover {
        color: #fff;
        transform: translateY(-1px);
        background: rgba(255,255,255,0.06);
    }
    .watch-next-thumb-wrap {
        position: relative;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
        overflow: hidden;
        background: #111827;
    }
    .watch-next-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .watch-next-duration {
        position: absolute;
        right: 0.45rem;
        bottom: 0.45rem;
        display: inline-flex;
        align-items: center;
        padding: 0.2rem 0.42rem;
        border-radius: 999px;
        background: rgba(2,6,23,0.8);
        font-size: 0.72rem;
        font-weight: 700;
        color: #fff;
    }
    .watch-next-type {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #93c5fd;
        font-weight: 800;
        margin-bottom: 0.25rem;
    }
    .watch-next-card h5 {
        font-size: 0.96rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
        color: #fff;
        overflow-wrap: anywhere;
    }
    .watch-next-card small {
        display: block;
        color: rgba(226,232,240,0.78);
        overflow-wrap: anywhere;
    }
    .watch-content-shell {
        position: relative;
        z-index: 1;
        padding: 0 0 2.25rem;
    }
    .watch-content-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 1.25rem;
        align-items: start;
    }
    .watch-info-card,
    .watch-utility-card {
        background: rgba(255,255,255,0.94);
        border: 1px solid rgba(148,163,184,0.16);
        border-radius: 24px;
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }
    .watch-info-card {
        padding: 1.5rem;
    }
    .watch-info-actions {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        flex-wrap: wrap;
        margin-bottom: 1.15rem;
    }
    .watch-title-row {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    .watch-title-row h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3vw, 2.65rem);
        line-height: 1.12;
        font-weight: 900;
        color: #0f172a;
    }
    .watch-meta-strip,
    .watch-chip-row,
    .watch-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
    }
    .watch-meta-strip {
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    .watch-chip-row {
        justify-content: flex-end;
    }
    .watch-chip-row.mt-3.mb-3 {
        margin: 0 !important;
    }
    .watch-info-pill,
    .watch-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border-radius: 999px;
        padding: 0.5rem 0.82rem;
        background: rgba(15,23,42,0.05);
        color: #334155;
        font-size: 0.86rem;
        font-weight: 700;
    }
    .watch-summary {
        font-size: 1rem;
        line-height: 1.7;
        color: #475569;
        margin: 1rem 0 1.1rem;
        overflow-wrap: anywhere;
    }
    .watch-actions {
        margin-bottom: 1rem;
        align-items: center;
    }
    .watch-action-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border-radius: 999px;
        justify-content: center;
        text-align: center;
    }
    .watch-description {
        color: #475569;
        line-height: 1.78;
        position: relative;
        overflow-wrap: anywhere;
    }
    .watch-description img,
    .watch-description video,
    .watch-description iframe {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
    }
    .watch-description iframe {
        width: 100%;
        min-height: 320px;
        border: 0;
    }
    .watch-description table {
        width: 100%;
        min-width: 640px;
        border-collapse: collapse;
    }
    .watch-description th,
    .watch-description td {
        padding: 0.72rem 0.8rem;
        border: 1px solid rgba(148,163,184,0.16);
        vertical-align: top;
    }
    .watch-description pre,
    .watch-description code {
        white-space: pre-wrap;
        word-break: break-word;
    }
    .watch-description.is-collapsed {
        max-height: 9.2rem;
        overflow: hidden;
    }
    .watch-description.is-collapsed::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 3rem;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.98));
        pointer-events: none;
    }
    .watch-shortcuts-list,
    .watch-resource-list {
        display: grid;
        gap: 0.55rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .watch-resource-list a {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        text-decoration: none;
        color: #2563eb;
        font-weight: 700;
        overflow-wrap: anywhere;
    }
    .watch-shortcut-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
    }
    .watch-shortcut-chip {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.55rem 0.78rem;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(148,163,184,0.18);
        color: #0f172a;
        font-size: 0.82rem;
        font-weight: 800;
        box-shadow: 0 10px 24px rgba(15,23,42,0.06);
        cursor: help;
    }
    .watch-shortcut-chip::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 50%;
        bottom: calc(100% + 10px);
        transform: translateX(-50%) translateY(8px);
        width: max-content;
        max-width: min(260px, 78vw);
        padding: 0.68rem 0.8rem;
        border-radius: 16px;
        background: rgba(15,23,42,0.96);
        color: #e2e8f0;
        font-size: 0.78rem;
        line-height: 1.55;
        font-weight: 600;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 18px 40px rgba(15,23,42,0.25);
        transition: opacity .18s ease, transform .18s ease;
        text-transform: none;
        white-space: normal;
        z-index: 20;
    }
    .watch-shortcut-chip:hover::after,
    .watch-shortcut-chip:focus-visible::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .watch-shortcut-chip:focus-visible {
        outline: 2px solid rgba(37,99,235,0.45);
        outline-offset: 2px;
    }
    .watch-engagement-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .watch-engagement-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.55rem 0.85rem;
        border-radius: 999px;
        background: rgba(37,99,235,0.08);
        color: #1d4ed8;
        font-weight: 800;
        font-size: 0.86rem;
    }
    .media-engagement-card {
        margin-top: 1.5rem;
        padding: 1.3rem;
        border-radius: 24px;
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(148,163,184,0.16);
        box-shadow: 0 18px 44px rgba(15,23,42,0.08);
    }
    .media-engagement-head {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    .media-engagement-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.78rem;
        border-radius: 999px;
        background: rgba(37,99,235,0.08);
        color: #1d4ed8;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .media-engagement-head h2 {
        margin: 0.8rem 0 0.2rem;
        font-size: 1.35rem;
        font-weight: 900;
        color: #0f172a;
    }
    .media-engagement-head p,
    .media-comment-guest .small {
        margin: 0;
        color: #64748b;
    }
    .media-reaction-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.65rem;
    }
    .media-reaction-btn,
    .media-reaction-stat,
    .media-member-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.58rem 0.9rem;
        border-radius: 999px;
        border: 1px solid rgba(148,163,184,0.18);
        background: rgba(15,23,42,0.04);
        font-weight: 800;
        color: #334155;
    }
    .media-reaction-btn.is-active {
        background: rgba(37,99,235,0.12);
        color: #1d4ed8;
        border-color: rgba(37,99,235,0.26);
    }
    .media-comment-auth,
    .media-comment-compose {
        margin-bottom: 1rem;
    }
    .media-comment-guest {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(15,23,42,0.04);
        border: 1px solid rgba(148,163,184,0.14);
    }
    .media-comment-compose textarea,
    .media-reply-box textarea {
        border-radius: 18px;
        min-height: 110px;
    }
    .media-compose-actions {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 0.75rem;
    }
    .media-compose-tools,
    .media-reply-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    .media-comments-list {
        display: grid;
        gap: 1rem;
    }
    .media-comments-empty {
        padding: 1rem;
        border-radius: 18px;
        background: rgba(15,23,42,0.04);
        color: #64748b;
    }
    .media-comment-item,
    .media-comment-reply {
        padding: 1rem;
        border-radius: 20px;
        background: rgba(15,23,42,0.04);
        border: 1px solid rgba(148,163,184,0.12);
    }
    .media-comment-shell {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 0.9rem;
        align-items: start;
    }
    .media-comment-avatar {
        width: 46px;
        height: 46px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--avatar-bg);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 900;
        letter-spacing: 0.14em;
        box-shadow: 0 12px 24px rgba(15,23,42,0.18);
    }
    .media-comment-main {
        min-width: 0;
    }
    .media-comment-meta {
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 0.45rem;
        color: #64748b;
        font-size: 0.86rem;
    }
    .media-comment-identity {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        flex-wrap: wrap;
    }
    .media-comment-identity strong {
        color: #0f172a;
        font-size: 0.96rem;
    }
    .media-comment-body {
        color: #334155;
        line-height: 1.7;
        white-space: pre-wrap;
        overflow-wrap: anywhere;
    }
    .media-comment-actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        flex-wrap: wrap;
        margin-top: 0.75rem;
    }
    .media-comment-reaction {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        border: 1px solid rgba(148,163,184,0.18);
        background: rgba(15,23,42,0.04);
        color: #334155;
        border-radius: 999px;
        padding: 0.42rem 0.72rem;
        font-weight: 700;
    }
    .media-comment-reaction strong {
        font-size: 0.82rem;
    }
    .media-comment-reaction.is-active {
        background: rgba(37,99,235,0.12);
        color: #1d4ed8;
        border-color: rgba(37,99,235,0.26);
    }
    .media-comment-replies {
        display: grid;
        gap: 0.75rem;
        margin-top: 0.9rem;
        padding-left: 1rem;
        border-left: 2px solid rgba(148,163,184,0.18);
    }
    .media-reply-toggle,
    .media-thread-toggle {
        margin-top: 0.65rem;
        border: 0;
        background: none;
        color: #2563eb;
        font-weight: 800;
        padding: 0;
    }
    .media-reply-box {
        margin-top: 0.75rem;
    }
    .media-comment-thread-more {
        display: grid;
        gap: 0.75rem;
        margin-top: 0.65rem;
    }
    .media-emoji-wrap {
        position: relative;
    }
    .media-emoji-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border: 1px solid rgba(148,163,184,0.18);
        background: rgba(15,23,42,0.04);
        color: #334155;
        border-radius: 999px;
        padding: 0.52rem 0.82rem;
        font-weight: 700;
    }
    .media-emoji-panel {
        position: fixed;
        z-index: 1090;
        left: var(--media-emoji-left, 0px);
        top: var(--media-emoji-top, auto);
        bottom: var(--media-emoji-bottom, auto);
        width: min(320px, calc(100vw - 48px));
        border-radius: 18px;
        border: 1px solid rgba(148,163,184,0.18);
        background: rgba(255,255,255,0.98);
        box-shadow: 0 20px 45px rgba(15,23,42,0.18);
        padding: 0.85rem;
        max-height: min(360px, calc(100vh - 32px));
        overflow: auto;
    }
    .media-emoji-search {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        border-radius: 14px;
        padding: 0.65rem 0.8rem;
        background: rgba(15,23,42,0.04);
        border: 1px solid rgba(148,163,184,0.14);
        margin-bottom: 0.75rem;
        color: #64748b;
    }
    .media-emoji-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.55rem;
    }
    .media-emoji-option {
        border: 1px solid rgba(148,163,184,0.14);
        background: rgba(15,23,42,0.04);
        border-radius: 14px;
        padding: 0.7rem 0.4rem;
        display: grid;
        gap: 0.3rem;
        place-items: center;
        color: #334155;
        font-weight: 700;
    }
    .media-emoji-option i {
        font-size: 1rem;
        color: #2563eb;
    }
    .media-emoji-option span:last-child {
        font-size: 1.05rem;
        line-height: 1;
    }
    .watch-utility-card {
        padding: 1.1rem;
        position: sticky;
        top: 92px;
    }
    .watch-utility-card h2 {
        font-size: 1.05rem;
        font-weight: 900;
        margin-bottom: 0.85rem;
        color: #0f172a;
    }
    .watch-utility-section + .watch-utility-section {
        margin-top: 1.15rem;
        padding-top: 1.05rem;
        border-top: 1px solid rgba(148,163,184,0.14);
    }
    .watch-utility-section h3 {
        font-size: 0.96rem;
        font-weight: 900;
        margin-bottom: 0.7rem;
        color: #0f172a;
    }
    .watch-utility-actions {
        display: grid;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .watch-utility-actions .watch-action-btn {
        overflow-wrap: anywhere;
    }
    .plyr--video {
        --plyr-color-main: #2563eb;
        font-family: inherit;
        --watch-range-fill: 0%;
        --watch-range-track: linear-gradient(90deg, #38bdf8 0%, #2563eb var(--watch-range-fill), rgba(148,163,184,0.24) var(--watch-range-fill), rgba(148,163,184,0.24) 100%);
    }
    .watch-player-container {
        position: relative;
    }
    .watch-quality-controls {
        display: inline-flex;
        align-items: center;
        gap: 7rem;
        padding: 0.45rem 1.15rem 0.45rem 0.55rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        box-shadow: 0 8px 32px rgba(2, 6, 23, 0.2);
        flex-wrap: nowrap;
        transition: all 0.3s ease;
    }
    .watch-quality-copy {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        min-width: 0;
        white-space: nowrap;
        color: #fff;
    }
    .watch-quality-copy i {
        font-size: 0.95rem;
        color: #94a3b8;
        margin-left: 0.45rem;
    }
    .watch-quality-copy strong {
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: -0.01em;
    }
    .watch-quality-copy span {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
    }
    .watch-quality-controls .form-select {
        display: none !important; /* Hide original select */
    }
    .asydev-custom-select {
        position: relative;
        min-width: 110px;
        flex: 0 0 auto;
    }
    .asydev-select-trigger {
        height: 34px;
        padding: 0 2rem 0 1rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-weight: 700;
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
    }
    .asydev-select-trigger::after {
        content: "";
        position: absolute;
        right: 0.75rem;
        width: 0.85rem;
        height: 0.85rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s ease;
    }
    .asydev-custom-select.is-open .asydev-select-trigger::after {
        transform: rotate(180deg);
    }
    .asydev-select-trigger:hover {
        background: linear-gradient(135deg, #4f46e5 0%, #0ea5a4 100%);
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }
    .asydev-select-menu {
        position: absolute;
        bottom: calc(100% + 0.75rem);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        min-width: 140px;
        padding: 0.5rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }
    .asydev-custom-select.is-open .asydev-select-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .asydev-select-option {
        padding: 0.6rem 1rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
    }
    .asydev-select-option:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
    .asydev-select-option.is-selected {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(14, 165, 164, 0.2) 100%);
        color: #0ea5a4;
        border: 1px solid rgba(14, 165, 164, 0.3);
    }
    .asydev-select-option i {
        font-size: 0.75rem;
        margin-left: 0.5rem;
        opacity: 0;
    }
    .asydev-select-option.is-selected i {
        opacity: 1;
    }
    .plyr--full-ui input[type=range] {
        color: #2563eb;
    }
    .plyr--video .plyr__controls input[type=range] {
        background: var(--watch-range-track);
        border-radius: 999px;
    }
    .plyr--video .plyr__progress input[type=range] {
        --watch-range-fill: 0%;
        background-image: linear-gradient(90deg, #38bdf8 0%, #2563eb var(--watch-range-fill), rgba(255,255,255,0.18) var(--watch-range-fill), rgba(255,255,255,0.18) 100%);
        background-color: transparent;
        height: 0.42rem;
    }
    .plyr--video .plyr__volume input[type=range] {
        --watch-range-fill: 100%;
        background-image: linear-gradient(90deg, #7dd3fc 0%, #2563eb var(--watch-range-fill), rgba(255,255,255,0.16) var(--watch-range-fill), rgba(255,255,255,0.16) 100%);
        background-color: transparent;
    }
    .plyr--video .plyr__progress input[type=range]::-webkit-slider-runnable-track,
    .plyr--video .plyr__volume input[type=range]::-webkit-slider-runnable-track {
        background: transparent;
        border-radius: 999px;
    }
    .plyr--video .plyr__progress input[type=range]::-moz-range-track,
    .plyr--video .plyr__volume input[type=range]::-moz-range-track {
        background: transparent;
        border-radius: 999px;
    }
    .plyr__volume {
        position: relative;
    }
    .watch-volume-tooltip {
        position: absolute;
        left: 50%;
        bottom: calc(100% + 0.75rem);
        transform: translateX(-50%) translateY(6px) scale(0.96);
        min-width: 54px;
        padding: 0.35rem 0.62rem;
        border-radius: 999px;
        background:
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.24), transparent 42%),
            linear-gradient(135deg, rgba(15,23,42,0.94), rgba(15,23,42,0.86));
        border: 1px solid rgba(96, 165, 250, 0.2);
        box-shadow: 0 16px 34px rgba(2, 6, 23, 0.26);
        color: #f8fafc;
        font-size: 0.76rem;
        font-weight: 800;
        line-height: 1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
        backdrop-filter: blur(14px);
        z-index: 8;
    }
    .watch-volume-tooltip::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid rgba(17, 24, 39, 0.94);
    }
    .watch-volume-tooltip.is-visible {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    .watch-stage.is-theater .watch-stage-grid {
        grid-template-columns: 1fr;
    }
    .watch-stage.is-theater .watch-sidebar,
    .watch-stage.is-theater .watch-content-shell .watch-content-grid > aside {
        display: none;
    }
    [data-theme="dark"] .watch-page-shell {
        background: linear-gradient(180deg, #020617 0%, #08101f 28%, #08111f 28.1%, #08111f 100%);
    }
    [data-theme="dark"] .watch-info-card,
    [data-theme="dark"] .watch-utility-card {
        background: rgba(15,23,42,0.92);
        border-color: rgba(148,163,184,0.14);
    }
    [data-theme="dark"] .watch-sidebar-title,
    [data-theme="dark"] .watch-next-card,
    [data-theme="dark"] .watch-next-card:hover,
    [data-theme="dark"] .watch-next-card h5 {
        color: #fff;
    }
    [data-theme="dark"] .watch-next-card small {
        color: rgba(226,232,240,0.78);
    }
    [data-theme="dark"] .watch-autoplay-toggle {
        color: rgba(226, 232, 240, 0.78);
    }
    [data-theme="dark"] .watch-sidebar .watch-sidebar-title,
    [data-theme="dark"] .watch-sidebar .watch-next-card h5,
    [data-theme="dark"] .watch-sidebar .watch-next-card,
    [data-theme="dark"] .watch-sidebar .watch-next-card:hover {
        color: #fff;
    }
    [data-theme="dark"] .watch-sidebar .watch-autoplay-toggle,
    [data-theme="dark"] .watch-sidebar .watch-next-card small {
        color: rgba(226,232,240,0.78);
    }
    [data-theme="dark"] .watch-title-row h1,
    [data-theme="dark"] .watch-utility-card h2,
    [data-theme="dark"] .watch-utility-section h3 {
        color: #fff;
    }
    [data-theme="dark"] .watch-summary,
    [data-theme="dark"] .watch-description {
        color: rgba(226,232,240,0.76);
    }
    [data-theme="dark"] .watch-chip {
        background: rgba(255,255,255,0.05);
        border-color: rgba(148,163,184,0.12);
        color: rgba(226,232,240,0.88);
    }
    [data-theme="dark"] .watch-utility-section + .watch-utility-section {
        border-top-color: rgba(148,163,184,0.18);
    }
    [data-theme="dark"] .watch-description.is-collapsed::after {
        background: linear-gradient(180deg, transparent, rgba(15,23,42,0.98));
    }
    [data-theme="dark"] .watch-shortcut-chip,
    [data-theme="dark"] .media-engagement-card,
    [data-theme="dark"] .media-comment-item,
    [data-theme="dark"] .media-comment-reply,
    [data-theme="dark"] .media-comment-guest,
    [data-theme="dark"] .media-comments-empty,
    [data-theme="dark"] .media-reaction-btn,
    [data-theme="dark"] .media-reaction-stat,
    [data-theme="dark"] .media-member-pill {
        background: rgba(255,255,255,0.05);
        border-color: rgba(148,163,184,0.14);
        color: rgba(226,232,240,0.88);
    }
    [data-theme="dark"] .media-engagement-head h2,
    [data-theme="dark"] .media-comment-body,
    [data-theme="dark"] .media-comment-identity strong {
        color: #fff;
    }
    [data-theme="dark"] .media-engagement-head p,
    [data-theme="dark"] .media-comment-meta {
        color: rgba(226,232,240,0.7);
    }
    [data-theme="dark"] .media-emoji-toggle,
    [data-theme="dark"] .media-emoji-panel,
    [data-theme="dark"] .media-emoji-search,
    [data-theme="dark"] .media-emoji-option,
    [data-theme="dark"] .media-comment-reaction {
        background: rgba(255,255,255,0.05);
        border-color: rgba(148,163,184,0.14);
        color: rgba(226,232,240,0.88);
    }
    @media (max-width: 1199.98px) {
        .watch-stage-grid,
        .watch-content-grid {
            grid-template-columns: 1fr 320px;
        }
    }
    @media (max-width: 991.98px) {
        .watch-content-shell {
            padding-bottom: 1.75rem;
        }
        .watch-stage-grid,
        .watch-content-grid {
            grid-template-columns: 1fr;
        }
        .watch-sidebar,
        .watch-utility-card {
            position: static;
        }
        .watch-sidebar {
            top: auto;
        }
        .watch-sidebar,
        .watch-utility-card {
            width: 100%;
        }
        .watch-player-shell { order: 1; }
        .watch-info-card { order: 2; }
        .watch-sidebar { order: 3; }
        .watch-utility-card { order: 4; }
    }
    @media (max-width: 767.98px) {
        .watch-content-shell {
            padding: 0 0 1.4rem;
        }
        .watch-page-shell {
            background: linear-gradient(180deg, #050816 0%, #08101f 18%, #eef4fb 18.1%, #eef4fb 100%);
        }
        .watch-page-shell::before {
            height: 420px;
        }
        .watch-player-topbar,
        .watch-player-footer,
        .watch-title-row {
            flex-direction: column;
            align-items: stretch;
        }
        .watch-stage-actions,
        .watch-player-meta,
        .watch-engagement-strip,
        .watch-meta-strip,
        .watch-tag-strip,
        .watch-quick-actions,
        .watch-why-list,
        .media-compose-actions {
            gap: 0.55rem;
        }
        .watch-player-topbar {
            gap: 0.7rem;
        }
        .watch-kicker {
            width: 100%;
        }
        .watch-stage-actions {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .watch-stage-actions > .watch-stage-btn,
        .watch-stage-actions > .watch-stage-more > summary {
            width: 100%;
            min-height: 42px;
            justify-content: center;
            padding-inline: 0.55rem;
            white-space: nowrap;
        }
        .watch-stage-btn--advanced {
            display: none;
        }
        .watch-stage-more {
            display: block;
        }
        .watch-stage-more-menu {
            position: fixed;
            top: auto;
            right: 1rem;
            bottom: calc(1rem + env(safe-area-inset-bottom));
            left: 1rem;
            min-width: 0;
        }
        .watch-next-card {
            grid-template-columns: 132px minmax(0, 1fr);
        }
        .media-comment-guest,
        .media-compose-actions {
            align-items: stretch;
        }
        .watch-stage {
            padding-top: 0.75rem;
        }
        .watch-stage-grid,
        .watch-content-grid {
            gap: 1rem;
        }
        .watch-content-grid {
            align-items: stretch;
        }
        .watch-player-shell {
            border-radius: 20px;
            overflow: visible;
            position: relative;
            z-index: 50;
        }
        .watch-sidebar,
        .watch-info-card,
        .watch-utility-card {
            border-radius: 20px;
        }
        .watch-player-topbar,
        .watch-player-footer,
        .watch-sidebar,
        .watch-info-card,
        .watch-utility-card {
            padding-inline: 0.9rem;
        }
        .watch-info-card,
        .watch-utility-card {
            width: 100%;
            min-width: 0;
        }
        .watch-kicker {
            justify-content: center;
            width: 100%;
            max-width: 100%;
        }
        .watch-actions {
            width: 100%;
        }
        .watch-actions .watch-action-btn,
        .watch-actions .btn {
            width: 100%;
        }
        .watch-player-container {
            aspect-ratio: 16 / 9;
        }
        .watch-primary-info {
            padding: 1rem 0.95rem 0.35rem;
        }
        .watch-primary-info h1 {
            font-size: clamp(1.38rem, 6.6vw, 1.85rem);
            line-height: 1.16;
        }
        .watch-primary-info p {
            margin-top: 0.5rem;
            font-size: 0.92rem;
            line-height: 1.58;
        }
        .watch-title-row h1 {
            font-size: clamp(1.45rem, 7vw, 2rem);
            line-height: 1.18;
        }
        .watch-summary,
        .watch-description {
            font-size: 0.96rem;
            line-height: 1.72;
            word-break: break-word;
            overflow-wrap: anywhere;
        }
        .watch-meta-strip,
        .watch-engagement-strip {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 0.25rem;
            scrollbar-width: none;
        }
        .watch-meta-strip {
            margin-inline: -0.1rem;
            padding-inline: 0.1rem;
        }
        .watch-meta-strip::-webkit-scrollbar,
        .watch-engagement-strip::-webkit-scrollbar {
            display: none;
        }
        .watch-player-pill,
        .watch-engagement-pill {
            flex: 0 0 auto;
        }
        .watch-next-thumb-wrap {
            aspect-ratio: 16 / 9;
        }
        .watch-next-card h5 {
            font-size: 0.92rem;
        }
        .watch-sidebar-heading {
            flex-direction: column;
            align-items: stretch;
        }
        .watch-info-card,
        .watch-utility-card {
            border-radius: 20px;
        }
        .watch-quality-controls {
            display: block;
            width: 100%;
            padding: 0.75rem 0.85rem;
            border-radius: 18px;
        }
        .watch-quality-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            list-style: none;
            cursor: pointer;
            color: #fff;
            font-weight: 800;
        }
        .watch-quality-summary::-webkit-details-marker {
            display: none;
        }
        .watch-quality-summary::after {
            content: '+';
            font-size: 1.25rem;
            line-height: 1;
        }
        .watch-quality-controls[open] .watch-quality-summary::after {
            content: '\2212';
        }
        .watch-quality-controls[open] .watch-quality-summary {
            padding-bottom: 0.7rem;
            margin-bottom: 0.7rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        }
        .watch-quality-controls > :not(summary) {
            margin-top: 0.65rem;
        }
        .watch-quality-copy {
            width: 100%;
            justify-content: flex-start;
        }
        .watch-quality-copy span {
            display: block;
            white-space: normal;
            line-height: 1.4;
        }
        .watch-quality-copy strong {
            display: block;
        }
        .asydev-custom-select,
        .asydev-select-trigger,
        .watch-quality-controls .form-select {
            width: 100%;
            min-width: 0;
            max-width: 100%;
        }
        .asydev-select-trigger {
            justify-content: flex-start;
        }
        .asydev-select-menu {
            left: 0;
            right: 0;
            top: calc(100% + 0.55rem);
            bottom: auto;
            min-width: 0;
            transform: translateX(0) translateY(-6px);
        }
        .asydev-custom-select.is-open .asydev-select-menu {
            transform: translateX(0) translateY(0);
        }
        .watch-info-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .watch-info-actions .btn {
            justify-content: center;
            min-height: 44px;
        }
        body.public-media-watch-route .public-accessbar .access-toggle,
        body:has(.watch-page-shell) .public-accessbar .access-toggle {
            top: var(--access-offset, 92px);
            right: 0;
            bottom: auto;
            left: auto;
            width: 46px;
            min-width: 46px;
            max-width: 46px;
            height: 46px;
            min-height: 46px;
            max-height: 46px;
            padding: 0;
            border-radius: 14px 0 0 14px;
        }
        .watch-comment-card,
        .watch-comments-shell,
        .watch-comments-list,
        .watch-comment {
            min-width: 0;
        }
        .media-comment-thread {
            padding-left: 0.85rem;
        }
        .media-comment-body,
        .media-comment-reply-form textarea,
        .watch-description table,
        .watch-description pre {
            max-width: 100%;
        }
        .watch-description table,
        .watch-description pre {
            display: block;
            overflow-x: auto;
        }
        .media-compose-tools,
        .media-reply-actions {
            width: 100%;
            gap: 0.55rem;
        }
        .media-compose-tools > *,
        .media-reply-actions > * {
            width: 100%;
        }
        .media-emoji-toggle,
        .media-reply-actions .btn,
        .media-compose-actions .btn {
            justify-content: center;
        }
        .media-emoji-panel {
            width: min(320px, calc(100vw - 24px));
            max-height: min(340px, calc(100vh - 24px));
        }
    }
    @media (max-width: 575.98px) {
        .watch-content-shell {
            padding: 0 0 1.1rem;
        }
        .watch-stage {
            padding-top: 0.45rem;
        }
        .watch-player-topbar,
        .watch-player-footer,
        .watch-sidebar,
        .watch-info-card,
        .watch-utility-card {
            padding: 0.8rem;
        }
        .watch-content-grid {
            gap: 0.85rem;
        }
        .watch-stage-actions {
            width: 100%;
        }
        .watch-stage-btn {
            padding: 0.58rem 0.8rem;
            font-size: 0.82rem;
        }
        .watch-player-container {
            aspect-ratio: 16 / 9;
        }
        .watch-title-row h1 {
            font-size: clamp(1.3rem, 7.6vw, 1.8rem);
        }
        .watch-summary,
        .watch-description {
            font-size: 0.92rem;
            line-height: 1.68;
        }
        .watch-next-card {
            padding: 0.5rem;
            border-radius: 16px;
        }
        .watch-next-thumb-wrap {
            border-radius: 12px;
        }
        .watch-quality-controls {
            gap: 0.55rem;
            justify-content: stretch;
        }
        .watch-quality-controls .form-select {
            width: 100%;
        }
        .watch-description iframe {
            min-height: 220px;
        }
        .media-comment-shell {
            grid-template-columns: 40px minmax(0, 1fr);
            gap: 0.75rem;
        }
        .media-comment-avatar {
            width: 40px;
            height: 40px;
            font-size: 0.74rem;
        }
        .media-comment-thread {
            padding-left: 0.65rem;
        }
    }
