/* PornDoe Theme - Extracted from home.html */

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

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

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

:root {
    --holder-width: 1350px;
    --default-holder-sides: 10px;
    --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);
    --default-grid-gap: 10px;
    /* Light Theme Color Palette */
    --color-primary: #0e7490;
    --color-secondary: #0891b2;
    --color-accent: #0891b2;
    --color-accent-hover: #0e7490;
    --color-surface: #f1f5f9;
    --color-surface-light: #e2e8f0;
    --color-surface-lighter: #cbd5e1;
    --color-border: #d1d5db;
    --color-border-light: #9ca3af;
    --text-color-default: #111111;
    --text-color-muted: #374151;
    --font-weight-default: 400;
    --font-size-default: 14px;
    --grid-gap-default: 10px;
    --grid-gap-footer: 20px;
    /* Legacy mappings */
    --color-red: var(--color-accent);
    --color-gray: #6b7280;
    --color-green: #059669;
    --body-background-color: #f8fafc;
    --box-shadow-color: rgba(0, 0, 0, 0.08);
    --box-shadow-top: inset 0 1px var(--box-shadow-color);
    --box-shadow-left: inset 1px 0 var(--box-shadow-color);
    --box-shadow-right: inset -1px 0 var(--box-shadow-color);
    --box-shadow-bottom: inset 0 -1px var(--box-shadow-color);
    --box-shadow-inset: inset 0px 0px 0px 1px var(--box-shadow-color);
    --heading-line-height: 44px;
    --heading-font-size: 18px;
    --heading-font-weight: 600;
    --heading-color: var(--text-color-default);
}

@media (min-width: 576px) {
    :root {
        --heading-font-size: 20px
    }
}

/* === Typography & Body === */
@font-face {
    font-weight: 400;
    font-family: Segoe UI;
    src: local("Segoe UI")
}

@font-face {
    font-weight: 500;
    font-family: Segoe UI;
    src: local("Segoe UI Semibold"), local("Segoe UI Bold")
}

@font-face {
    font-weight: 600;
    font-family: Segoe UI;
    src: local("Segoe UI Semibold"), local("Segoe UI Bold")
}

@font-face {
    font-weight: 700;
    font-family: Segoe UI;
    src: local("Segoe UI Bold")
}

:active {
    outline: none
}

:focus {
    outline: none
}

body,
html {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Ubuntu, sans-serif;
    -webkit-text-size-adjust: 100%;
    color: var(--text-color-default);
    font-weight: var(--font-weight-default);
    font-size: var(--font-size-default);
    background: var(--body-background-color);
    position: relative;
}

/* Light Background - No gradient effect */
body::before {
    display: none;
}

@keyframes oceanicGradientShift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-5%, 5%) rotate(1deg);
    }

    66% {
        transform: translate(5%, -5%) rotate(-1deg);
    }
}

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
}

/* === Header === */
:root {
    --header-top-height: 64px;
    --header-top-background: rgba(6, 16, 24, 0.98);
    --header-bottom-height: 48px;
    --header-bottom-background: rgba(4, 12, 18, 0.98);
}

.-h-ng-header-holder {
    height: calc(var(--header-top-height) + var(--header-bottom-height));
    top: calc(-1 * (var(--header-top-height) + var(--header-bottom-height)));
    position: sticky;
    z-index: 25;
    transition: top .3s linear 0s;
    border-bottom: 1px solid rgba(22, 78, 99, 0.2);
}

.-h-ng-header {
    height: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.-h-ng-header-holder[data-scroll="up"] {
    top: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7), 0 0 24px rgba(6, 182, 212, 0.08);
}

.-h-box {
    height: var(--header-top-height);
    position: relative;
}

.-h-top {
    display: flex;
    align-items: center;
    height: var(--header-top-height);
    background: var(--header-top-background);
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(10, 40, 56, 0.25);
}

.-h-bottom {
    position: relative;
    height: var(--header-bottom-height);
    background: var(--header-bottom-background);
    display: inline-block;
    width: 100%;
    vertical-align: top;
    box-shadow: inset 0 1px 0 rgba(6, 182, 212, 0.06);
}

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

