/* ============================================================
   Premium Dark Design System v4.0 — "Midnight Blade"
   Style: Dark Navy + Violet Accent | Font: Inter | Flat Solid
   ============================================================ */

/* === Google Fonts: Inter === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === Base Reset === */
.v-hide,
[v-cloak] {
    display: none !important
}

a {
    text-decoration: none;
    font-family: inherit;
    color: inherit
}

*,
*:before,
*:after {
    box-sizing: border-box
}

/* === Design Tokens === */
:root {
    /* Layout */
    --holder-width: 1350px;
    --default-holder-sides: 8px;
    --default-grid-gap: 8px;
    --grid-gap-default: 8px;
    --grid-gap-footer: 16px;

    /* Grid columns */
    --1-column: repeat(1, 1fr);
    --2-columns: repeat(2, 1fr);
    --3-columns: repeat(3, 1fr);
    --4-columns: repeat(4, 1fr);
    --5-columns: repeat(5, 1fr);
    --6-columns: repeat(6, 1fr);
    --7-columns: repeat(7, 1fr);
    --8-columns: repeat(8, 1fr);
    --videos-grid: var(--1-column);
    --videos-grid-gap: var(--default-grid-gap);
    --videos-banner-display: none;

    /* Midnight Navy Color System */
    --bg-base: #161D2F;
    --bg-surface: #0f0f0ffa;
    --bg-elevated: #0f0f0ffa;
    --bg-card: #0f0f0ffa;
    --bg-input: #0f0f0ffa;
    --bg-hover: #2c2b2bfa;

    /* Borders */
    --border-subtle: rgba(148, 163, 184, 0.08);
    --border-default: rgba(148, 163, 184, 0.12);
    --border-strong: rgba(148, 163, 184, 0.20);

    /* Text */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-color-default: #F1F5F9;
    /* Accent — Premium Crimson Red */
    --color-accent: #E50914;
    --color-accent-hover: #F50A15;
    --color-accent-glow: rgba(229, 9, 20, 0.30);
    --color-accent-solid: #B80710;
    --color-red: #E50914;
    /* Standardized to actual red */
    --color-red-hover: #F50A15;
    --color-red-glow: rgba(229, 9, 20, 0.30);
    --color-green: #34D399;
    /* Keeping utility colors intact */
    --color-gray: #64748B;

    /* Legacy */
    --body-background-color: #282828;
    --box-shadow-color: rgba(148, 163, 184, 0.06);
    --box-shadow-top: inset 0 1px var(--border-subtle);
    --box-shadow-left: inset 1px 0 var(--border-subtle);
    --box-shadow-right: inset -1px 0 var(--border-subtle);
    --box-shadow-bottom: inset 0 -1px var(--border-subtle);
    --box-shadow-inset: inset 0 0 0 1px var(--border-subtle);

    /* Header */
    --header-top-height: 56px;
    --header-top-background: #0E1221;
    --header-bottom-height: 40px;
    --header-bottom-background: #0E1221;

    /* Typography */
    --font-weight-default: 400;
    --font-size-default: 14px;
    --heading-line-height: 48px;
    --heading-font-size: 18px;
    --heading-font-weight: 600;
    --heading-color: #F1F5F9;

    /* Pill carousel */
    --pills-height: 36px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 99px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 576px) {
    :root {
        --heading-font-size: 20px;
        --videos-grid: var(--2-columns);
        --videos-banner-display: none
    }
}

@media (min-width: 768px) {
    :root {
        --videos-grid: var(--3-columns)
    }
}

@media (min-width: 992px) {
    :root {
        --videos-grid: var(--4-columns);
        --videos-banner-column: 3 / 5;
        --videos-banner-display: flex
    }
}

@media (min-width: 1080px) {
    :root {
        --videos-grid: var(--5-columns);
        --videos-banner-column: 4 / 6;
        --videos-banner-display: flex
    }
}

/* === Typography & Body === */
:active {
    outline: none
}

:focus {
    outline: none
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

body,
html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    font-weight: var(--font-weight-default);
    font-size: var(--font-size-default);
    background: var(--body-background-color);
    line-height: 1.5;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
form,
button,
select,
input {
    list-style: none;
    border: none;
    padding: 0;
    margin: 0;
}

input,
textarea {
    font-family: inherit
}

button {
    background: none;
    color: inherit;
    cursor: pointer;
}

/* ============================================================
   HEADER
   ============================================================ */
.hd {
    position: sticky;
    top: -200px;
    z-index: 4;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd[data-scroll="up"] {
    top: 0
}

.hd-bar {
    background: var(--header-top-background);
    border-bottom: 1px solid var(--border-subtle);
}

.hd-inner {
    max-width: var(--holder-width);
    margin: 0 auto;
    height: var(--header-top-height);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
}

.hd-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.hd-menu-btn:hover {
    color: var(--text-primary)
}

@media (min-width: 768px) {
    .hd-menu-btn {
        display: none
    }
}

.hd-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hd-logo img {
    max-height: 30px;
    display: block;
    transition: opacity var(--transition-fast);
}

.hd-logo img:hover {
    opacity: 0.85
}

/* Desktop search */
.hd-search {
    display: none;
    flex: 1;
    max-width: 480px;
    height: 38px;
    align-items: center;
    gap: 8px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-pill);
    padding: 0 14px;
    transition: border-color var(--transition-fast);
}

.hd-search:focus-within {
    border-color: var(--color-accent);
}

@media (min-width: 768px) {
    .hd-search {
        display: flex
    }
}

.hd-search-icon {
    flex-shrink: 0;
    color: var(--text-muted);
}

.hd-search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.hd-search-input::placeholder {
    color: var(--text-muted)
}

/* Header right actions */
.hd-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.hd-action-link {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.hd-action-link:hover {
    color: var(--text-primary)
}

@media (min-width: 768px) {
    .hd-action-link {
        display: flex
    }
}

.hd-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.hd-action-btn:hover {
    color: var(--text-primary)
}

@media (min-width: 768px) {
    .hd-action-btn {
        display: none
    }
}

.hd-user-area {
    position: relative;
}

/* Mobile logo centering */
@media (max-width: 767px) {
    .hd-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hd-inner {
        position: relative;
    }
}

/* Mobile search overlay */
.hd-msearch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    height: var(--header-top-height);
    background: var(--header-top-background);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.hd-msearch-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-pill);
    padding: 0 14px;
}

