:root {
    --gold-light: rgb(232, 181, 70);
    --gold-classic: rgb(232, 181, 70);
    --gold-dark: #B59410;
    --penthouse-black: #0c0c0c;
    --penthouse-white: #ffffff;
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    font-size: 18px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: #000;
    padding: 0;
    z-index: 999;
    border-right: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    padding: 20px;
    padding-bottom: 12px;
    padding-top: 12px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-logo img {
    max-width: 100%;
    height: auto;
}

.sidebar-menu-wrapper {
    padding: 15px 0;
}

.sidebar-nav-item {
    background-color: transparent;
    border-radius: 8px;
    margin: 4px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-nav-item.active {
    background: linear-gradient(90deg, rgba(232, 181, 70, 0.15) 0%, rgba(232, 181, 70, 0.05) 100%);
}

.sidebar-nav-link {
    color: #b4b4b4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.sidebar-nav-item.active .sidebar-nav-link {
    color: var(--penthouse-white);
}

.sidebar-nav-link i {
    width: 20px;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
}

.sidebar-nav-item.active .sidebar-nav-link i {
    color: var(--gold-classic);
}

/* Accordion styles */
.sidebar .accordion,
.offcanvas-body .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    margin: 0 12px;
}

.sidebar .accordion-item,
.offcanvas-body .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 8px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.sidebar .accordion-item:hover,
.offcanvas-body .accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar .accordion-item.active,
.offcanvas-body .accordion-item.active {
    background: linear-gradient(90deg, rgba(232, 181, 70, 0.15) 0%, rgba(232, 181, 70, 0.05) 100%);
}

.sidebar .accordion-button,
.offcanvas-body .accordion-button {
    background-color: transparent;
    color: #b4b4b4;
    padding: 12px 16px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}

.sidebar .accordion-button:not(.collapsed),
.offcanvas-body .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--penthouse-white);
    box-shadow: none;
}

.sidebar .accordion-item.active .accordion-button,
.offcanvas-body .accordion-item.active .accordion-button {
    color: var(--penthouse-white);
}

.sidebar .accordion-button::after,
.offcanvas-body .accordion-button::after {
    margin-left: auto;
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    flex-shrink: 0;
}

.sidebar .accordion-button:not(.collapsed)::after,
.offcanvas-body .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8b546'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.sidebar .accordion-button i,
.offcanvas-body .accordion-button i {
    width: 20px;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
}

.sidebar .accordion-button:not(.collapsed) i,
.sidebar .accordion-item.active .accordion-button i,
.offcanvas-body .accordion-button:not(.collapsed) i,
.offcanvas-body .accordion-item.active .accordion-button i {
    color: var(--gold-classic);
}

.sidebar .accordion-body,
.offcanvas-body .accordion-body {
    padding: 4px 0 8px 0;
    background: transparent;
}

.sidebar .accordion-body .list-group,
.offcanvas-body .accordion-body .list-group {
    background: transparent;
    padding-left: 36px;
}

.sidebar .accordion-body .list-group-item,
.offcanvas-body .accordion-body .list-group-item {
    background: transparent;
    border: none;
    color: #888;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    margin: 2px 0;
}

.sidebar .accordion-body .list-group-item.active,
.offcanvas-body .accordion-body .list-group-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--penthouse-white);
}

.sidebar .accordion-body .list-group-item:hover,
.offcanvas-body .accordion-body .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--penthouse-white);
}


.top-categories {
    padding: 20px;
    border-top: 1px solid #1a1a1a;
    overflow-y: auto;
    max-height: 500px;
    flex: 1;
}

.top-categories::-webkit-scrollbar {
    width: 4px;
}

.top-categories::-webkit-scrollbar-thumb {
    background: rgba(232, 181, 70, 0.3);
    border-radius: 4px;
}

.top-categories h5 {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.category-sidebar-card {
    position: relative;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-sidebar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
    z-index: 0;
}

.category-sidebar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.category-sidebar-card:hover img {
    transform: scale(1.15);
}

.category-sidebar-card:hover {
    border-color: var(--gold-classic);
    box-shadow: 0 4px 12px rgba(232, 181, 70, 0.3);
}

.category-sidebar-info {
    position: relative;
    z-index: 2;
}

.category-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--penthouse-white);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.category-sidebar-count {
    font-size: 14px;
    color: var(--gold-classic);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #1a1a1a;
    background: #000;
    flex-shrink: 0;
}

