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

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

html.dark {
    /* Main Colors */
    --main-background: #000;
    --primary-accent: #161617;
    --secondary-accent: #232323;
    --main-theme: #ec567c;
    --main-theme-hover: #e33561;
    --main-text: #fff;
    --faded-text: #bbb;

    /* Background overrides */
    --header-background: #000;
    --header-background2: #000;
    --thumb-box-bg: #161617;
    --thumb-placeholder-bg: #161617;
    --footer-bg: #232323;
    --footer-box-bg: #232323;
    --pagination-bg: #161617;
    --sort-bg: #161617;
    --tags-link-bg: transparent;
    --tags-link-bg-hover: rgba(236, 86, 124, 0.2);
    --input-bg: #161617;
    --btn-bg: #161617;
    --modal-bg: #161617;
    --sort-box-bg: #161617;

    /* Color overrides */
    --theme-hover-color: #ec567c;
    --btn-gold: #ec567c;
    --video-sub-btn: #ec567c;

    /* Border */
    --tags-link-border: 1px solid #ec567c;

    /* Grays - matching YouPorn */
    --lightest-gray: #fafafa;
    --light-gray: #bbb;
    --mid-light-gray: #616161;
    --gray: #4b4b4b;
    --mid-gray: #363636;
    --dark-gray: #232323;
    --darkest-gray: #161617;
}

/* ===========================
/* ===========================
   Body & Container
   =========================== */
html {
    overflow-x: hidden;
    height: auto;
}