.hd-msearch-form:focus-within {
    border-color: var(--color-accent);
}

.hd-msearch-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.hd-msearch-close:hover {
    color: var(--color-accent);
    border-color: var(--color-accent)
}

/* Header bottom nav */
.hd-nav {
    background: var(--header-bottom-background);
    border-bottom: 1px solid var(--border-subtle);
    display: none;
}

@media (min-width: 768px) {
    .hd-nav {
        display: block
    }
}

.hd-nav-inner {
    max-width: var(--holder-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: var(--header-bottom-height);
    gap: 2px;
    padding: 0 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hd-nav-inner::-webkit-scrollbar {
    display: none
}

.hd-nav-link {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 10px;
    height: var(--header-bottom-height);
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.hd-nav-link:hover {
    color: var(--text-primary)
}

.hd-nav-link.is-active {
    color: var(--color-accent)
}

.hd-nav-link--desktop {
    display: none
}

@media (min-width: 768px) {
    .hd-nav-link--desktop {
        display: flex
    }
}

/* ============================================================
   HEADER — USER MENU
   ============================================================ */
.-h-user-wrap {
    position: relative
}

.-h-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--bg-elevated);
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-default);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-width: 210px;
    z-index: 60;
}

.-h-auth-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.-h-auth-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
    font-family: inherit;
}

.-h-auth-btn:hover {
    transform: translateY(-1px)
}

.-h-auth-signin {
    background: var(--color-accent);
    color: white;
    border: none;
}

.-h-auth-signin:hover {
    background: var(--color-accent-hover)
}

.-h-auth-signup {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.-h-auth-signup:hover {
    background: var(--bg-card);
    border-color: var(--border-strong)
}

.-h-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.-h-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.-h-user-name {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.-h-user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 6px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.-h-user-link:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.08);
}

.-h-user-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