.sidebar-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-footer-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.sidebar-footer-link:hover {
    color: var(--gold-classic);
}

.sidebar-footer-copyright {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    font-size: 11px;
    color: #444;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    padding: 0;
    min-height: 100vh;
}

/* Top Navbar */
.top-nav {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 40px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 998;
}

.nav-tabs-custom {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    display: inline-flex;
    gap: 5px;
    text-transform: uppercase;
    border: 0;
}

.nav-tabs-custom .nav-link {
    color: #999;
    padding: 8px 25px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 500;
    border: none;
}

.nav-tabs-custom .nav-link.active {
    background: rgba(232, 181, 70, 0.1);
    color: var(--gold-classic);
    font-weight: 700;
}

.nav-tabs-custom .nav-link:hover:not(.active) {
    color: var(--gold-classic);
    background: rgba(232, 181, 70, 0.1);
}

.btn-furner-primary {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    padding: 10px 28px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.btn-furner-primary:hover {
    opacity: 0.9;
    box-shadow: 0 5px 20px rgba(232, 181, 70, 0.4);
    color: #000;
}

.btn-custom--search {
    background: none;
    border: none;
    color: var(--gold-classic);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.btn-custom--search:hover {
    opacity: 0.7;
}

.language-selector .btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--penthouse-white);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.language-selector .btn:hover {
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

.language-selector .dropdown-menu {
    background: var(--penthouse-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.language-selector .dropdown-item {
    color: var(--penthouse-white);
    font-size: 0.85rem;
    padding: 8px 16px;
}

.language-selector .dropdown-item:hover {
    background: rgba(232, 181, 70, 0.2);
    color: var(--gold-classic);
}

.btn-mobile-menu {
    background: none;
    border: none;
    color: var(--penthouse-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: var(--penthouse-black);
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%),
        linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 800px;
}

.thumbnails-row {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.thumbnail-item {
    width: 120px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--gold-classic);
    opacity: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--penthouse-white);
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
    align-items: center;
}

.hero-meta span {
    font-size: 16px;
    color: #999;
}

.hero-meta .rating {
    color: var(--gold-classic);
    font-size: 16px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #ffff;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-watch {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    padding: 16px 45px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-watch:hover {
    box-shadow: 0 5px 20px rgba(232, 181, 70, 0.4);
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--penthouse-white);
}

.section-description {
    font-size: 16px;
    color: #999;
    margin-top: 8px;
}

/* Unified Card Styles */
.content-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    border: 1px solid transparent;
    height: 100%;
}

.content-card:hover {
    border-color: var(--gold-classic);
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.3);

}

.content-poster {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #000;
}

.content-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
    z-index: 1;
}

.content-poster video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.content-card:hover .content-poster img {
    transform: scale(1.1);
    opacity: 1;
}

.content-card:hover .content-poster video {
    opacity: 1;
}

.content-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-card:hover .content-poster::after {
    opacity: 0;
}

.content-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--penthouse-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-info {
    padding: 18px;
    background: #040404;
}

.content-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--penthouse-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-description {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 10px;
}

.content-rating {
    color: var(--gold-classic);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.content-rating i {
    font-size: 12px;
}

.content-duration {
    font-size: 13px;
    color: #666;
}

/* Category Card Styles */
.category-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(0, 0, 0, 1);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 0.3;
}

.category-card:hover {
    border-color: var(--gold-classic);
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.3);

}

.category-info {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--penthouse-white);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.category-count {
    font-size: 15px;
    color: var(--gold-classic);
    font-weight: 600;
}