.-h-row {
    position: relative;
    width: 100%;
    height: var(--header-top-height);
    max-width: var(--holder-width);
    margin: 0 auto;
    display: flex;
    padding: 0 16px;
}

.-h-button {
    background: transparent;
    color: #ffffff;
    width: 48px;
    height: var(--header-top-height);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.-h-button:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-secondary);
}

.-h-menu {
    width: 96px
}

.-h-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.-h-logo a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.3));
}

.-h-logo a:hover {
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.5));
    transform: translateY(-1px);
}

.-h-logo-svg {
    height: 20px;
    fill: var(--color-secondary);
    transition: all 0.3s ease;
}

.-h-logo:hover .-h-logo-svg {
    fill: #ffffff;
}

.-h-user {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.-h-magnum {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.-h-others {
    flex-grow: 1;
    align-items: center;
}

.-h-genre,
.-h-search,
.-h-others,
.-h-language {
    position: relative;
    display: none;
}

.-h-push {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: right;
    cursor: pointer;
    opacity: .7;
    color: #ffffff;
    letter-spacing: 1px;
    gap: 5px;
    transition: all 0.3s ease;
}

.-h-push:hover {
    opacity: 1;
    color: var(--color-secondary);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.-h-mobile-search {
    background: rgba(6, 16, 24, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    position: absolute;
    height: auto;
    z-index: 5;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    padding: 0 10px;
    box-sizing: border-box;
    transform: translateY(-50%);
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.65), 0 0 18px rgba(6, 182, 212, 0.12);
    border-top: 1px solid rgba(10, 40, 56, 0.2);
    border-bottom: 1px solid rgba(10, 40, 56, 0.2);
}

.-h-mobile-search .-h-search-form {
    margin: 0;
    width: 100%;
}

.-h-mobile-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: 8px;
    border-radius: 50%;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.-h-mobile-search-close:hover {
    color: #ffffff;
    background: rgba(6, 182, 212, 0.15);
}

.-h-search-form {
    background: var(--color-surface-light);
    height: 40px;
    display: grid;
    grid-template-columns: auto 40px;
    grid-gap: 0;
    width: 100%;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.-h-search-form:focus-within {
    border-color: transparent;
    box-shadow: none;
    background: var(--color-surface-lighter);
}

.-h-search-label {
    display: flex
}

.-h-search-input {
    border: none;
    height: 40px;
    background: transparent;
    padding: 0 20px;
    font-size: 15px;
    color: #000000;
    width: 100%;
    font-weight: 500;
}

.-h-search-input::placeholder {
    color: #9ca3af;
    opacity: 0.5;
}

.--h-search-button {
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #9ca3af;
}

.--h-search-button:hover {
    color: var(--color-secondary);
    background: rgba(6, 182, 212, 0.15);
    transform: scale(1.1);
}

@media screen and (min-width: 768px) {
    .-h-row {
        gap: 10px
    }

    .-h-menu,
    .-h-magnum {
        display: none
    }

    .-h-logo {
        padding: 0 var(--grid-gap-default);
        flex-grow: unset
    }

    .-h-search {
        width: 100%;
        max-width: 480px;
        position: relative;
        align-items: center;
    }

    .-h-genre,
    .-h-search,
    .-h-others,
    .-h-language {
        display: flex
    }
}

@media screen and (min-width: 1024px) {
    .-h-logo-svg {
        height: 24px
    }

    .-h-ng-header-holder {
        height: calc(var(--header-top-height) + var(--header-bottom-height));
        z-index: 50;
        top: calc(-1 * (var(--header-top-height) + var(--header-bottom-height)));
    }

    .-h-search-input {
        font-size: 14px
    }
}

@media (min-width: 1350px) {
    .-h-logo {
        padding-left: 0
    }
}

/* Header User Menu */
.-h-user-wrap {
    position: relative
}

.-h-user-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: linear-gradient(180deg, rgba(4, 10, 16, 0.98) 0%, rgba(2, 6, 10, 0.98) 100%);
    backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 1px var(--color-border-light);
    border: 1px solid rgba(22, 78, 99, 0.25);
    min-width: 220px;
    z-index: 60;
}

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

.-h-auth-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.-h-auth-signin {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.-h-auth-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.6);
}

.-h-auth-signup {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--color-border-light);
}

.-h-auth-signup:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--color-secondary);
}