.-h-push {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.-h-push:hover {
    color: var(--text-primary)
}

/* ============================================================
   MOBILE NAV PANEL
   ============================================================ */
.mnav {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}

.mnav.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.mnav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(280px, 85vw);
    height: 100%;
    background: var(--bg-surface);
    border-right: 1px solid var(--border-default);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.mnav.active .mnav-panel {
    transform: translateX(0)
}

.mnav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.mnav-logo {
    display: flex;
    align-items: center;
}

.mnav-logo img {
    max-height: 26px;
}

.mnav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.mnav-close:hover {
    color: var(--color-accent);
    border-color: var(--color-accent)
}

.mnav-links {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.mnav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    min-height: 44px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mnav-link:hover,
.mnav-link.is-active {
    color: var(--text-primary);
    background: var(--bg-elevated);
    border-color: transparent;
    outline: none;
}

.mnav-link--accent {
    color: var(--color-accent)
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.-main {
    min-height: calc(100vh - 96px - 96px);
    padding: 0 6px;
}

@media (min-width: 768px) {
    .-main {
        padding: 0 4px
    }
}

.-section {
    margin-bottom: 10px
}

.-section-short {
    margin-bottom: 10px;
    min-height: 240px
}

.-holder {
    max-width: var(--holder-width);
    margin: 0 auto;
}

.-holder-section {
    max-width: var(--holder-width);
    margin: 0 auto;
    padding: 0 12px;
}

@media (min-width: 1350px) {
    .-holder-section {
        padding: 0
    }
}

.video-page-top {
    padding-top: 14px
}

.-flex {
    display: flex
}

.-items-center {
    display: flex;
    align-items: center
}

.-justify-center {
    display: flex;
    justify-content: center
}

.-grow {
    flex-grow: 1
}

/* === Colors === */
.-color-red {
    color: var(--color-red);
    fill: var(--color-red)
}

.-color-green {
    color: var(--color-green);
    fill: var(--color-green)
}

.-color-white {
    color: var(--text-primary);
    fill: var(--text-primary)
}

.-box-shadow-bottom {
    box-shadow: var(--box-shadow-bottom)
}

/* ============================================================
   HEADINGS
   ============================================================ */
.-heading-one {
    line-height: var(--heading-line-height);
    font-size: var(--heading-font-size);
    color: var(--text-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 85%;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.-under-heading-one {
    font-size: .85em;
    opacity: .5;
    font-weight: 300;
}

.-heading-two {
    line-height: 44px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 85%;
    letter-spacing: -0.01em;
}

.-heading-two-wrap {
    white-space: normal;
    text-overflow: initial;
    overflow: visible;
    max-width: 100%;
}

.-heading-arrow {
    display: inline-block;
    vertical-align: top;
    width: auto;
    position: relative;
}

.-heading-arrow:after {
    content: '';
    position: absolute;
    right: -20px;
    left: auto;
    top: 50%;
    bottom: auto;
    margin-top: -8px;
    width: 18px;
    height: 18px;
    background: transparent url('data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik04LjU5IDE2LjU5TDEzLjE3IDEyIDguNTkgNy40MSAxMCA2bDYgNi02IDYtMS40MS0xLjQxeiIvPjwvc3ZnPg==') no-repeat center center;
    background-size: 28px 28px;
}

@media (min-width: 576px) {
    .-heading-one {
        text-overflow: initial;
        overflow: initial
    }

    .-heading-two {
        text-overflow: initial;
        overflow: initial
    }
}

.-shadow-after {
    position: relative;
    overflow: hidden
}

.-shadow-after:after {
    content: "";
    box-shadow: 0 -1px rgba(139, 92, 246, 0.5);
    position: absolute;
    left: 0;
    top: 100%;
    width: 64px;
    height: 1px;
}

/* ============================================================
   VIDEO GRID
   ============================================================ */
.videos-list {
    display: grid;
    grid-template-columns: var(--videos-grid);
    grid-gap: var(--videos-grid-gap);
    grid-row-gap: 16px;
}

.videos-list-large-thumbs {}

@media (min-width: 992px) {
    .videos-list-large-thumbs {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width: 1280px) {
    .videos-list-large-thumbs {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* ============================================================
   VIDEO CARD
   ============================================================ */
.video-item {
    display: grid;
    grid-template-rows: auto 34px 22px;
    grid-row-gap: 8px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-item-svg {
    transition: transform var(--transition-base);
    background-color: var(--bg-card);
    background-size: cover;
    position: relative;
    z-index: 1;
    width: 100%;
}

.video-item-thumb {
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: var(--radius-md);
    background: var(--bg-card);
}

.video-item-block {
    display: block;
    flex-grow: 1;
    line-height: 0;
    font-size: 0;
}

.video-item-media {
    position: relative;
    width: 100%;
    aspect-ratio: 390 / 219;
    overflow: hidden;
    background-color: var(--bg-card);
}

.video-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.video-item:hover .video-item-img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.video-item-link {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.video-item-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(11, 15, 25, 0.35);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    border-radius: var(--radius-md);
}

.video-item:hover .video-item-thumb::after {
    opacity: 1
}

.video-item-full-tag {
    position: absolute;
    z-index: 2;
    top: 7px;
    left: 7px;
    height: 20px;
    background: rgba(0, 0, 0, 0.80);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
    padding: 0 7px 0 0;
    text-decoration: none;
    overflow: hidden;
}

.video-item-full-tag-star {
    float: left;
    width: 20px;
    height: inherit;
    text-align: center;
    color: #fff;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-right: 6px;
}

.video-item-stats,
[data-vi="stats"] {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    line-height: 22px;
    display: flex;
    font-size: 11px;
}

.video-item-star-gray,
[data-vi="star"] {
    background: rgba(255, 255, 255, 0.15);
    font-size: 16px;
    padding: 0 4px;
    color: white;
}

[data-vi="bottom"] {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: 0;
    background: rgba(0, 0, 0, 0.80);
    height: 22px;
    margin: unset;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
}

.video-item-time,
[data-vi="time"] {
    padding: 0 2px
}

.video-item-hd,
[data-vi="hd"] {
    font-weight: 700;
    font-size: 10px;
    color: #A78BFA;
    letter-spacing: 0.05em;
}

.video-item-title {
    text-overflow: ellipsis;
    color: var(--text-secondary);
    height: 32px;
    overflow: hidden;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-item-title:hover {
    color: var(--text-primary);
    cursor: pointer;
}

.video-item:hover .video-item-title {
    color: var(--text-primary)
}

.video-item-bottom {
    line-height: 18px;
    color: var(--text-muted);
    display: flex;
    column-gap: 6px;
    padding: 0 var(--default-grid-gap);
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
}

[data-vi="views"] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
}

[data-vi="badge"] {
    text-transform: uppercase;
    margin-left: 5px;
    color: black;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 600;
}

.video-item-site {
    font-size: 12px
}

.video-item-site:hover {
    color: var(--text-primary);
    cursor: pointer
}

.video-item-gap {
    flex-grow: 1
}

.video-item-actor {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.video-item-actor:hover {
    color: var(--text-primary);
    cursor: pointer
}

.video-item-spacer {
    padding: 0 3px;
    font-size: 12px;
    line-height: 13px
}

@media (min-width: 575px) {
    .video-item-title {
        padding: 0
    }

    .video-item-bottom {
        padding: 0
    }

    [data-vi="bottom"] {
        right: 0
    }
}

@media (min-width: 768px) {
    .video-item-spacer {
        display: none
    }

    [data-vi="actor-1"] {
        display: none
    }
}

/* ============================================================
   PILLS CAROUSEL
   ============================================================ */
.pills-carousel {
    position: relative;
    height: var(--pills-height);
    overflow: hidden;
}

.-pc-scrollable {
    position: relative;
    z-index: 5;
    white-space: nowrap;
    overflow-y: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.-pc-scrollable::-webkit-scrollbar {
    display: none
}

.-pc-fake {
    transform: translateX(0);
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.05, 0, 0, 1);
    will-change: transform;
    display: inline-block;
    white-space: nowrap;
}

.-pc-item {
    color: var(--text-secondary);
    text-align: center;
    height: var(--pills-height);
    line-height: var(--pills-height);
    font-size: 13px;
    padding: 0 16px;
    margin: 0 0 0 6px;
    min-width: 60px;
    display: inline-block;
    background: var(--bg-elevated);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-default);
    user-select: none;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    font-weight: 500;
}

.-pc-item:last-child {
    margin-right: 8px
}

.-pc-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.-pc-btn {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    background: none;
    border: 0;
    width: calc(var(--pills-height) + 20px);
    cursor: pointer;
    display: none;
}

.-pc-left {
    text-align: left;
    left: 0;
    background: var(--bg-base);
    box-shadow: 8px 0 16px var(--bg-base);
}

.-pc-left .-pc-arrow:after {
    margin: -5px 0 -5px -2px;
    transform: rotate(45deg)
}

.-pc-right {
    text-align: right;
    right: 0;
    background: var(--bg-base);
    box-shadow: -8px 0 16px var(--bg-base);
}

.-pc-right .-pc-arrow:after {
    margin: -5px 0 -5px -6px;
    transform: rotate(-135deg)
}

.-pc-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--pills-height);
    height: var(--pills-height);
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.-pc-arrow:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-left: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
}

.-pc-arrow:hover {
    background: var(--bg-hover)
}

.-pc-arrow:hover:after {
    border-color: var(--text-primary)
}

@media (min-width: 1024px) {
    .-pc-scrollable {
        padding-bottom: 0
    }

    .-pc-btn {
        display: block
    }

    .-pc-item {
        margin: 0 6px 0 0
    }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pager-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    height: 40px;
    padding: 0 18px;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-default);
    user-select: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

a.pager-item:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-strong);
    color: var(--text-primary);
}

.pager-dots,
.pager-skip {
    display: flex
}

.pager-active {
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: white !important;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

@media (min-width: 768px) {
    .pager-item {
        height: 44px;
        padding: 0 22px
    }

    .pager-dots {
        background: transparent
    }

    .pager-dots,
    .pager-skip {
        display: flex
    }
}

@media (max-width: 480px) {
    .pager-item {
        height: 36px;
        padding: 0 12px;
        font-size: 12px
    }
}

/* ============================================================
   SEO COLLAPSIBLE
   ============================================================ */
.-less-section {
    transition: max-height 500ms ease;
    max-height: 60px;
    overflow: hidden;
    line-height: 1.6;
    position: relative;
}

.-less-content {
    line-height: 1.7;
    color: var(--text-secondary);
}

.-less-content a {
    color: var(--text-primary)
}

.-less-section[data-active="true"] {
    max-height: none
}

.-less-actions {
    position: relative;
    text-align: center;
    margin-top: 12px;
    height: 24px;
}

.-less-actions::before {
    content: "";
    background: var(--border-subtle);
    position: absolute;
    height: 1px;
    width: 100%;
    top: 49%;
    left: 0;
    z-index: 0;
}

.-less-actions[data-active=""] {
    opacity: 0
}

.-less-button {
    position: relative;
    line-height: 24px;
    background: var(--body-background-color);
    cursor: pointer;
    padding: 0 16px;
    color: var(--color-accent);
    font-size: 12px;
    text-transform: uppercase;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color var(--transition-fast);
}

.-less-button:hover {
    color: var(--color-accent-hover)
}

/* ============================================================
   HOME MORE LINKS
   ============================================================ */
.home-more-desktop {
    transition: all var(--transition-fast);
    display: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1em;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-default);
}

.home-more-desktop:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--bg-hover);
}

@media (min-width: 768px) {
    .home-more-desktop {
        display: block
    }
}

.home-more-mobile {
    display: block;
    padding: 9px;
    margin: 0 12px;
    font-size: 14px;
    line-height: 16px;
    text-transform: capitalize;
    text-align: center;
    color: var(--text-primary);
    background: var(--bg-elevated);
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-default);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.home-more-mobile:hover {
    background: var(--bg-hover);
    border-color: var(--border-strong);
}

@media (min-width: 1024px) {
    .home-more-mobile {
        display: none
    }
}

.home-inline-nav {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 16px;
    display: block;
}

.home-inline-nav a {
    white-space: nowrap;
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 14px;
    line-height: 32px;
    margin: 0 6px;
    font-weight: 600;
    opacity: .45;
    transition: opacity var(--transition-fast);
}

.home-inline-nav a.active {
    opacity: 1;
    background: var(--bg-elevated);
    padding: 0 14px;
    border: 1px solid var(--border-default);
}

@media (min-width: 768px) {
    .home-inline-nav {
        display: none
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-surface);
    padding: 40px 0 0;
    color: var(--text-secondary);
    margin-top: auto;
}

.footer .container {
    max-width: var(--holder-width);
    margin: 0 auto;
    padding: 0 16px;
}

.footer-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-body {
        grid-template-columns: 260px 1fr;
        gap: 48px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-block {
    background: var(--color-accent);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-brand-meta {
    display: flex;
    gap: 8px;
}

.footer-badge-18,
.footer-badge-hd,
.footer-badge-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.footer-badge-18 {
    background: #DC2626;
    color: white;
}

.footer-badge-hd {
    background: var(--color-accent);
    color: white;
}

.footer-badge-free {
    background: var(--color-green);
    color: #0E1221;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 576px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr)
    }
}

.footer-links-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary)
}

.footer-links a.active {
    color: var(--color-accent)
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.footer-copy a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.footer-copy a:hover {
    color: var(--color-accent)
}

/* Legacy footer classes (kept for compatibility) */
.footer-phrases {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 12px;
}

.footer-phrases-title {
    box-shadow: inset 0 -1px var(--border-subtle);
    text-transform: uppercase;
    padding: 10px 0;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.footer-phrases-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7
}

.footer-alternate-holder {
    text-align: center;
    line-height: 18px;
    margin-bottom: 18px
}

.footer-alternate-wrapper {
    display: inline-grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px
}

.footer-alternate-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted)
}

.footer-alternate-link:hover {
    color: var(--text-primary)
}

.footer-navigation-section {
    min-height: 76px
}

@media (min-width: 768px) {
    .footer-navigation-section {
        display: none
    }
}

/* ============================================================
   ADVERTISEMENT
   ============================================================ */
.advertisement-mobile-holder {
    overflow: hidden;
    position: relative;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 100px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
}

@media (min-width: 576px) {
    .advertisement-mobile {
        grid-column: span 2
    }
}

@media (min-width: 768px) {
    .advertisement-mobile {
        grid-column: span 3
    }
}

@media (min-width: 992px) {
    .advertisement-mobile {
        display: none
    }
}

.-f-banners {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    height: 310px;
    padding: var(--grid-gap-default);
}

@media (min-width: 1024px) {
    .-f-banners {
        height: 290px
    }
}

/* ============================================================
   VIDEO CATEGORY CAROUSEL (mobile)
   ============================================================ */
@media (max-width: 768px) {
    .videos-category-carousel {
        position: relative;
        z-index: 1;
    }

    .videos-category-carousel:after {
        content: '';
        position: absolute;
        z-index: 2;
        right: 0;
        top: 0;
        bottom: 0;
        left: auto;
        width: 24px;
        background: var(--bg-base);
        box-shadow: -8px 0 16px var(--bg-base);
    }

    .videos-category-carousel .videos-list {
        grid-template: 1fr / none;
        grid-auto-flow: column;
        grid-auto-columns: 90vw;
        overflow-x: scroll;
        padding-bottom: 10px;
        position: relative;
        z-index: 1;
        gap: 0;
    }

    .videos-category-carousel .videos-list .video-item {
        padding-right: 10px;
        display: grid;
    }
}

@media (min-width: 576px) {
    .videos-category-carousel .videos-list {
        grid-auto-columns: 46vw
    }
}

@media (min-width: 768px) {
    .videos-category-carousel .videos-list {
        grid-auto-columns: 32vw
    }
}

/* ============================================================
   AUTH MODALS
   ============================================================ */
.auth-modal {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.modal-open {
    overflow: hidden
}

.modal-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(14px) scale(0.97);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.auth-modal.active .modal-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-content {
    padding: 32px
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    padding: 4px;
    transition: color var(--transition-fast);
}

.close-btn:hover {
    color: var(--text-primary)
}

.auth-form .form-group {
    margin-bottom: 16px
}

.auth-form label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    height: 44px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px var(--color-red-glow);
    outline: none;
}

.auth-form input.error {
    border-color: var(--color-red)
}

.error-message {
    display: none;
    font-size: 12px;
    color: var(--color-red);
    margin-top: 4px
}

.error-message.show {
    display: block
}

.btn-submit {
    width: 100%;
    height: 46px;
    background: var(--color-red);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    font-family: inherit;
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: var(--color-red-hover);
    box-shadow: 0 4px 20px var(--color-red-glow);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none
}

.btn-submit .btn-loading {
    display: none
}

.btn-submit.loading .btn-text {
    visibility: hidden
}

.btn-submit.loading .btn-loading {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 22px;
    height: 22px;
    animation: spin 0.8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.form-message {
    display: none;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-top: 12px;
}

.form-message.show {
    display: block
}

.form-message.success {
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-green)
}

.form-message.error {
    background: rgba(225, 29, 72, 0.12);
    color: var(--color-red)
}

.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted)
}