body {
    background-color: #000 !important;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    background-color: #000;
    box-sizing: border-box;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main {
    background-color: #000;
    box-sizing: border-box;
    width: 100%;
    flex: 1;
}

.container {
    max-width: 1300px;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
}

/* ===========================
   Header Styles
   =========================== */
.header {
    background: linear-gradient(180deg, #070707 0%, #0b0b0c 100%) !important;
    border-bottom: 1px solid #1b1b1c;
}

.header-links {
    background-color: #000;
}

.header-holder {
    background: radial-gradient(1200px 120px at 20% 0%, rgba(236, 86, 124, 0.18), transparent 60%), #09090a;
    padding: 12px 0;
    border-bottom: 1px solid #141415;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-holder .header-inner {
    justify-content: space-between;
}

.header-search-below {
    display: none;
    padding: 10px 0 12px;
    border-top: 1px solid #141415;
    border-bottom: 1px solid #141415;
    background: #0a0a0b;
}

.search-below-form {
    width: 100%;
}

.search-below-inner {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #161617;
    border-radius: 20px;
    border: 1px solid #363636;
    padding: 0 12px;
    min-height: 42px;
    gap: 8px;
}

.search-below-inner:focus-within {
    border-color: #ec567c;
}

.btn-search-below {
    border: none;
    background: transparent;
    color: #ec567c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.search-below-inner input {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.search-below-inner input::placeholder {
    color: #bbb;
}

.header-holder .logo {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    opacity: 1;
}

.header.search-open .logo {
    opacity: 1 !important;
}

/* Logo */
.header .logo svg {
    height: 40px;
    width: auto;
}

.header-holder .logo {
    flex: 0 0 auto !important;
    overflow: visible !important;
}

.header .logo .js_logo_img {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
}

/* Search Bar - YouPorn Style */
.search {
    flex: 1;
    max-width: 500px;
}

.search-inner {
    display: flex;
    align-items: center;
    background-color: #161617 !important;
    border-radius: 20px !important;
    overflow: hidden;
    border: 1px solid #363636 !important;
    transition: border-color 0.2s ease;
}

.search-inner:focus-within {
    border-color: #ec567c !important;
}

.search-inner input[type="text"] {
    background-color: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 16px !important;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.search-inner input[type="text"]::placeholder {
    color: #bbb;
}

.search-inner .btn-search {
    background-color: transparent !important;
    border: none !important;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-inner .btn-search:hover {
    background-color: rgba(236, 86, 124, 0.1);
}

.search-inner .btn-search svg,
.search-inner .btn-search .svg-icon {
    fill: #ec567c !important;
    color: #ec567c !important;
    width: 18px;
    height: 18px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    color: #bbb;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-btn:hover {
    color: #ec567c;
    background-color: rgba(236, 86, 124, 0.1);
}

.header-btn svg,
.header-btn .svg-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Navigation Bar */
.header-nav {
    position: relative;
    background: linear-gradient(180deg, #0b0b0c 0%, #0a0a0b 100%);
    border: none;
    overflow: hidden;
}

.header-nav::before {
    content: none;
}

.header-nav .header-inner {
    padding: 6px 0;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nav-link {
    color: #d6d6d6 !important;
    padding: 9px 14px !important;
    margin: 4px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(236, 86, 124, 0.12);
    box-shadow: 0 6px 16px rgba(236, 86, 124, 0.15);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    content: none;
}

.header-nav .nav-link::before {
    content: none;
}

.nav-link.active {
    color: #0f0f10 !important;
    background: #ec567c;
    box-shadow: 0 8px 20px rgba(236, 86, 124, 0.25);
}

.nav-link.active::after {
    content: none;
}

.nav-link--hot {
    color: #ff8aa2 !important;
    background: rgba(236, 86, 124, 0.18);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-icon span {
    width: 24px;
    height: 2px;
    background-color: #bbb;
    transition: all 0.2s ease;
}

.menu-icon:hover span {
    background-color: #ec567c;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, #101012 0%, #0c0c0d 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #1b1b1d;
}

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

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #1d1d1f;
}

.mobile-nav-header .logo svg {
    height: 30px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: #ec567c;
}

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

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: #d6d6d6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background: rgba(236, 86, 124, 0.14);
    border-color: rgba(236, 86, 124, 0.5);
}

.mobile-nav-link--hot {
    color: #ec567c !important;
}

/* ===========================
   Section & Heading
   =========================== */
.section-row {
    padding: 20px 0;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #232323;
}

/* Sort Dropdown */
.sort {
    position: relative;
}

.sort-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    cursor: pointer;
    padding: 8px 14px;
    background-color: #161617;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sort-title:hover {
    color: #fff;
    background-color: #232323;
}

.sort-title svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.sort-drop {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background-color: #161617;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 100;
    overflow: hidden;
    display: none;
}

.sort:hover .sort-drop {
    display: block;
}

.sort-drop a {
    display: block;
    padding: 10px 16px;
    color: #bbb;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sort-drop a:hover {
    color: #fff;
    background-color: #232323;
}

/* ===========================
   Video Grid - CSS Grid Layout
   =========================== */
.thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .thumbs {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
    .thumbs {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* Small Mobile - 1 column */
@media (max-width: 480px) {
    .thumbs {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ===========================
   Video Card - YouPorn Style
   =========================== */
.thumb {
    background-color: #161617 !important;
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.25s ease;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.thumb>a {
    display: block;
    text-decoration: none;
}

/* Thumbnail Image Container */
.thumb .img-holder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #0a0a0a;
}

.thumb .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb:hover .img-holder img {
    transform: scale(1.05);
}

/* Video Duration & Quality Badge */
.thumb .item-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.thumb .qualtiy {
    background-color: #ec567c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.thumb .time {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Video Title */
.thumb .title {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    position: static !important;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 12px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}

.thumb:hover .title {
    color: #ec567c !important;
}

/* Video Meta Info */
.thumb-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 0 12px 12px;
    border-top: 1px solid #232323;
    padding-top: 10px;
    margin-top: -2px;
}

.thumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #bbb;
    font-size: 12px;
}

.thumb-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.thumb-item i {
    display: flex;
    align-items: center;
}

.thumb-item-date {
    margin-left: auto;
}

/* Rating Color */
.thumb-item[style*="color: #10ec00b3"] {
    color: #8faf20 !important;
}

/* ===========================
   Pagination - YouPorn Style
   =========================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #161617;
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: #232323;
    color: #fff;
}

.pagination a.active {
    background-color: #ec567c !important;
    color: #fff !important;
}

.pagination .prev,
.pagination .next {
    padding: 0 16px;
    gap: 8px;
    font-weight: 500;
}

.pagination .prev svg,
.pagination .next svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #ec567c;
    color: #fff;
}

.pagination-ellipsis {
    background-color: transparent !important;
    color: #bbb !important;
    cursor: default;
    min-width: 30px;
}

/* ===========================
   Sidebar
   =========================== */
.sidebar {
    background-color: #161617;
    border-radius: 0;
    padding: 20px;
    border-bottom: 1px solid #232323;
}

.sidebar__item {
    margin-bottom: 24px;
}

.sidebar__item:last-child {
    margin-bottom: 0;
}

.sidebar .headline {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #232323;
}

.sidebar .headline h2 {
    margin: 0;
    font-size: 16px;
}

.sidebar .headline h2 a {
    color: #fff;
    text-decoration: none;
}

.sidebar .headline h2 a:hover {
    color: #ec567c;
}

.sidebar .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar .list li {
    padding: 8px 0;
    border-top: 1px solid #232323;
}

.sidebar .list li:first-child {
    border-top: none;
}

.sidebar .list li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.sidebar .list li a:hover {
    color: #ec567c;
}

/* ===========================
   Footer - YouPorn Style
   =========================== */
.footer {
    position: relative;
    background: #0b0b0c !important;
    padding: 44px 0 32px;
    margin-top: 40px;
    border-top: 1px solid #151516;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 120px at 15% 0%, rgba(236, 86, 124, 0.1), transparent 60%);
    pointer-events: none;
}

.footer .footer-inner {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px 28px;
    align-items: start !important;
    text-align: left !important;
    width: 100%;
    overflow: hidden;
}

.footer-col {
    min-width: 0;
    overflow: hidden;
}

.footer-brand {
    max-width: 100%;
    overflow: hidden;
}

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

.footer .logo {
    margin-bottom: 10px;
}

.footer .logo svg {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer .logo:hover svg {
    opacity: 1;
}

.footer-title {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6f6f70;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-list a {
    color: #d4d4d4 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #fff !important;
}

.footer-list a.active {
    color: #ec567c !important;
}

.footer .footer-tagline {
    color: #8c8c8c;
    font-size: 13px;
    line-height: 1.7;
    margin: 6px 0 16px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .footer .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-links {
        order: 1;
    }

    .footer-brand {
        order: 2;
    }
}

.footer-desc .copi {
    color: #7a7a7a;
    font-size: 12px;
}

.footer-desc .copi a {
    color: #c6c6c6;
    text-decoration: none;
}

.footer-desc .copi a:hover {
    color: #ec567c;
}

/* ===========================
   SEO Section
   =========================== */
.seo {
    background-color: #0a0a0a;
    padding: 30px 20px;
    margin-top: 30px;
    border-radius: 8px;
}

.seo h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.seo p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.seo p:last-child {
    margin-bottom: 0;
}

.seo a {
    color: #ec567c;
    text-decoration: none;
}

.seo a:hover {
    text-decoration: underline;
}

/* ===========================
   Scrollbar - YouPorn Style
   =========================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #161617;
}

::-webkit-scrollbar-thumb {
    background: #ec567c;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e33561;
}

/* ===========================
   Selection Highlight
   =========================== */
::selection {
    background-color: #ec567c;
    color: #fff;
}

::-moz-selection {
    background-color: #ec567c;
    color: #fff;
}

/* ===========================
   Mobile Responsive Fixes
   =========================== */
@media (max-width: 768px) {
    .header-holder .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-icon {
        display: flex;
        order: 1;
    }

    .header .logo {
        order: 2;
        flex: 1;
        min-width: 0;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 3;
        overflow: hidden;
    }

    .header .logo .js_logo_img {
        width: auto !important;
        max-width: 140px !important;
        height: auto !important;
        display: block;
    }

    .header-actions {
        order: 3;
    }

    .search {
        order: 4;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }

    .header-search-below {
        display: block;
        padding: 8px 0 10px;
    }

    .search-below-inner {
        min-height: 38px;
    }

    .header-holder .search {
        display: none;
    }

    .btn-mobile {
        display: none;
    }

    .header-nav .header-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .header-nav .header-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        white-space: nowrap;
        padding: 10px 12px !important;
        font-size: 13px;
    }

    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .heading .title {
        font-size: 18px;
    }

    .thumb .title {
        font-size: 13px;
        padding: 10px;
    }

    .thumb-bottom {
        padding: 0 10px 10px;
        gap: 8px;
    }

    .thumb-item {
        font-size: 11px;
    }

    .thumb-item-date {
        display: none;
    }

    .pagination {
        gap: 4px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-nav {
        gap: 6px 16px;
    }

    .footer-desc .desc-text {
        font-size: 12px;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-pink {
    color: #ec567c !important;
}

.bg-dark {
    background-color: #161617 !important;
}

.bg-darker {
    background-color: #000 !important;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thumb {
    animation: fadeIn 0.3s ease forwards;
}

.thumbs .thumb:nth-child(1) {
    animation-delay: 0.05s;
}

.thumbs .thumb:nth-child(2) {
    animation-delay: 0.1s;
}

.thumbs .thumb:nth-child(3) {
    animation-delay: 0.15s;
}

.thumbs .thumb:nth-child(4) {
    animation-delay: 0.2s;
}

.thumbs .thumb:nth-child(5) {
    animation-delay: 0.25s;
}

.thumbs .thumb:nth-child(6) {
    animation-delay: 0.3s;
}

.thumbs .thumb:nth-child(7) {
    animation-delay: 0.35s;
}

.thumbs .thumb:nth-child(8) {
    animation-delay: 0.4s;
}

/* ===========================
   Watch/View Page - YouPorn Style
   =========================== */

/* 2-Column Grid Layout */
.watch-contentWrapper {
    display: grid;
    justify-content: center;
    align-content: start;
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-gap: 16px;
    grid-template-rows: auto;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 1100px) {
    .watch-contentWrapper {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }
}

/* Left Column: Player Area */
.watch-contentWrapper .playWrapper {
    grid-column: 1;
    width: auto;
}

.watch-contentWrapper .video-wrapper {
    background-color: #000;
    border: 1px solid #2c2c2c;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.player-wrap {
    overflow: hidden;
    max-width: 100%;
}

.player-wrap iframe,
#ncp-container,
#ncp-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    overflow: hidden;
}

/* Video Feature / Metadata Panel */
.video-featureWrapper {
    padding: 20px 15px;
    margin-bottom: 0;
    background-color: #1b1b1b;
    border: 1px solid #2c2c2c;
    border-top: none;
}

.video-featureWrapper .videoTitle {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

/* Actions Row */
.video-actionsWrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 15px 0;
}

.action-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-section-right {
    gap: 15px;
}

.feature-action {
    cursor: pointer;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #999;
    background: none;
    border: none;
    font-size: 14px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.feature-action:hover {
    color: #ec567c;
    background: rgba(236, 86, 124, 0.1);
}

.feature-action i,
.feature-action .svg-icon {
    font-size: 1.1em;
    width: 18px;
    height: 18px;
}

.feature-actionViews {
    cursor: default;
    position: relative;
    padding-right: 15px;
}

.feature-actionViews::after {
    content: '';
    width: 1px;
    height: 20px;
    background: #444;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.videoLike:hover,
.videoLike.active {
    color: #4caf50 !important;
}

.videoDislike:hover,
.videoDislike.active {
    color: #f44336 !important;
}

/* Uploader Info */
.video-uploaderInfoWrapper {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.watchTopInfoPanelTable {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
}

#va-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.image-wrapper {
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.submitByLink {
    font-size: 1.1em;
    font-weight: 600;
}

.submitByLink a {
    color: #fff;
    text-decoration: none;
}

.submitByLink a:hover {
    color: #ec567c;
}

.subscribersInfo {
    color: #999;
    font-size: 13px;
    margin-top: 2px;
}

#subscriptionSection {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.metaDataSubscription {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    background: #ec567c;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.metaDataSubscription:hover {
    background: #e33561;
}

/* Video Description */
.video-description {
    margin-top: 15px;
}

.video-description .video-info {
    color: #999;
    font-size: 13px;
}

.video-description .video-info label {
    font-weight: 700;
    color: #bbb;
}

/* Tags Section */
.videoTags {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.video-tags-carousel .list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ec567c #1b1b1b;
}

.button.bubble-button {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.button.bubble-porntag {
    color: #ddd;
    background-color: #1b1b1b;
    border: 1px solid #444;
}

.button.bubble-porntag:hover {
    color: #fff;
    border-color: #ec567c;
    background: rgba(236, 86, 124, 0.15);
}

/* Feature Tabs */
.feature-tabsWrapper {
    display: flex;
    width: 100%;
    gap: 4px;
    margin-top: 16px;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 0;
}

.feature-tabsWrapper .feature-tab {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-align: center;
    text-transform: capitalize;
    border: none;
    border-radius: 4px 4px 0 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, background 0.2s;
}

.feature-tabsWrapper .feature-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.feature-tabsWrapper .feature-tab.active {
    color: #fff;
    background-color: #1b1b1b;
    border-bottom: 2px solid #ec567c;
    margin-bottom: -2px;
}

.feature-tabsWrapper .feature-tab i,
.feature-tabsWrapper .feature-tab .svg-icon {
    width: 16px;
    height: 16px;
}

/* Block Tabs Content */
.block-tabs {
    background: #1b1b1b;
    padding: 16px;
    border-radius: 0 0 4px 4px;
    margin-bottom: 20px;
}

.block-tabs .tab-content {
    animation: fadeIn 0.2s ease;
}

/* Related Videos - 3-column Grid */
.three-thumbs-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.three-thumbs-row .thumb {
    width: 100% !important;
    margin: 0 !important;
}

.three-thumbs-row .thumb .img-holder {
    aspect-ratio: 16 / 9;
}

.three-thumbs-row .thumb .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column */
.right-col {
    grid-row-start: 1;
    grid-row-end: 4;
    width: 300px;
    grid-column: 2;
}

.right-col .right-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 16px;
}

/* Recommended videos in sidebar */
.recommended-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    grid-template-columns: unset !important;
}

.recommended-thumb-item {
    width: 100% !important;
    margin: 0 !important;
}

.recommended-thumb-item a {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
}

.recommended-thumb-item .img-holder {
    width: 160px !important;
    max-width: 160px !important;
    min-width: 160px !important;
    height: 90px !important;
    margin-right: 0 !important;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 0 !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

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

.recommended-thumb-item .thumb-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.recommended-thumb-item .thumb-info .title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word;
}

/* Share wrapper */
.share-video-wrapper {
    background: #0d0d0d;
    padding: 20px;
    border-radius: 4px;
}

.embed-header {
    color: #bbb;
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}

/* Screenshot box */
.block-screenshots.screen-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.screen-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ===========================
   Watch Page Responsive
   =========================== */
@media (max-width: 1024px) {
    .watch-contentWrapper {
        grid-template-columns: 1fr;
        padding: 0 8px;
    }

    .right-col {
        grid-column: 1;
        grid-row-start: auto;
        grid-row-end: auto;
        width: 100%;
        max-width: 100%;
    }

    .right-col .right-aside {
        position: static;
    }

    .three-thumbs-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommended-thumb-item .img-holder {
        width: 140px !important;
        max-width: 140px !important;
        min-width: 140px !important;
    }
}

@media (max-width: 640px) {
    .watch-contentWrapper {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .right-col {
        display: none !important;
    }

    .video-featureWrapper {
        padding: 15px 12px;
    }

    .video-featureWrapper .videoTitle {
        font-size: 1.2em;
        word-break: break-word;
    }

    .video-actionsWrapper {
        flex-wrap: wrap;
        gap: 8px;
    }

    .feature-tabsWrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .feature-tabsWrapper .feature-tab {
        white-space: nowrap;
        font-size: 12px;
        padding: 8px 12px;
    }

    .three-thumbs-row {
        grid-template-columns: 1fr;
    }

    .watchTopInfoPanelTable {
        flex-wrap: wrap;
    }

    .recommended-thumb-item .img-holder {
        width: 120px !important;
        max-width: 120px !important;
        min-width: 120px !important;
        height: 68px !important;
    }

    .recommended-thumb-item .thumb-info .title {
        font-size: 12px !important;
    }

    .video-wrapper,
    .player-wrap,
    .film-servers,
    .video-featureWrapper,
    .block-tabs {
        width: 100%;
        max-width: 100%;
    }
}

/* ===========================
   Favorite Button - View Page
   =========================== */
.featureFavorite {
    transition: all 0.2s ease;
}

.featureFavorite:hover {
    color: #ec567c;
}

.featureFavorite.favorited {
    color: #ec567c !important;
}

.featureFavorite.favorited .svg-icon {
    fill: #ec567c;
}

.featureFavorite.loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 480px) {
    .header .logo .js_logo_img {
        max-width: 115px !important;
    }
}