.-h-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.-h-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(22, 78, 99, 0.25);
}

.-h-user-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.-h-user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    color: #9ca3af;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.-h-user-link:hover {
    color: #ffffff;
    background: rgba(6, 182, 212, 0.1);
}

.-h-user-divider {
    height: 1px;
    background: rgba(22, 78, 99, 0.25);
    margin: 4px 0;
}

/* Header Nav (Bottom Bar) */
.header-nav-list {
    display: grid;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    overflow: hidden;
    grid-gap: 16px;
    padding: 0 16px;
}

.header-nav-link {
    color: #d2eef1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: var(--header-bottom-height);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    padding: 0 8px;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.header-nav-link:hover::after,
.header-nav-link b::after {
    width: 100%;
}

.header-nav-desktop {
    display: none
}

@media (max-width: 767px) {
    .header-nav-list {
        margin: 0 -2px
    }

    .header-nav-list-overflow {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        overflow: hidden;
    }

    .header-nav-link+.header-nav-link {
        border-left: 1px solid rgba(255, 255, 255, .05);
    }
}

@media (min-width: 576px) {
    .header-nav-link {
        font-size: 13px
    }

    .header-nav-link:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    }
}

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

/* Mobile Nav Sidebar */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.mobile-nav.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    background: rgba(2, 12, 20, 0.75);
    backdrop-filter: blur(6px);
}

.mobile-nav-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, #0f2d3d 0%, #0c2232 100%);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(6, 182, 212, 0.15);
}

.mobile-nav.active .mobile-nav-inner {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(6, 182, 212, 0.12);
    padding-left: 24px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: scaleY(1);
}

.mobile-nav-link--hot {
    color: var(--color-accent);
    font-weight: 600;
}

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

.-main {
    flex: 1;
}

.-section {
    margin-bottom: 15px
}

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

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

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

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

.video-page-top {
    padding-top: 0;
}

@media (min-width: 768px) {
    .video-page-top {
        padding-top: 12px;
    }
}

.-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: white;
    fill: white
}

.-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-color-default);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 var(--default-holder-sides);
}

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

.-heading-two {
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-default);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 var(--default-holder-sides);
}

.-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(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 100%;
    width: 80px;
    height: 1px;
}

/* === Home More Links === */
.home-more-desktop {
    transition: all .25s linear;
    display: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    color: var(--text-color-muted);
    margin-left: auto;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 2px;
    border: 1px solid transparent;
}

.home-more-desktop:hover {
    color: var(--text-color-default);
    border-color: var(--color-border-light)
}

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

.home-more-mobile {
    display: block;
    padding: 8px;
    margin: 0 10px;
    font-size: 14px;
    line-height: 16px;
    text-transform: capitalize;
    text-align: center;
    color: #000;
    background: #eaeaea;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #eaeaea;
}

.home-more-mobile:hover {
    color: #000
}

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

/* === Home Inline Nav (Sort Tabs) === */
.home-inline-nav {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: block;
}

.home-inline-nav a {
    white-space: nowrap;
    display: inline-block;
    color: var(--text-color-muted);
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    line-height: 32px;
    margin: 0 8px;
    font-weight: bold;
    opacity: .5;
    transition: all 0.3s ease;
}

.home-inline-nav a.active {
    opacity: 1;
    background: #ffffff;
    padding: 0 16px;
    font-weight: 600;
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* === Video Grid === */
:root {
    --videos-grid: var(--1-column);
    --videos-grid-gap: var(--default-grid-gap);
    --videos-banner-display: none;
}

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

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

@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;
    }
}