.form-footer .switch-modal {
    color: var(--color-red);
    font-weight: 600;
    margin-left: 4px
}

.form-footer .switch-modal:hover {
    color: var(--color-red-hover)
}

.turnstile-container {
    display: flex;
    justify-content: center
}

/* ============================================================
   VIDEO PAGE
   ============================================================ */
.player-row {
    display: flex;
    gap: var(--grid-gap-default);
    align-items: flex-start;
    flex-wrap: wrap;
}

.player-left {
    flex-grow: 1;
    min-width: 0;
    position: relative;
    width: 100%;
}

.player-right {
    display: none;
    padding-left: 0;
    flex: 1 1 315px;
    position: relative;
    width: 100%;
    margin-top: var(--grid-gap-default);
}

@media (min-width: 1024px) {
    .player-row {
        flex-wrap: nowrap
    }

    .player-right {
        display: flex;
        flex-direction: column;
        flex: 0 0 320px;
        padding-left: 16px;
        width: auto;
        margin-top: 0;
    }
}

.player-section {
    position: relative;
    z-index: 1
}

.player-video {
    position: relative;
    display: flex
}

.player-poster-svg {
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.player-poster-abs {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
}

.player-poster-play {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 0;
    outline: none;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(139, 92, 246, 0.85);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.player-poster-play:hover {
    background: var(--color-accent);
    transform: scale(1.08);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

.player-poster-loading {
    display: block;
    align-self: center;
    margin: 0 auto;
    width: 42px;
    height: 42px;
    padding: 5px;
}

.player-poster-loading:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    border-color: var(--text-primary) transparent var(--text-primary) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.below-video {
    display: none;
    padding: 6px 0;
    text-align: center
}

@media (min-width: 768px) {
    .below-video {
        display: block
    }
}

.-heading {
    color: var(--heading-color);
    font-size: var(--heading-font-size);
    font-weight: var(--heading-font-weight)
}

.-heading-similar {
    line-height: 44px
}

.-flex-vertical {
    display: flex;
    flex-direction: column
}

.-grid-inline {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: auto
}

.-grid-gap {
    grid-gap: var(--grid-gap-default)
}

/* VPA */
.vpa-stats {
    width: 100%
}

.vpa-actions {
    padding-top: 10px;
    width: 100%
}

.vpa-stats-grid {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 13px;
}

@media (min-width: 575px) {
    .vpa-stats {
        flex-grow: 1;
        width: auto
    }

    .vpa-actions {
        padding-top: 0;
        width: auto
    }
}

.vpa-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(70px, 1fr));
    gap: var(--grid-gap-default);
    position: relative;
}

@media (min-width: 575px) {
    .vpa-list {
        grid-auto-flow: column;
        grid-auto-columns: auto;
        grid-template-columns: none;
    }
}

.vpa-item {
    display: flex;
    flex: 1 1 0;
    justify-content: center;
    align-items: flex-end
}

.vpa-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    user-select: none;
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
}