/* Offcanvas */
.offcanvas {
    background-color: #000;
    border-right: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.offcanvas-header {
    border-bottom: 1px solid #1a1a1a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--penthouse-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-classic);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1279.98px) {
    .btn-mobile-menu {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1050;
    }

    .main-content {
        margin-left: 0;
    }

    .top-nav {
        padding: 12px 15px;
    }

    .nav-tabs-custom {
        display: none;
    }

    .hero-section {
        height: 450px;
    }

    .hero-content {
        left: 20px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 42px;
    }


    .category-card {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 32px;
    }

   

    .category-card {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 300px;
    }

    .hero-title {
        font-size: 28px;
    }

    .thumbnails-row {
        display: none;
    }

    .content-poster {
        height: 240px;
    }

    .category-card {
        height: 180px;
    }
}


/* Modal Styles */
.modal-content {
    background: #0a0a0a !important;
    border: 1px solid #1a1a1a !important;
    color: #fff !important;
    border-radius: 6px;
}

.modal-header {
    border-bottom: 1px solid #1a1a1a !important;
    padding: 24px 30px;
}

.modal-title {
    color: var(--gold-classic) !important;
    font-family: var(--font-display) !important;
    font-size: 24px !important;
    font-weight: 700;
}

.modal-title i {
    margin-right: 12px;
}

.modal-body {
    padding: 30px;
    font-size: 16px;
}

.modal .nav-tabs {
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 25px;
}

.modal .nav-tabs .nav-link {
    color: #666;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.modal .nav-tabs .nav-link:hover {
    color: var(--gold-classic);
    border-bottom-color: rgba(232, 181, 70, 0.3);
}

.modal .nav-tabs .nav-link.active {
    color: var(--gold-classic);
    background: transparent;
    border-bottom-color: var(--gold-classic);
}

.modal .tab-content {
    padding: 10px 0;
}

.modal .info-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #1a1a1a;
}

.modal .info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal .info-section h6 {
    color: var(--gold-classic);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.modal .info-section p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal .info-section a {
    color: var(--gold-classic);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    display: inline-block;
    margin-top: 8px;
}

.modal .info-section a:hover {
    opacity: 0.8;
}

.modal .info-section a i {
    margin-right: 8px;
}

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

.modal .menu-list li {
    margin-bottom: 15px;
}

.modal .menu-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
}

.modal .menu-list a:hover {
    background: rgba(232, 181, 70, 0.1);
    color: var(--gold-classic);
}

.modal .menu-list a i {
    width: 24px;
    margin-right: 12px;
    color: var(--gold-classic);
}

/* ========================================
   PAGINATION STYLES - PENTHOUSE GOLD
   ======================================== */

/* Pagination Container */
.pagination-custom {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-custom .page-item {
    display: flex;
}

/* Base Page Link Styles */
.pagination-custom .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Previous Button - Redondeado MÁS a la IZQUIERDA */
.pagination-custom .page-link-prev {
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    padding-left: 18px;
    padding-right: 16px;
    min-width: auto;
}

/* Next Button - Redondeado MÁS a la DERECHA */
.pagination-custom .page-link-next {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    padding-left: 16px;
    padding-right: 18px;
    min-width: auto;
}

/* Hover State */
.pagination-custom .page-link:hover {
    color: var(--gold-classic);
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
}

/* Focus State */
.pagination-custom .page-link:focus {
    box-shadow: 0 0 0 3px rgba(232, 181, 70, 0.2);
    outline: none;
}

/* Active State */
.pagination-custom .page-item.active .page-link {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    border-color: var(--gold-classic);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 181, 70, 0.3);
}

.pagination-custom .page-item.active .page-link:hover {
    transform: none;
    opacity: 0.9;
}

/* Disabled State */
.pagination-custom .page-item.disabled .page-link {
    color: #444;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-custom .page-item.disabled .page-link:hover {
    color: #444;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    transform: none;
}

/* Dots */
.pagination-custom .page-link.dots {
    cursor: default;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
}

.pagination-custom .page-link.dots:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
}

/* Icons */
.pagination-custom .page-link i {
    font-size: 14px;
}

/* ========================================
   JUMP TO PAGE SECTION
   ======================================== */

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

.pagination-jump-group {
    max-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pagination-jump-group .input-group-text {
    background: transparent;
    border: none;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
}

.pagination-jump-group .form-control {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--penthouse-white);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
}

.pagination-jump-group .form-control:focus {
    background: rgba(232, 181, 70, 0.05);
    color: var(--penthouse-white);
    box-shadow: none;
}

.pagination-jump-group .form-control::placeholder {
    color: #666;
}

/* Remove number input arrows */
.pagination-jump-group .form-control::-webkit-outer-spin-button,
.pagination-jump-group .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pagination-jump-group .form-control[type=number] {
    -moz-appearance: textfield;
}