.videos-list {
    display: grid;
    grid-template-columns: var(--videos-grid);
    grid-gap: var(--videos-grid-gap);
    grid-row-gap: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
    margin: 0 var(--default-holder-sides);
}

.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 Item (Card) === */
.video-item {
    display: grid;
    grid-template-rows: auto 32px 22px;
    grid-row-gap: var(--default-grid-gap);
    font-size: 13px;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-3px);
}

.video-item-svg {
    transition: all .2s linear;
    background-color: var(--color-surface);
    background-size: cover;
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 8px;
}

.video-item-thumb {
    position: relative;
    overflow: hidden;
    display: flex;
}

.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(--color-surface);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.video-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.video-item-full-tag {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    height: 22px;
    background: rgba(10, 46, 63, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    color: #ffffff;
    font-size: 10px;
    line-height: 22px;
    font-weight: 700;
    padding: 0 8px 0 0;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.video-item-full-tag-star {
    float: left;
    width: 22px;
    height: inherit;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item-stats,
[data-vi="stats"] {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
    line-height: 20px;
    display: flex;
    font-size: 12px;
    border-radius: 0 8px 0 0;
}

.video-item-star-gray,
[data-vi="star"] {
    background: var(--color-secondary);
    font-size: 18px;
    padding: 0 3px;
    color: var(--body-background-color);
    font-weight: 700;
}

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

.video-item-hd,
[data-vi="hd"] {
    font-weight: 700;
    padding-right: 3px
}

.video-item-title {
    text-overflow: ellipsis;
    color: #1a1a1a;
    height: 30px;
    overflow: hidden;
    font-size: 14px;
    line-height: 14px;
    transition: color 0.3s ease;
}

.video-item-title:hover {
    color: #000000;
    cursor: pointer
}

.video-item-bottom {
    line-height: 18px;
    color: #374151;
    display: flex;
    column-gap: 5px;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.9;
}

.video-item-site {
    font-size: 12px;
    transition: color 0.3s ease;
}

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

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

.video-item-actor {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

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

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

[data-vi="bottom"] {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 20px;
    margin: unset;
    padding: 0 3px;
    font-size: 12px;
}

[data-vi="views"] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

[data-vi="badge"] {
    text-transform: uppercase;
    margin-left: 5px;
    color: black;
    background: lightgrey;
    border-radius: 3px;
    padding: 0 3px;
    font-size: 11px;
    font-weight: 500;
}

@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 (Category Tags) === */
:root {
    --pills-height: 36px
}

.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;
}

.-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: #1a1a1a;
    text-align: center;
    height: var(--pills-height);
    line-height: var(--pills-height);
    font-size: 14px;
    padding: 0 14px;
    margin: 0 0 0 5px;
    min-width: 70px;
    display: inline-block;
    background: #e2e8f0;
    border-radius: 24px;
    border: 1px solid #cbd5e1;
    user-select: none;
    transition: all 0.2s ease;
}

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

.-pc-item:hover {
    background-color: #cbd5e1;
    color: #000;
}

.-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: linear-gradient(90deg, #f8fafc 47.62%, rgba(248, 250, 252, 0) 100%);
}

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

.-pc-right {
    text-align: right;
    right: 0;
    background: linear-gradient(275deg, #f8fafc 47.62%, rgba(248, 250, 252, 0) 100%);
}

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

.-pc-arrow {
    position: relative;
    display: inline-block;
    width: var(--pills-height);
    height: var(--pills-height);
    border-radius: 100%;
}

.-pc-arrow:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 3px solid #6b7280;
    border-bottom: 3px solid #6b7280;
}

.-pc-arrow:hover {
    background: #e2e8f0
}

.-pc-arrow:hover:after {
    border-color: #111
}

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

    .-pc-btn {
        display: block
    }

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

/* === Pager (Pagination) === */
.pager {
    display: inline-grid;
    grid-gap: var(--default-grid-gap);
    grid-auto-flow: column;
    padding: 36px 0;
}

.pager-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    height: 40px;
    padding: 0 20px;
    background-color: #e2e8f0;
    user-select: none;
    color: #1a1a1a;
}

@media (max-width: 575px) {
    .pager {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 20px 0;
    }

    .pager-item {
        height: 34px;
        padding: 0 12px;
        font-size: 13px;
    }
}

a.pager-item:hover {
    background-color: #cbd5e1;
    color: #000
}

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

@media (max-width: 575px) {
    .pager-dots {
        display: flex;
        background: transparent;
        padding: 0 8px;
    }
}

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

    .pager-dots {
        background: transparent
    }

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

.pager-active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
    color: #ffffff;
}