.vpa-button:hover {
    color: var(--color-red);
    border-color: var(--color-red-glow);
    background: var(--bg-hover);
}

.vpa-button-fake {
    transition: color 0.2s ease
}

.vpa-button-fake.is-active {
    color: var(--color-red)
}

.vpa-button.favorited {
    color: var(--color-green)
}

.vpa-button.favorited svg {
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.4))
}

.vpa-button span {
    padding-top: 4px;
    font-size: 11px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.vpa-holder {
    margin-top: var(--grid-gap-default);
    height: 80px;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 575px) {
    .vpa-holder {
        margin-top: 0;
        height: 60px;
        grid-template-columns: 2fr 1fr;
    }
}

.vpa-stats {
    padding-top: 20px
}

/* VPC */
.vpc-holder {
    box-shadow: var(--box-shadow-bottom);
    padding: var(--grid-gap-default);
    display: flex;
    flex-direction: column;
}

.vpc-stats {
    display: flex;
    flex-grow: 1
}

.vpc-title {
    font-size: 16px;
    font-weight: 600;
    transition: color var(--transition-fast)
}

.vpc-title:hover {
    color: var(--color-red)
}

.vpc-pipe {
    width: 1px;
    height: 11px;
    background-color: var(--border-default);
    display: inline-block;
    vertical-align: middle
}

.vpc-join {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding-top: var(--grid-gap-default);
    flex-wrap: wrap;
    gap: 5px
}

@media (min-width: 575px) {
    .vpc-holder {
        flex-direction: row
    }

    .vpc-join {
        flex-grow: initial;
        padding: 0
    }
}

/* VPR */
.vpr-section {
    flex-grow: 1
}

.vpr-first {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: var(--grid-gap-default);
    min-height: 250px;
    width: 300px;
}

/* Related Links */
.related-link {
    padding: 0 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-pill);
    display: inline-block;
    margin: 0 6px 8px 0;
    text-transform: capitalize;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 28px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

@media (max-width: 575px) {
    .related-link {
        white-space: normal;
        line-height: 1.4;
        padding: 6px 12px
    }
}

.related-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: white;
}