/* Go Button */
.btn-pagination-go {
    background: transparent;
    border: none;
    color: var(--gold-classic);
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pagination-go:hover {
    background: rgba(232, 181, 70, 0.1);
    color: var(--gold-light);
}

.btn-pagination-go:focus {
    box-shadow: none;
    outline: none;
}

/* ========================================
   PAGINATION INFO
   ======================================== */

.pagination-info {
    font-size: 14px;
}

.pagination-info .text-gold {
    color: var(--gold-classic);
    font-weight: 600;
}

.pagination-info .text-muted {
    color: #999;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 767.98px) {
    .pagination-custom {
        gap: 6px;
    }

    .pagination-custom .page-link {
        min-width: 40px;
        height: 40px;
        padding: 6px 10px;
        font-size: 14px;
    }

    .pagination-custom .page-link-prev {
        border-top-left-radius: 22px !important;
        border-bottom-left-radius: 22px !important;
        padding-left: 16px;
        padding-right: 14px;
    }

    .pagination-custom .page-link-next {
        border-top-right-radius: 22px !important;
        border-bottom-right-radius: 22px !important;
        padding-left: 14px;
        padding-right: 16px;
    }

    .pagination-jump-group {
        max-width: 100%;
    }

    .pagination-jump-group .input-group-text,
    .pagination-jump-group .form-control,
    .btn-pagination-go {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .pagination-custom .page-link {
        min-width: 36px;
        height: 36px;
        padding: 4px 8px;
        font-size: 13px;
    }

    .pagination-custom .page-link-prev {
        border-top-left-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
        padding-left: 14px;
        padding-right: 12px;
    }

    .pagination-custom .page-link-next {
        border-top-right-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
        padding-left: 12px;
        padding-right: 14px;
    }
    
    /* Hide some page numbers on mobile */
    .pagination-custom .page-item:nth-child(n+6):nth-child(-n+8) {
        display: none;
    }
}

/* ========================================
   DETAIL PAGE STYLES
   ======================================== */

/* Detail Hero Section */
.detail-hero-section {
    position: relative;
    padding: 60px 0 0px;
    margin-bottom: 40px;
}

.detail-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    overflow: hidden;
    z-index: 0;
}

.detail-hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 50%,
        rgb(10, 10, 10) 100%);
    z-index: 1;
}

.detail-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px);
    transform: scale(1.1);
}

.detail-hero-section .row {
    position: relative;
    z-index: 2;
}

/* Detail Poster */
.detail-poster-container {
    position: relative;
    margin-bottom: 30px;
}

.detail-poster {
    text-align: center;
   
}

.detail-poster img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 400px;
    margin: auto;
}

.btn-play-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.4);
}

.btn-play-detail:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(232, 181, 70, 0.6);
}

/* Detail Info */
.detail-info-container {
    padding: 20px 0;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.detail-breadcrumb a {
    color: var(--gold-classic);
    text-decoration: none;
    transition: opacity 0.3s;
}

.detail-breadcrumb a:hover {
    opacity: 0.7;
}

.detail-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--penthouse-white);
    margin-bottom: 15px;
    line-height: 1.1;
}

.detail-badge-pet {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    color:  var(--penthouse-white);;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #999;
}

.detail-rating {
    color: var(--gold-classic);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-divider {
    color: #444;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.detail-tabs {
    gap: 50px!important;
}

.detail-tags .tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--penthouse-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    cursor: pointer;
}

.detail-tags .tag:hover {
    background: rgba(232, 181, 70, 0.2);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

.detail-description {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

/* Model Stats Grid */
.model-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-stat {
    text-align: center;
}

.model-stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.model-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-classic);
}

/* Detail Actions */
.detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action-primary {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
}

.btn-action-primary:hover {
    box-shadow: 0 6px 20px rgba(232, 181, 70, 0.4);
}

.btn-action-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--penthouse-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

/* Detail Tabs */
.detail-tabs-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.detail-tabs {
    border-bottom: none;
    gap: 30px;
}

.detail-tabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #999;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 0;
}

.detail-tabs .nav-link:hover {
    color: var(--gold-classic);
    border-bottom-color: rgba(232, 181, 70, 0.3);
}

.detail-tabs .nav-link.active {
    color: var(--gold-classic);
    border-bottom-color: var(--gold-classic);
    background: transparent;
}

/* Play Overlay for Scenes */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-classic);
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    padding-left: 4px;
}