/* === SEO Collapsible Section === */
.-less-section {
    transition: max-height 500ms ease 0s;
    max-height: 60px;
    overflow: hidden;
    line-height: 20px;
    position: relative;
}

.-less-content {
    line-height: 20px;
    color: #555
}

.-less-content a {
    color: #111
}

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

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

.-less-actions::before {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    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 15px;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 1;
}

/* === Footer === */
.-footer {
    box-shadow: none;
    padding-top: 15px;
    color: #e2e8f0;
    background: #0c1b2a;
    margin-bottom: 0;
}

.-footer-holder {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: var(--grid-gap-footer);
}

@media (min-width: 768px) {
    .-footer-holder {
        grid-template-columns: 280px auto;
        min-height: 240px
    }
}

.-footer-group-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    display: grid;
    align-items: center;
    grid-template-columns: auto 24px;
    width: 100%;
    height: 36px;
}

@media (min-width: 576px) {
    .-footer-group-title {
        padding-bottom: 10px;
        margin-bottom: 10px;
        box-shadow: inset 0 -1px rgba(255, 255, 255, 0.15);
    }
}

.-footer-group-about {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
}

.-footer-group-about>div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.-footer-group-panel {
    display: none;
    padding: 10px 0;
    grid-template-columns: 1fr;
    grid-gap: 5px;
    flex-direction: column;
    width: 100%;
}

.-footer-group-panel[data-active="true"] {
    display: grid
}

.-footer-group-link {
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    gap: 10px;
    align-items: center;
}

.-footer-group-link:hover {
    color: #ffffff
}

.-footer-group-more {
    background: none;
    color: #9ca3af
}

.-footer-group-more[data-active="true"] {
    transform: rotate(180deg)
}

@media (min-width: 575px) {
    .-footer-group-about {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: var(--grid-gap-footer);
        background: none;
        padding: 0;
        border-radius: unset;
    }

    .-footer-group-panel {
        display: grid
    }

    .-footer-group-more {
        display: none
    }
}

.-footer-legal {
    height: 72px
}

.-footer-legal-first {
    height: 24px
}

.-footer-legal-second {
    display: grid;
    grid-template-columns: 1fr;
    line-height: 24px;
    font-size: 12px;
    text-align: center;
    color: #9ca3af;
}

@media (min-width: 576px) {
    .-footer-legal-second {
        grid-template-columns: 1fr 1fr
    }

    .-footer-legal-left {
        text-align: left
    }

    .-footer-legal-right {
        text-align: right
    }
}

.-footer-paper-holder {
    min-height: 56px;
    padding: 10px 0
}

.footer-paper-form {
    display: flex;
    height: 36px
}

.footer-paper-label {
    display: flex;
    flex-grow: 1
}

.footer-paper-input {
    flex-grow: 1;
    font-size: 16px;
    padding: 0 10px;
    border: none;
    width: 100%;
    background: #163a4d;
    color: #e2e8f0;
    border: 1px solid #1d5268;
    border-radius: 4px 0 0 4px;
}

.footer-paper-input::placeholder {
    color: #9ca3af;
    opacity: 0.6;
}

.footer-paper-button {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #ffffff;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 10px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.footer-paper-button:hover {
    background: linear-gradient(135deg, var(--color-accent-hover), var(--color-secondary));
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.5);
}

.footer-paper-success {
    color: var(--color-green);
    font-weight: 600;
}

.footer-phrases {
    text-align: center;
    margin-bottom: 18px
}

.footer-phrases-title {
    box-shadow: inset 0 -1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    padding: 10px 0;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #e2e8f0;
}