.related-list {
    padding: 10px 0
}

.-up-mobile {
    display: block;
    padding: 20px 0
}

.-up-mobile-holder {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    height: 100px;
    overflow: hidden
}

@media (min-width: 768px) {
    .-up-mobile {
        display: none
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   WRAPPER
   ============================================================ */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper .-main {
    flex: 1
}

/* ============================================================
   VIDEO INFO (vi-*)
   ============================================================ */
.vi-servers {
    background: var(--bg-elevated);
    border-top: none;
    border-bottom: none;
    padding: 10px 12px;
}

.vi-server-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vi-server-list .pu-link a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: var(--bg-hover) !important;
    color: var(--text-secondary) !important;
    border-radius: var(--radius-pill) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border: none !important;
    transition: background 0.2s, color 0.2s !important;
    min-height: 36px !important;
}

.vi-server-list .pu-link a:hover {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

.vi-server-list .pu-link.active a,
.vi-server-list .pu-link a[style*="#e52637"],
.vi-server-list .pu-link a[style*="e52637"] {
    background: var(--color-red) !important;
    color: white !important;
    border-color: var(--color-red) !important;
    box-shadow: 0 0 12px var(--color-red-glow) !important;
}

.vi-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vi-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (min-width: 576px) {
    .vi-title {
        font-size: 20px
    }
}

.vi-meta-row {
    display: flex;
    flex-direction: column;
}

@media (min-width: 576px) {
    .vi-meta-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.vi-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.vi-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vi-stat svg {
    flex-shrink: 0;
    opacity: 0.7
}

.vi-stat-sep {
    opacity: 0.35;
    font-size: 16px;
    line-height: 1
}

.vi-stat--time {
    font-style: italic
}

.vi-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vi-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    height: 38px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--bg-hover);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
    font-family: inherit;
    min-height: 44px;
}

.vi-btn:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.vi-btn.vpa-button-fake.is-active {
    background: rgba(229, 9, 20, 0.15);
    /* Netflix Red Match */
    color: var(--color-red);
}

.vi-btn--save {
    background: var(--bg-hover)
}

.vi-btn--save.favorited {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-green);
}

.vi-btn--save:hover {
    color: var(--color-red);
    background: rgba(229, 9, 20, 0.15);
}

.vi-btn--save.favorited:hover {
    color: var(--color-green);
    background: rgba(34, 197, 94, 0.25);
}

@media (max-width: 400px) {
    .vi-btn span {
        display: none
    }

    .vi-btn {
        padding: 0;
        justify-content: center;
    }
}

.vi-channel {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-bottom: none;
}

.vi-channel-avatar {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    line-height: 0;
    transition: opacity var(--transition-fast);
}

.vi-channel-avatar:hover {
    opacity: 0.85
}

.vi-channel-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.vi-channel-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vi-channel-name:hover {
    color: var(--color-red)
}

.vi-channel-date {
    font-size: 12px;
    color: var(--text-muted);
}

.vi-channel-cats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.vi-desc {
    background: var(--bg-elevated);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
}

.vi-desc-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.vi-desc-meta strong {
    color: var(--text-secondary)
}

.vi-desc-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.vi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 4px;
}

/* ============================================================
   MOBILE — 2-COLUMN GRID FROM 480px
   ============================================================ */
@media (min-width: 480px) and (max-width: 575px) {
    :root {
        --videos-grid: var(--2-columns)
    }
}

/* ============================================================
   MOBILE — BOTTOM NAVIGATION BAR
   ============================================================ */
.mobile-bnav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    box-shadow: 0 -1px 0 var(--border-subtle), 0 -8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .mobile-bnav {
        display: none
    }
}

.mobile-bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    background: none;
    border: none;
    padding: 6px 4px;
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast);
    border-radius: 0;
    min-height: 44px;
    position: relative;
    font-family: inherit;
}

.mobile-bnav-item svg {
    transition: transform var(--transition-fast);
}

.mobile-bnav-item:hover,
.mobile-bnav-item:active {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.mobile-bnav-item--active {
    color: var(--color-red);
}

.mobile-bnav-item--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--color-red);
    border-radius: 0 0 2px 2px;
}