.content-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .detail-title {
        font-size: 42px;
    }

    .model-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-poster {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .detail-hero-section {
        padding: 40px 0 30px;
    }

    .detail-title {
        font-size: 32px;
    }

    .detail-description {
        font-size: 15px;
    }

    .model-stats-grid {
        padding: 20px;
        gap: 15px;
    }

    .model-stat-value {
        font-size: 18px;
    }

    .detail-tabs {
        gap: 15px;
    }

    .detail-tabs .nav-link {
        font-size: 15px;
        padding: 12px 0;
    }
}

@media (max-width: 575.98px) {
    .detail-title {
        font-size: 28px;
    }

    .btn-play-detail {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .model-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .model-stat-label {
        font-size: 11px;
    }

    .model-stat-value {
        font-size: 16px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }
}




/* ============================================
   ESTILOS PARA SECCIÓN DE COMENTARIOS
   ============================================ */

/* Encabezado */
.comments-header {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comments-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--penthouse-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comments-title i {
    color: var(--gold-classic);
}

.comments-count {
    font-size: 1.5rem;
    color: #999;
    font-weight: 400;
}

.comments-subtitle {
    color: #aaa;
    font-size: 1.1rem;
}

/* Formulario */
.comment-form-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid rgba(232, 181, 70, 0.3);
    margin-bottom: 3rem;
}

.comment-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comment-form-header .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.comment-form-header h5 {
    color: var(--penthouse-white);
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.comment-form-header p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
}

.comment-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--penthouse-white);
    padding: 1rem;
    resize: none;
    font-family: var(--font-primary);
}

.comment-textarea:focus {
    border-color: var(--gold-classic);
    outline: none;
}

