:root {
    --vv-accent: #ff3158;
    --vv-surface: #101114;
    --vv-panel: #17181c;
    --vv-text: #fff;
    --vv-muted: rgba(255,255,255,.68);
}

body:has(.vlike-video-app) {
    overflow: hidden;
    background: #070708;
}

body.vlike-video-open { overflow: hidden; }

.vlike-video-app,
.vlike-video-app * {
    box-sizing: border-box;
}

.vlike-video-app {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    height: calc(var(--vvh, 1vh) * 100);
    min-height: 520px;
    color: var(--vv-text);
    background: radial-gradient(circle at 50% 20%, #24252a 0, #0a0a0c 42%, #050506 100%);
    font-family: inherit;
    overscroll-behavior: none;
}

.vlike-video-app button,
.vlike-video-app input,
.vlike-video-app select,
.vlike-video-app textarea {
    font: inherit;
}

.vlike-video-app button {
    color: inherit;
}

.vlike-video-header {
    position: absolute;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: max(12px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) 8px max(18px, env(safe-area-inset-left));
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.72), transparent);
}

.vlike-video-header > * {
    pointer-events: auto;
}

.vlike-video-back,
.vlike-video-search-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    color: #fff;
    background: rgba(10,10,12,.42);
    backdrop-filter: blur(14px);
}

.vlike-video-back svg,
.vlike-video-search-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vlike-video-tabs {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    background: rgba(10,10,12,.38);
    backdrop-filter: blur(16px);
}