.mobile-bnav-item--search {
    color: var(--text-primary);
    background: var(--color-red);
    border-radius: 14px;
    margin: 6px 8px;
    flex: none;
    width: 50px;
    height: 48px;
    padding: 0;
    box-shadow: 0 4px 16px var(--color-red-glow);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-bnav-item--search span {
    display: none
}

.mobile-bnav-item--search:hover {
    background: var(--color-red-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--color-red-glow);
    color: white;
}

/* ============================================================
   MOBILE — BODY PADDING FOR BOTTOM NAV
   ============================================================ */
@media (max-width: 767px) {
    .-main {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    .footer {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    }
}

/* ============================================================
   MOBILE — HEADER REFINEMENTS
   ============================================================ */
@media (max-width: 767px) {
    :root {
        --header-top-height: 52px;
        --header-bottom-height: 38px;
    }

    .hd-logo img {
        max-height: 28px;
    }

    .hd-menu-btn,
    .hd-action-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ============================================================
   MOBILE — VIDEO CARDS
   ============================================================ */
@media (max-width: 575px) {
    @media (min-width: 480px) {
        .videos-list {
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 8px
        }
    }

    .video-item {
        grid-template-rows: auto 28px 20px;
        grid-row-gap: 6px;
    }

    .video-item-thumb {
        border-radius: 8px
    }

    .video-item-title {
        font-size: 12px;
        line-height: 14px;
        height: 28px;
    }

    .video-item-bottom {
        font-size: 11px;
        padding: 0;
    }

    [data-vi="bottom"] {
        font-size: 10px;
        height: 19px;
        padding: 0 4px;
    }

    [data-vi="hd"] {
        font-size: 9px
    }
}

/* ============================================================
   MOBILE — PILLS CAROUSEL
   ============================================================ */
@media (max-width: 767px) {
    .pills-carousel {
        height: auto;
        overflow: visible;
        padding-bottom: 0;
    }

    .-pc-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .-pc-item {
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        padding: 0 12px;
        margin: 0 0 0 5px;
        min-width: 50px;
    }
}

/* ============================================================
   MOBILE — PAGINATION
   ============================================================ */
@media (max-width: 575px) {
    .pager {
        gap: 6px;
        padding: 28px 8px
    }

    .pager-item {
        height: 40px;
        min-width: 40px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    .pager-dots {
        display: none
    }
}

/* ============================================================
   MOBILE — MODAL FULLSCREEN
   ============================================================ */
@media (max-width: 575px) {
    .modal-inner {
        margin: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        max-height: 92vh;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    .auth-modal.active .modal-inner {
        transform: translateY(0);
        opacity: 1;
    }

    .modal-content {
        padding: 24px 20px
    }

    .modal-inner::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: var(--border-strong);
        border-radius: 2px;
        margin: 12px auto 0;
    }
}

/* ============================================================
   MOBILE — SEO SECTION
   ============================================================ */
@media (max-width: 575px) {
    .-less-content {
        font-size: 13px;
        line-height: 1.65
    }

    .-less-button {
        font-size: 11px
    }
}

/* ============================================================
   MOBILE — VIDEO PAGE
   ============================================================ */
@media (max-width: 767px) {
    .vpa-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .vpa-button {
        padding: 10px 8px;
        font-size: 12px;
        min-height: 44px;
        justify-content: center;
    }

    .vpa-button span {
        font-size: 10px
    }

    .related-link {
        font-size: 11px;
        line-height: 30px;
        padding: 0 10px;
        margin: 0 5px 7px 0;
    }
}

/* ============================================================
   SCROLL BEHAVIOR & SCROLLBAR
   ============================================================ */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted)
}

/* ============================================================
   SAFE AREA (iPhone notch/home indicator)
   ============================================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bnav {
        height: calc(60px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ============================================================
   MOBILE — SECTION SPACING
   ============================================================ */
@media (max-width: 575px) {
    .-section {
        margin-bottom: 8px
    }

    .-main {
        padding: 0 6px
    }

    .-heading-one {
        font-size: 16px;
        line-height: 36px
    }

    .-heading-two {
        font-size: 14px;
        line-height: 34px
    }
}


/* --- PREMIUM CSS MERGE --- */

/* Professional Streaming UI Styles (YouTube/Netflix inspired) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --pro-bg: #0f0f0f;
    /* YouTube Dark Background */
    --pro-card-bg: #0f0f0f;
    --pro-header-bg: rgba(15, 15, 15, 0.98);
    --pro-border: #272727;
    --pro-border-hover: #3f3f3f;

    --pro-accent: #E50914;
    /* Crimson Red brand accent */
    --pro-text: #f1f1f1;
    --pro-text-muted: #aaaaaa;

    --pro-radius-thumb: 12px;
    /* Slightly square like YouTube/Twitch */
    --pro-radius-pill: 999px;
    --pro-radius-btn: 18px;

    --pro-hover-bg: rgba(255, 255, 255, 0.1);
    --pro-hover-bg-light: rgba(255, 255, 255, 0.15);

    --pro-font-stack: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --pro-header-height: 56px;
}

body.dark {
    background-color: var(--pro-bg) !important;
    color: var(--pro-text) !important;
    font-family: var(--pro-font-stack) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.premium-mobile-only {
    display: flex !important;
}

@media (min-width: 768px) {
    .premium-mobile-only {
        display: none !important;
    }
}

/* ==========================================================================
   HEADER - Netflix/YouTube Solid Look
   ========================================================================== */

.premium-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: var(--pro-header-bg);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.premium-header[data-scroll="down"] {
    transform: translateY(-100%);
}

.premium-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--pro-header-height);
    /* Thinner like YouTube */
    padding: 0 1rem;
    max-width: 1800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .premium-header-inner {
        padding: 0 1.5rem;
        height: 60px;
    }
}

.premium-header-left,
.premium-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-header-left {
    min-width: 0;
    overflow: hidden;
}

.premium-header-right {
    flex-shrink: 0;
}

@media (min-width: 768px) {

    .premium-header-left,
    .premium-header-right {
        gap: 1rem;
    }
}

.premium-logo {
    display: flex;
    align-items: center;
    height: 24px;
    margin-right: 0.5rem;
    transition: opacity 0.2s;
}

@media (min-width: 768px) {
    .premium-logo {
        height: 28px;
        margin-right: 1.5rem;
    }
}

.premium-logo:hover {
    opacity: 0.8;
}

.premium-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.premium-nav {
    display: none;
}

@media (min-width: 1024px) {
    .premium-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.premium-nav-link {
    color: var(--pro-text);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    text-decoration: none;
    position: relative;
}

.premium-nav-link:hover,
.premium-nav-link.is-active {
    opacity: 1;
}

.premium-nav-link.is-active::after {
    content: "";
    position: absolute;
    bottom: -20px;
    /* Hangs over header edge */
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pro-accent);
    border-radius: 2px 2px 0 0;
}

/* Search Box - YouTube Style */
.premium-search {
    display: none;
    flex: 1;
    max-width: 600px;
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .premium-search {
        display: flex;
    }
}