.footer-phrases-text {
    color: #9ca3af
}

.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: #9ca3af;
}

.footer-alternate-link:hover {
    color: #ffffff
}

.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: #e2e8f0;
}

@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 horizontal scroll) === */
@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: 20px;
        background-image: linear-gradient(to right, rgba(248, 250, 252, 0), rgba(248, 250, 252, 1));
    }

    .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;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    backdrop-filter: blur(2px);
}

.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: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid #e2e8f0;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.modal-content {
    padding: 30px
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    padding: 4px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

/* Form Elements */
.auth-form .form-group {
    margin-bottom: 16px
}

.auth-form label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    font-weight: 500;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    height: 42px;
    background: #f8fafc;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    color: #111111;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.auth-form input.error {
    border-color: #e53935;
}

/* Error Messages */
.error-message {
    display: none;
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
}

.error-message.show {
    display: block
}

/* Submit Button */
.btn-submit {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.5);
    background: linear-gradient(135deg, var(--color-accent-hover), var(--color-secondary));
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

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

.btn-submit.loading .btn-loading {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
}

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

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

/* Form Message */
.form-message {
    display: none;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 12px;
}

.form-message.show {
    display: block
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(229, 57, 53, 0.15);
    color: #e53935;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #6b7280;
}

.form-footer .switch-modal {
    color: var(--color-accent);
    font-weight: 600;
    margin-left: 4px;
    transition: color 0.3s ease;
}

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

/* Turnstile Container */
.turnstile-container {
    display: flex;
    justify-content: center;
}

/* === Detail / Video Page === */

/* Player Layout */
.player-row {
    display: flex
}

.player-left {
    flex-grow: 1;
    position: relative
}

.player-right {
    display: none;
    padding-left: 15px;
    flex: 0 0 315px;
    position: relative;
}

@media (min-width: 1024px) {
    .player-right {
        display: flex;
        flex-direction: column
    }
}

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

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

/* Player Poster */
.player-poster-svg {
    background-color: #e2e8f0;
    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.25);
}

.player-poster-play {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 0;
    outline: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.25);
}

.player-poster-play:hover {
    background: rgba(0, 0, 0, 0.5)
}

.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: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

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

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

/* Below Video (under-player ad) */
.below-video {
    display: none;
    padding: 5px 0;
    text-align: center;
}

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

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

.-heading-similar {
    line-height: 44px;
    padding: 0 var(--default-holder-sides);
}

.-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: Video Page Actions */
.vpa-stats {
    width: 100%
}

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

.vpa-stats-grid {
    color: var(--text-color-muted);
    font-weight: 500
}

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

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

.vpa-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    gap: var(--grid-gap-default);
    position: relative;
}

.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-color-muted);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vpa-button:hover {
    color: #000000;
    transform: translateY(-2px);
}

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

.vpa-button-fake.is-active {
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(20, 184, 166, 0.5);
}

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

.vpa-button.favorited svg {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

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

.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: Video Page Channel */
.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
}

.vpc-title:hover {
    color: #555
}

.vpc-pipe {
    width: 1px;
    height: 11px;
    background-color: #848484;
    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: Video Page Right sidebar */
.vpr-section {
    flex-grow: 1
}

.vpr-first {
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
    margin-bottom: var(--grid-gap-default);
    min-height: 250px;
    width: 300px;
}

/* Related Links */
.related-link {
    padding: 0 14px;
    background: #0e7490;
    border-radius: 20px;
    display: inline-block;
    margin: 0 5px 10px 0;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 13px;
    line-height: 30px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(14, 116, 144, 0.25);
}

.related-link:hover {
    background: #0891b2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 116, 144, 0.35);
    color: #ffffff;
}

.related-list {
    padding: 0 var(--grid-gap-default)
}

@media (max-width: 767px) {
    .related-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .related-link {
        max-width: 100%;
        white-space: normal;
        line-height: 1.4;
        padding: 6px 10px;
    }
}

/* Mobile under-player ad */
.-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
    }
}