.vlike-video-tabs button {
    position: relative;
    min-height: 34px;
    padding: 6px 14px;
    border: 0;
    border-radius: 999px;
    color: rgba(255,255,255,.7);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.vlike-video-tabs button.is-active {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.vlike-video-tabs button.is-active::after {
    content: '';
    position: absolute;
    left: 32%;
    right: 32%;
    bottom: -5px;
    height: 2px;
    border-radius: 2px;
    background: var(--vv-accent);
}

.vlike-video-search {
    position: absolute;
    z-index: 55;
    top: max(12px, env(safe-area-inset-top));
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(560px, calc(100% - 120px));
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(19,20,24,.95);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.vlike-video-search[hidden] { display: none; }
.vlike-video-search svg { width: 21px; height: 21px; fill: none; stroke: #aaa; stroke-width: 2; }
.vlike-video-search input { flex: 1; min-width: 0; border: 0; outline: 0; color: #fff; background: transparent; }
.vlike-video-search button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; }

.vlike-reel-stage,
.vlike-reel-feed,
.vlike-reel-item,
.vlike-reel-layout {
    width: 100%;
    height: 100%;
}

.vlike-reel-stage {
    position: relative;
    overflow: hidden;
}

.vlike-reel-feed {
    position: relative;
}

.vlike-reel-item {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
}

.vlike-reel-item.is-active {
    display: block;
    animation: vv-fade-in .18s ease-out;
}

@keyframes vv-fade-in {
    from { opacity: .4; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.vlike-reel-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(320px, 390px);
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.vlike-reel-media {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #050506;
}

.vlike-reel-video-wrap,
.vlike-reel-video-wrap .tag_vid_plyr {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.vlike-reel-video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none !important;
    object-fit: contain;
    background: #050506;
}

.vlike-video-state {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.vlike-video-state-play {
    display: none;
    place-items: center;
    width: 74px;
    height: 74px;
    padding-left: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(10px);
    font-size: 28px;
}

.vlike-reel-item.is-paused .vlike-video-state-play { display: grid; }
.vlike-reel-item.is-playing .vlike-video-state-play { display: none; }
.vlike-video-state-loader { display: none; width: 44px; height: 44px; border: 3px solid rgba(255,255,255,.24); border-top-color: #fff; border-radius: 50%; animation: vv-spin .8s linear infinite; }
.vlike-reel-item.is-buffering .vlike-video-state-loader { display: block; }
@keyframes vv-spin { to { transform: rotate(360deg); } }

.vlike-reel-nav {
    position: absolute;
    z-index: 6;
    right: 18px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    background: rgba(20,20,24,.55);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.vlike-reel-nav svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vlike-reel-prev { top: calc(50% - 52px); }
.vlike-reel-next { top: calc(50% + 8px); }

.vlike-reel-meta {
    position: absolute;
    z-index: 7;
    left: clamp(16px, 3vw, 42px);
    right: 100px;
    bottom: 58px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 680px;
    text-shadow: 0 2px 14px rgba(0,0,0,.9);
}

.vlike-reel-author-line { display: flex; align-items: center; gap: 8px; }
.vlike-reel-author-line > a { color: #fff; font-size: 16px; font-weight: 800; text-decoration: none; }
.vlike-verified { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: #0f1013; background: #57d3ff; font-size: 11px; font-weight: 900; text-shadow: none; }
.vlike-reel-follow { min-height: 30px; padding: 4px 12px; border: 1px solid rgba(255,255,255,.64); border-radius: 7px; background: rgba(0,0,0,.28); font-size: 12px; font-weight: 800; cursor: pointer; }
.vlike-reel-follow.is-following { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.vlike-reel-caption { display: -webkit-box; max-width: 620px; margin: 0; overflow: hidden; color: #fff; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.vlike-reel-topics { display: flex; flex-wrap: wrap; gap: 7px; }
.vlike-reel-topics button { padding: 0; border: 0; color: #fff; background: none; font-weight: 750; cursor: pointer; }
.vlike-reel-audio { display: flex; align-items: center; gap: 7px; max-width: 320px; color: rgba(255,255,255,.82); font-size: 13px; }
.vlike-reel-audio span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vlike-token-card { display: flex; align-items: center; gap: 8px; min-height: 35px; padding: 5px 10px; border: 1px solid rgba(255,199,78,.34); border-radius: 10px; background: rgba(40,30,8,.54); cursor: pointer; backdrop-filter: blur(8px); }
.vlike-token-card > span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #19130a; background: #f3b943; text-shadow: none; }
.vlike-token-card small { color: rgba(255,255,255,.66); }

.vlike-reel-actions {
    position: absolute;
    z-index: 8;
    right: 24px;
    bottom: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.vlike-reel-actions > button,
.vlike-reel-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 54px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,.9);
    cursor: pointer;
}

.vlike-reel-actions svg { width: 32px; height: 32px; fill: rgba(0,0,0,.22); stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 2px 5px rgba(0,0,0,.8)); }
.vlike-reel-actions .vlike-action-like.is-active svg { fill: var(--vv-accent); stroke: var(--vv-accent); }
.vlike-reel-actions .vlike-action-save.is-active svg { fill: #ffd24d; stroke: #ffd24d; }
.vlike-reel-avatar img { width: 46px; height: 46px; border: 2px solid #fff; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 16px rgba(0,0,0,.35); }

.vlike-reel-controls {
    position: absolute;
    z-index: 9;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 8px;
    opacity: .2;
    transition: opacity .2s ease;
}

.vlike-reel-media:hover .vlike-reel-controls,
.vlike-reel-controls:focus-within { opacity: 1; }
.vlike-reel-controls button { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.vlike-reel-controls button svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 2; }
.vlike-reel-time { min-width: 70px; color: rgba(255,255,255,.8); font-size: 11px; }
.vlike-reel-progress { flex: 1; height: 3px; accent-color: var(--vv-accent); cursor: pointer; }
.vlike-reel-item:not(.is-muted) .sound-off,
.vlike-reel-item.is-muted .sound-on { display: none; }

.vlike-reel-panel {
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    height: 100% !important;
    min-width: 0;
    color: #e9e9ec;
    background: var(--vv-panel) !important;
    border-left: 1px solid rgba(255,255,255,.07);
}

.vlike-panel-head { display: flex; align-items: center; min-height: 64px; padding: 10px 10px 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vlike-panel-head > button { display: none; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 24px; cursor: pointer; }
.vlike-panel-tabs { display: flex; align-self: stretch; flex: 1; gap: 18px; }
.vlike-panel-tabs button { position: relative; padding: 0 2px; border: 0; color: rgba(255,255,255,.55); background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.vlike-panel-tabs button.is-active { color: #fff; }
.vlike-panel-tabs button.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--vv-accent); }
.vlike-panel-tabs span { color: rgba(255,255,255,.46); }
.vlike-panel-body { flex: 1; min-height: 0; overflow: auto; padding: 14px 16px; scrollbar-width: thin; scrollbar-color: #3b3c42 transparent; }
.vlike-panel-body[hidden] { display: none; }
.vlike-reel-panel .comments-list { color: #e9e9ec; }
.vlike-no-comments { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 70px 20px; color: rgba(255,255,255,.55); text-align: center; }
.vlike-no-comments > span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 8px; border-radius: 50%; background: rgba(255,255,255,.07); font-size: 26px; }
.vlike-no-comments b { color: #fff; }
.vlike-comment-compose { display: flex !important; align-items: center; gap: 9px; min-height: 68px; padding: 10px 12px max(10px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.08); background: #17181c; }
.vlike-comment-compose.hidden { display: none !important; }
.vlike-comment-compose .avatar { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.vlike-comment-compose textarea { flex: 1; min-height: 40px; max-height: 90px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.1) !important; border-radius: 20px !important; color: #fff !important; background: rgba(255,255,255,.07) !important; resize: none; }
.vlike-comment-compose > button { width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: var(--vv-accent); cursor: pointer; }
.vlike-comment-login { display: block; margin: 12px; padding: 12px 16px; border-radius: 10px; color: #fff !important; text-align: center; font-weight: 700; background: var(--vv-accent); }

.vlike-ai-summary { position: relative; padding: 16px; border: 1px solid rgba(99,157,255,.24); border-radius: 14px; background: linear-gradient(135deg, rgba(69,91,169,.24), rgba(90,48,121,.18)); }
.vlike-ai-summary > span { position: absolute; right: 12px; top: 12px; padding: 3px 6px; border-radius: 6px; color: #b9cbff; background: rgba(75,111,224,.2); font-size: 10px; font-weight: 900; }
.vlike-ai-summary h3 { margin: 0 40px 8px 0; font-size: 14px; }
.vlike-ai-summary p { margin: 0 0 10px; color: rgba(255,255,255,.8); line-height: 1.55; }
.vlike-ai-summary small { color: rgba(255,255,255,.45); }
.vlike-related-creator { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 12px; border-radius: 12px; color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }
.vlike-related-creator img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.vlike-related-creator span { display: flex; flex-direction: column; gap: 3px; }
.vlike-related-creator small { color: rgba(255,255,255,.5); }
.vlike-related-topics { margin-top: 20px; }
.vlike-related-topics h3 { font-size: 14px; }
.vlike-related-topics button { margin: 0 6px 7px 0; padding: 7px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); cursor: pointer; }
.vlike-transcript { margin-top: 18px; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.04); }
.vlike-transcript summary { cursor: pointer; font-weight: 800; }
.vlike-transcript p { max-height: 260px; overflow: auto; color: rgba(255,255,255,.7); line-height: 1.6; }

.vlike-reel-loading { position: absolute; z-index: 45; left: 50%; bottom: 28px; display: flex; gap: 5px; transform: translateX(-50%); }
.vlike-reel-loading[hidden] { display: none; }
.vlike-reel-loading span { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: vv-bounce .9s infinite alternate; }
.vlike-reel-loading span:nth-child(2) { animation-delay: .2s; }
.vlike-reel-loading span:nth-child(3) { animation-delay: .4s; }
@keyframes vv-bounce { to { transform: translateY(-7px); opacity: .35; } }
.vlike-reel-toast { position: absolute; z-index: 80; left: 50%; bottom: 48px; max-width: min(90%, 420px); padding: 10px 16px; border-radius: 999px; opacity: 0; transform: translate(-50%, 16px); color: #fff; background: rgba(20,20,23,.94); box-shadow: 0 12px 34px rgba(0,0,0,.34); pointer-events: none; transition: .2s ease; }
.vlike-reel-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.vlike-reel-empty { position: absolute; inset: 0; z-index: 15; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; color: rgba(255,255,255,.6); text-align: center; }
.vlike-reel-empty[hidden] { display: none; }
.vlike-reel-empty svg { width: 72px; height: 72px; margin-bottom: 12px; fill: none; stroke: rgba(255,255,255,.38); stroke-width: 1.4; }
.vlike-reel-empty h2 { margin: 0 0 7px; color: #fff; font-size: 20px; }
.vlike-reel-empty p { margin: 0; }

.vlike-video-sheet-backdrop { position: fixed; z-index: 95; inset: 0; background: rgba(0,0,0,.58); backdrop-filter: blur(3px); }
.vlike-video-sheet-backdrop[hidden], .vlike-video-sheet[hidden] { display: none; }
.vlike-video-sheet { position: fixed; z-index: 100; left: 50%; top: 50%; width: min(430px, calc(100% - 32px)); max-height: calc(100% - 40px); padding: 14px; overflow: auto; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; color: #fff; transform: translate(-50%, -50%); background: #202126; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.vlike-video-sheet-handle { display: none; width: 42px; height: 4px; margin: 0 auto 10px; border-radius: 4px; background: rgba(255,255,255,.28); }
.vlike-video-sheet h2 { margin: 2px 8px 12px; font-size: 17px; }
.vlike-video-sheet > button, .vlike-video-speed { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; column-gap: 10px; width: 100%; min-height: 58px; padding: 8px 10px; border: 0; border-radius: 12px; text-align: left; background: transparent; cursor: pointer; }
.vlike-video-sheet > button:hover, .vlike-video-speed:hover { background: rgba(255,255,255,.06); }
.vlike-video-sheet > button > span, .vlike-video-speed > span { grid-row: 1 / 3; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); font-weight: 800; }
.vlike-video-sheet b { align-self: end; font-size: 13px; }
.vlike-video-sheet small { grid-column: 2 / 4; align-self: start; color: rgba(255,255,255,.48); font-size: 11px; }
.vlike-video-speed select { grid-column: 3; grid-row: 1 / 3; padding: 5px 7px; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; color: #fff; background: #292a30; }
.vlike-video-sheet .vlike-video-sheet-close { display: block; min-height: 42px; margin-top: 7px; text-align: center; color: #fff; background: rgba(255,255,255,.08); font-weight: 800; }

@media (max-width: 900px) {
    .vlike-reel-layout { display: block; }
    .vlike-reel-panel { position: fixed !important; z-index: 70; left: 0; right: 0; bottom: 0; width: 100% !important; height: min(92%, 720px) !important; border: 0; border-radius: 18px 18px 0 0; transform: translateY(105%); transition: transform .28s cubic-bezier(.22,.75,.28,1); box-shadow: 0 -20px 70px rgba(0,0,0,.5); }
    .vlike-reel-item.is-comments-open .vlike-reel-panel { transform: translateY(0); }
    .vlike-panel-head > button { display: grid; place-items: center; }
    .vlike-reel-nav { display: none; }
    .vlike-reel-actions { right: max(10px, env(safe-area-inset-right)); bottom: 96px; gap: 12px; }
    .vlike-reel-actions > button, .vlike-reel-avatar { min-width: 48px; }
    .vlike-reel-actions svg { width: 30px; height: 30px; }
    .vlike-reel-avatar img { width: 43px; height: 43px; }
    .vlike-reel-meta { left: max(12px, env(safe-area-inset-left)); right: 76px; bottom: 54px; }
    .vlike-reel-controls { left: 4px; right: 4px; bottom: max(4px, env(safe-area-inset-bottom)); opacity: .85; }
    .vlike-reel-time, .vlike-reel-controls [data-vv-action="fullscreen"] { display: none; }
    .vlike-reel-progress { position: absolute; left: -4px; right: -4px; bottom: -4px; width: calc(100% + 8px); }
    .vlike-reel-controls [data-vv-action="mute"] { position: absolute; right: 5px; bottom: 10px; }
    .vlike-reel-caption { font-size: 13px; -webkit-line-clamp: 2; }
    .vlike-reel-audio { max-width: 230px; }
    .vlike-video-sheet { top: auto; bottom: 0; left: 0; width: 100%; max-height: 88%; padding-bottom: max(14px, env(safe-area-inset-bottom)); border-radius: 20px 20px 0 0; transform: none; }
    .vlike-video-sheet-handle { display: block; }
}

@media (max-width: 620px) {
    .vlike-video-header { grid-template-columns: 40px 1fr 40px; gap: 6px; min-height: 58px; padding-left: 9px; padding-right: 9px; }
    .vlike-video-back, .vlike-video-search-toggle { width: 38px; height: 38px; }
    .vlike-video-tabs { gap: 0; padding: 3px; }
    .vlike-video-tabs button { min-height: 31px; padding: 5px 9px; font-size: 12px; }
    .vlike-video-tabs button:nth-child(3) { display: none; }
    .vlike-video-search { width: calc(100% - 18px); }
    .vlike-token-card small { display: none; }
    .vlike-reel-topics { max-height: 22px; overflow: hidden; }
}

@media (orientation: landscape) and (max-height: 520px) {
    .vlike-video-header { min-height: 48px; padding-top: 5px; }
    .vlike-video-back, .vlike-video-search-toggle { width: 36px; height: 36px; }
    .vlike-reel-actions { bottom: 44px; gap: 7px; }
    .vlike-reel-actions > button, .vlike-reel-avatar { flex-direction: row; min-width: 44px; }
    .vlike-reel-avatar img { width: 36px; height: 36px; }
    .vlike-reel-meta { bottom: 28px; }
    .vlike-reel-caption, .vlike-reel-topics, .vlike-token-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .vlike-reel-item.is-active,
    .vlike-video-state-loader,
    .vlike-reel-loading span,
    .vlike-reel-panel,
    .vlike-reel-toast { animation: none !important; transition: none !important; }
}

/* Unified Video catalog */
body:has(.vlike-watch-page) { overflow: auto; }
.vlike-watch-page { --watch-accent: #ff3158; padding-bottom: 60px; }
.vlike-watch-page .container { max-width: 1220px; }
.vlike-watch-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 8px 0 22px; padding: 28px 30px; overflow: hidden; border: 1px solid rgba(127,127,127,.13); border-radius: 20px; background: radial-gradient(circle at 82% 10%, rgba(255,49,88,.22), transparent 34%), linear-gradient(135deg, #15161a, #23242a); box-shadow: 0 18px 50px rgba(0,0,0,.1); }
.vlike-watch-kicker { color: #ff6782; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.vlike-watch-header h1 { margin: 4px 0 5px; color: #fff; font-size: clamp(30px, 4vw, 52px); font-weight: 850; line-height: 1; }
.vlike-watch-header p { max-width: 640px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; }
.vlike-watch-reels-cta { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 9px 16px; border-radius: 999px; color: #fff !important; background: linear-gradient(135deg, #ff3158, #e31477); font-weight: 800; text-decoration: none !important; white-space: nowrap; box-shadow: 0 8px 24px rgba(255,49,88,.26); }
.vlike-watch-reels-cta svg { width: 20px; height: 20px; fill: currentColor; }
.vlike-watch-tabs { display: flex; gap: 6px; margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }
.vlike-watch-tabs::-webkit-scrollbar { display: none; }
.vlike-watch-tabs a { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 7px 14px; border: 1px solid rgba(127,127,127,.16); border-radius: 999px; color: inherit; background: var(--body-bg); font-size: 13px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.vlike-watch-tabs a.is-active { border-color: transparent; color: #fff; background: #17181c; }
.vlike-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff3158; box-shadow: 0 0 0 4px rgba(255,49,88,.14); }
.vlike-watch-search { display: flex; align-items: center; gap: 10px; height: 50px; margin-bottom: 12px; padding: 0 8px 0 15px; border: 1px solid rgba(127,127,127,.17); border-radius: 14px; background: var(--body-bg); }
.vlike-watch-search > svg { flex: 0 0 auto; width: 22px; height: 22px; fill: none; stroke: #8d8f96; stroke-width: 2; }
.vlike-watch-search input[type="search"] { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; color: inherit; background: transparent; }
.vlike-watch-search button { min-height: 36px; padding: 7px 15px; border: 0; border-radius: 10px; color: #fff; background: #24262c; font-weight: 750; }
.vlike-watch-topics { display: flex; gap: 8px; margin: 0 0 22px; overflow-x: auto; scrollbar-width: none; }
.vlike-watch-topics::-webkit-scrollbar { display: none; }
.vlike-watch-topics a { padding: 7px 11px; border-radius: 8px; color: #777b85; background: rgba(127,127,127,.08); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.vlike-watch-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 18px; }
.vlike-watch-card { min-width: 0; background: transparent; }
.vlike-watch-poster { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: 14px; background: linear-gradient(135deg, #24262d, #121318); box-shadow: 0 10px 30px rgba(0,0,0,.09); }
.vlike-watch-poster::after { content: ''; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.vlike-watch-poster img, .vlike-watch-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.vlike-watch-placeholder { display: block; background: radial-gradient(circle at 30% 30%, rgba(255,49,88,.28), transparent 30%), linear-gradient(135deg, #2e3038, #17181d); }
.vlike-watch-card:hover .vlike-watch-poster img { transform: scale(1.025); }
.vlike-watch-play { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; padding-left: 3px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; opacity: 0; transform: translate(-50%,-45%); color: #fff; background: rgba(0,0,0,.52); backdrop-filter: blur(8px); transition: .22s ease; }
.vlike-watch-card:hover .vlike-watch-play { opacity: 1; transform: translate(-50%,-50%); }
.vlike-watch-play svg { width: 23px; height: 23px; fill: currentColor; }
.vlike-watch-badge { position: absolute; z-index: 3; left: 9px; top: 9px; padding: 4px 7px; border-radius: 6px; color: #fff; background: rgba(255,49,88,.92); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.vlike-watch-views { position: absolute; z-index: 3; right: 8px; bottom: 7px; padding: 3px 6px; border-radius: 5px; color: #fff; background: rgba(0,0,0,.58); font-size: 10px; font-weight: 700; }
.vlike-watch-info { display: grid; grid-template-columns: 40px 1fr 30px; align-items: start; gap: 10px; padding: 11px 3px 0; }
.vlike-watch-info > a > img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.vlike-watch-info h3 { display: -webkit-box; margin: 0 0 5px; overflow: hidden; line-height: 1.35; font-size: 14px; font-weight: 800; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vlike-watch-info h3 a, .vlike-watch-info p a { color: inherit; text-decoration: none; }
.vlike-watch-info p { margin: 0 0 2px; color: #747780; font-size: 12px; }
.vlike-watch-info p span { display: inline-grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; color: #0f1013; background: #57d3ff; font-size: 9px; }
.vlike-watch-info small { color: #9699a2; font-size: 11px; }
.vlike-watch-info > button { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; color: #777b85; background: transparent; }
.vlike-watch-info > button:hover { background: rgba(127,127,127,.1); }
.vlike-watch-info > button.active { color: var(--vv-accent); background: rgba(255,45,85,.1); }
.vlike-watch-info > button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.vlike-watch-load { display: block; min-width: 180px; min-height: 42px; margin: 34px auto 0; border: 1px solid rgba(127,127,127,.17); border-radius: 999px; color: inherit; background: var(--body-bg); font-weight: 750; }
.vlike-watch-load[hidden] { display: none; }
.vlike-watch-sentinel { height: 1px; }
.vlike-watch-empty { display: flex; flex-direction: column; align-items: center; padding: 70px 20px; color: #8b8e97; text-align: center; }
.vlike-watch-empty[hidden] { display: none; }
.vlike-watch-empty > span { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 12px; border-radius: 50%; color: #fff; background: #292b32; }
.vlike-watch-empty h2 { margin: 0 0 6px; color: inherit; font-size: 19px; }
.vlike-watch-empty p { margin: 0; }

@media (max-width: 960px) { .vlike-watch-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) {
    .vlike-watch-page { margin-top: 8px; }
    .vlike-watch-header { align-items: flex-start; margin-left: -8px; margin-right: -8px; padding: 22px 18px; border-radius: 16px; }
    .vlike-watch-header p { font-size: 13px; }
    .vlike-watch-reels-cta { min-height: 38px; padding: 7px 11px; font-size: 12px; }
    .vlike-watch-search button { padding-left: 10px; padding-right: 10px; font-size: 12px; }
    .vlike-watch-grid { grid-template-columns: 1fr; gap: 24px; }
    .vlike-watch-poster { border-radius: 12px; }
    .vlike-watch-play { opacity: .8; width: 42px; height: 42px; }
}