.premium-search-container {
    display: flex;
    width: 100%;
    height: 40px;
}

.premium-search-input {
    flex: 1;
    background: #1a1a1a;
    border: none;
    border-radius: var(--pro-radius-pill) 0 0 var(--pro-radius-pill);
    padding: 0.1rem 1.25rem;
    color: var(--pro-text);
    font-size: 1rem;
    font-family: var(--pro-font-stack);
    outline: none;
    box-shadow: none;
}

.premium-search-input:focus {
    border: 1px solid #1c62b9;
    /* Classic subtle focus ring */
    box-shadow: none;
    margin-left: -1px;
    /* Visual adjustment for focus border */
}

.premium-search-btn {
    width: 64px;
    background: #2a2a2a;
    border: none;
    border-radius: 0 var(--pro-radius-pill) var(--pro-radius-pill) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pro-text-muted);
    cursor: pointer;
    transition: background 0.2s;
}

.premium-search-btn:hover {
    background: #303030;
    color: var(--pro-text);
}

/* Icon Buttons */
.premium-icon-btn {
    background: transparent;
    border: none;
    color: var(--pro-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.premium-icon-btn:hover {
    background: var(--pro-hover-bg);
}

/* Mobile Search Overlay */
.premium-msearch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--pro-header-height);
    background: var(--pro-bg);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    z-index: 10;
    gap: 0.5rem;
}

.premium-msearch .premium-search-container {
    height: 36px;
}

/* Mobile Nav Slide-out */
.premium-mnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: #181818;
    border-left: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    /* Replaces border with a deep shadow */
    z-index: 100;
    transition: right 0.25s cubic-bezier(0.1, 0.7, 0.1, 1);
    display: flex;
    flex-direction: column;
}

.premium-mnav.active {
    right: 0;
}

.premium-mnav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--pro-header-height);
    padding: 0 1rem;
    border-bottom: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.premium-mnav-links {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.premium-mnav-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.5rem;
    color: var(--pro-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.premium-mnav-link:hover,
.premium-mnav-link.is-active {
    background: var(--pro-hover-bg);
}

/* ==========================================================================
   VIDEO GRID - Fully Responsive overriding legacy classes
   ========================================================================== */

.videos-list,
.videos-list.videos-list-large-thumbs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem 1rem !important;
    width: 100% !important;
    padding: 1rem 0 !important;
}

@media (min-width: 500px) {

    .videos-list,
    .videos-list.videos-list-large-thumbs {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {

    .videos-list,
    .videos-list.videos-list-large-thumbs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem 1rem !important;
    }
}

@media (min-width: 1024px) {

    .videos-list,
    .videos-list.videos-list-large-thumbs {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 1440px) {

    .videos-list,
    .videos-list.videos-list-large-thumbs {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* ==========================================================================
   VIDEO CARDS - Robust, standard 16:9
   ========================================================================== */

.premium-video-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
}

.premium-video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--pro-radius-thumb);
    overflow: hidden;
    background: #202020;
}

.premium-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.premium-video-card:hover .premium-video-img {
    /* Subtle upscale, nothing dramatic */
    transform: scale(1.02);
}

.premium-video-badges {
    position: absolute;
    bottom: 0.4rem;
    right: 0.4rem;
    display: flex;
    gap: 0.25rem;
    pointer-events: none;
}

.premium-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    line-height: 1;
}

.premium-badge.hd {
    background: rgba(204, 0, 0, 0.9);
    /* Subtle red for HD, standard in old VODs, or keep transparent black */
}

.premium-video-info {
    display: flex;
    flex-direction: column;
    padding: 0 0.1rem;
}

.premium-video-title {
    color: var(--pro-text);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.1s;
}

@media (max-width: 639px) {
    .premium-video-title {
        font-size: 0.85rem;
        /* Slightly smaller on mobile to fit nicely */
    }
}

.premium-video-card:hover .premium-video-title {
    /* No color change, just rely on the whole card hover effect, or a subtle underline */
    color: #fff;
}

.premium-video-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--pro-text-muted);
    gap: 0.35rem;
    font-weight: 400;
}

.premium-rating {
    font-weight: 500;
    color: var(--pro-accent);
}

.premium-separator {
    position: relative;
    top: -1px;
}

.premium-separator::after {
    content: "•";
    font-size: 0.8rem;
}

.premium-empty {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--pro-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.premium-empty svg {
    color: #303030;
}

/* User Area Adjustment */
.hd-user-area {
    display: flex;
    align-items: center;
}

/* ============================================================
   PREMIUM PAGE HEADERS & VIDEOS
   ============================================================ */
.premium-page-header {
    position: relative;
    padding: 40px 20px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(11, 15, 25, 0) 100%);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    border-radius: var(--radius-lg);
}

.premium-page-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-page-title span {
    background: linear-gradient(90deg, #F1F5F9 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-page-desc {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   PREMIUM VIDEO INFO (VIEW PAGE)
   ============================================================ */
.vi-info {
    /* Faphouse style: flat, clean, matching background */
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 0;
    margin-top: 5px;
}

.vi-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.vi-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.vi-title-duration {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Removed channel and primary CTA styles */

.vi-actions-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.vi-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    height: auto;
    min-height: 26px;
    background: var(--bg-input);
    /* Light gray pill */
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.vi-btn svg {
    width: 13px;
    height: 13px;
}

.vi-btn:hover {
    background: var(--bg-hover);
    border-color: transparent;
    outline: none;
}

.vi-btn.is-active,
.vi-btn.favorited {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.vi-btn.is-active svg,
.vi-btn.favorited svg {
    fill: #FFC107;
}

.vi-meta-row {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.vi-tags {
    display: flex;
    flex-wrap: wrap;
}

.related-link {
    display: inline-flex;
    padding: 2px 6px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.related-link:hover {
    background: var(--bg-hover);
    border-color: transparent;
    outline: none;
}

.related-link--brand {
    color: var(--color-green);
}