.comment-textarea::placeholder {
    color: #666;
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.comment-form-tools {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: rgba(232, 181, 70, 0.2);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

.btn-submit-comment {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-comment:hover {
    opacity: 0.9;
    box-shadow: 0 5px 20px rgba(232, 181, 70, 0.4);
}

/* Filtros */
.comments-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0.6rem 1.5rem;
    color: #aaa;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    border-color: var(--gold-classic);
    color: #000;
}

/* Lista de Comentarios */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(232, 181, 70, 0.2);
}

.comment-item.featured {
    background: linear-gradient(135deg, rgba(232, 181, 70, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    border: 2px solid rgba(232, 181, 70, 0.3);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-avatar.premium {
    border: 2px solid var(--gold-classic);
}

.premium-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid #1a1a1a;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.comment-author {
    color: var(--penthouse-white);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0.5rem 0 0;
    display: inline;
}

.badge-premium,
.badge-verified,
.badge-member {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
    margin-right: 0.5rem;
}

.badge-premium {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
}

.badge-verified {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-member {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.comment-time {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.comment-text {
    color: #ddd;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-comment-action:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-classic);
}

.btn-comment-action.liked {
    color: #ef4444;
}

/* Respuestas */
.comment-reply {
    margin-top: 1rem;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(232, 181, 70, 0.2);
    display: flex;
    gap: 1rem;
}

.comment-reply .comment-avatar {
    width: 40px;
    height: 40px;
}

/* Botón Cargar Más */
.btn-load-more {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(232, 181, 70, 0.3);
    border-radius: 12px;
    padding: 1rem 2.5rem;
    color: var(--gold-classic);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
    box-shadow: 0 5px 20px rgba(232, 181, 70, 0.3);
}

.btn-load-more span {
    color: #888;
    font-weight: 400;
}

/* Call to Action */
.comments-cta {
    background: rgba(0, 0, 0, 1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(232, 181, 70, 0.3);
    margin-top: 3rem;
}

.comments-cta i {
    font-size: 3rem;
    color: var(--gold-classic);
    margin-bottom: 1rem;
}

.comments-cta h3 {
    color: var(--penthouse-white);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comments-cta p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-join {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-join:hover {
    opacity: 0.9;
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.4);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comment-form-card {
        padding: 1.5rem;
    }
    
    .comment-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-submit-comment {
        justify-content: center;
        width: 100%;
    }
    
    .comment-item {
        padding: 1rem;
    }
    
    .comment-reply {
        margin-left: 0;
    }
    
    .comments-cta {
        padding: 2rem 1rem;
    }
    
    .comments-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
    
    .comment-reply {
        padding-left: 0.5rem;
    }
    
    .comment-reply .comment-avatar {
        width: 35px;
        height: 35px;
    }
}



/* ============================================
   SCENE DETAIL PAGE STYLES
   ============================================ */

/* Video Player Wrapper */
.video-player-wrapper {
    
}

.video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-player:hover .video-overlay {
    opacity: 1;
}

.btn-play-video {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.4);
}

.btn-play-video:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(232, 181, 70, 0.6);
}

.video-badge-quality {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--gold-classic);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
}

.video-badge-members {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(232, 181, 70, 0.9);
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 4;
}

.video-player:hover .video-controls {
    opacity: 1;
}

.video-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold-classic);
    border-radius: 2px;
    transition: width 0.1s;
}

.video-controls-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-video-control {
    background: transparent;
    border: none;
    color: var(--penthouse-white);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.btn-video-control:hover {
    color: var(--gold-classic);
}

.video-time {
    color: var(--penthouse-white);
    font-size: 14px;
    font-weight: 500;
}

.spacer {
    flex: 1;
}

/* Scene Info Section */
.scene-info-section {
    background: rgba(0, 0, 0, 1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #1a1a1a;
}

.scene-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.scene-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--penthouse-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.scene-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #999;
}

.scene-rating,
.scene-views,
.scene-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scene-rating {
    color: var(--gold-classic);
}

.scene-divider {
    color: #444;
}

.scene-actions {
    display: flex;
    gap: 10px;
}

.btn-scene-action {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-scene-action:hover {
    background: rgba(232, 181, 70, 0.2);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

/* Description */
.scene-description {
    margin-bottom: 2rem;
}

.scene-description p {
    color: #ddd;
    line-height: 1.8;
}

/* Tags Section */
.scene-tags-section {
    margin-bottom: 2rem;
}

.scene-tags-section h5 {
    color: var(--gold-classic);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scene-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scene-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.scene-tag:hover {
    background: rgba(232, 181, 70, 0.2);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

/* Featured Models */
.featured-models-section {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-models-section h5 {
    color: var(--gold-classic);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.featured-model-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.featured-model-card:hover {
    border-color: var(--gold-classic);
}

.featured-model-card img {  
    width: 100%;
    object-fit: cover;
}

.featured-model-info {
    padding: 1rem;
    text-align: center;
}

.featured-model-info h6 {
    color: var(--penthouse-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.featured-model-info span {
    color: var(--gold-classic);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Downloads Section */
.downloads-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.downloads-section h5 {
    color: var(--gold-classic);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-download {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(232, 181, 70, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--penthouse-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-download:hover {
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
}

.btn-download i {
    color: var(--gold-classic);
    font-size: 18px;
}

.download-badge {
    margin-left: auto;
    background: var(--gold-classic);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* Related Scenes Sidebar */
.related-scenes-sidebar {
    background: rgba(0, 0, 0, 1);
    border-radius: 12px;
    padding: 1.5rem;
        border: 1px solid #1a1a1a;

    max-height: 800px;
    overflow-y: auto;
}

.related-scenes-sidebar::-webkit-scrollbar {
    width: 6px;
}

.related-scenes-sidebar::-webkit-scrollbar-thumb {
    background: rgba(232, 181, 70, 0.3);
    border-radius: 3px;
}

.sidebar-section-title {
    color: var(--gold-classic);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(232, 181, 70, 0.3);
}

.related-scene-card {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.related-scene-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-scene-card:hover {
    opacity: 0.8;
}

.related-scene-thumb {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.related-scene-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.related-scene-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--penthouse-white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.related-scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.related-scene-card:hover .related-scene-overlay {
    opacity: 1;
}

.related-scene-overlay i {
    color: var(--gold-classic);
    font-size: 24px;
}

.related-scene-info {
    flex: 1;
}

.related-scene-info h6 {
    color: var(--penthouse-white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.related-scene-info p {
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-scene-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #666;
}

.related-scene-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-scene-meta i {
    font-size: 10px;
}

/* Promotional Banner Sidebar */
.promo-banner-sidebar {
    background: linear-gradient(135deg, #000 0%, #181818 100%);
    border-radius: 12px;
    border: 2px solid rgba(232, 181, 70, 1);
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.promo-banner-content {
    padding: 2rem;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: var(--gold-classic);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.promo-banner-content h3 {
    color: var(--penthouse-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.promo-banner-content p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.promo-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.promo-benefits li {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.promo-benefits li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-classic);
    font-size: 14px;
}

.btn-promo-join {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-promo-join:hover {
    opacity: 0.9;
    box-shadow: 0 8px 24px rgba(232, 181, 70, 0.4);
    color: #000;
}

/* Responsive */
@media (max-width: 991.98px) {
    .scene-title {
        font-size: 1.5rem;
    }

    .scene-header {
        flex-direction: column;
    }

    .scene-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .featured-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .related-scenes-sidebar {
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .scene-info-section {
        padding: 1.5rem;
    }

    .scene-title {
        font-size: 1.3rem;
    }

    .btn-play-video {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .featured-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-scene-thumb {
        width: 100px;
    }

    .promo-banner-content {
        padding: 1.5rem;
    }

    .promo-banner-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .scene-title {
        font-size: 1.1rem;
    }

    .scene-meta {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .btn-scene-action {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .related-scene-thumb {
        width: 80px;
    }

    .related-scene-info h6 {
        font-size: 12px;
    }

    .related-scene-info p {
        font-size: 11px;
    }
}

/* ============================================
   DROPDOWN STYLES - PENTHOUSE GOLD
   ============================================ */

/* Dropdown Button */
.dropdown .btn,
.dropdown button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--penthouse-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown .btn:hover,
.dropdown button:hover {
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
}

.dropdown .btn:focus,
.dropdown button:focus {
    background: rgba(232, 181, 70, 0.1);
    border-color: var(--gold-classic);
    color: var(--gold-classic);
    box-shadow: 0 0 0 3px rgba(232, 181, 70, 0.2);
}

.dropdown .btn i,
.dropdown button i {
    font-size: 14px;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
    margin-left: 8px;
    border-top-color: currentColor;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    background: #1a1a1a;
    border: 1px solid rgba(232, 181, 70, 0.3);
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    min-width: 200px;
}

/* Dropdown Items */
.dropdown-item {
    color: #ccc;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    width: 20px;
    color: var(--gold-classic);
    font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(232, 181, 70, 0.15);
    color: var(--gold-classic);
}

.dropdown-item.active,
.dropdown-item:active {
    background: linear-gradient(135deg, var(--gold-classic), var(--gold-light));
    color: #000;
    font-weight: 700;
}

/* Dropdown Divider */
.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Dropdown Header */
.dropdown-header {
    color: var(--gold-classic);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px 8px;
}

/* Language Selector Specific */
.language-selector .btn {
    min-width: 80px;
    justify-content: center;
}

.language-selector .dropdown-menu {
    min-width: 80px;
}

/* Small Dropdown Button */
.btn-sm.dropdown-toggle {
    padding: 8px 16px;
    font-size: 14px;
}

/* Dropdown in Filter Bar */
.filter-bar .dropdown .btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Dropdown Show State */
.dropdown-menu.show {
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Dark Theme (for modals) */
.modal .dropdown-menu {
    background: #0a0a0a;
    border-color: rgba(232, 181, 70, 0.2);
}

.modal .dropdown-item {
    color: #aaa;
}

.modal .dropdown-item:hover {
    background: rgba(232, 181, 70, 0.1);
    color: var(--gold-classic);
}

/* Dropdown End Alignment */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Dropdown with Icons */
.dropdown-item-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-item-icon i {
    width: 24px;
    text-align: center;
}

/* Dropdown Scrollable (for long lists) */
.dropdown-menu-scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-menu-scrollable::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.dropdown-menu-scrollable::-webkit-scrollbar-thumb {
    background: rgba(232, 181, 70, 0.3);
    border-radius: 3px;
}

.dropdown-menu-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(232, 181, 70, 0.5);
}

/* Responsive - Mobile */
@media (max-width: 767.98px) {
    .dropdown .btn,
    .dropdown button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .dropdown-item {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* Dropdown in Top Nav */
.top-nav .dropdown .btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-nav .dropdown .btn:hover {
    border-color: var(--gold-classic);
}

/* Multi-level Dropdown Support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 8px;
}

/* Dropdown with Badge */
.dropdown-item .badge {
    margin-left: auto;
    background: var(--gold-classic);
    color: #000;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
}

/* Dropdown Loading State */
.dropdown-item.disabled {
    color: #555;
    pointer-events: none;
    cursor: not-allowed;
}

.dropdown-item.disabled:hover {
    background: transparent;
}