/* Double Range Slider Styles */
.double-range-slider {
    position: relative;
    width: 100%;
    min-width: 160px;
    margin: 20px 0;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.range-selected {
    position: absolute;
    height: 100%;
    background: #666;
    border-radius: 3px;
}

.range-input {
    position: relative;
    width: 100%;
}

.range-input input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: -6px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-input input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-input input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #888;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.rating-value-container {
    margin-top: 0;
    text-align: center;
}

.double-range-textfield {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.filter-label svg {
    flex-shrink: 0;
}

.rating-range-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    flex: 0 0 auto;
    width: 40px;
    line-height: 1.1;
}

.rating-range-text:first-child {
    text-align: left;
}

/* Load More Button */
.load-more-btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.load-more-btn:hover {
    background: #555;
}

.load-more-btn:active {
    background: #222;
}

/* Navigation Styles */
.gh-navigation {
    height: 80px;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    transition: height 0.3s ease;
}

.gh-navigation.is-scrolled {
    height: 60px;
}

.gh-navigation,
.gh-navigation * {
    color: #fff;
}

.gh-navigation a {
    color: #fff;
}

.gh-navigation a:hover {
    opacity: 0.8;
}

/* Custom Layout: Logo Left, Menu Center, Actions Right */
.gh-navigation.custom-layout .gh-navigation-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.gh-navigation.custom-layout .gh-navigation-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.gh-navigation.custom-layout .gh-navigation-logo {
    display: flex;
    align-items: center;
}

.gh-navigation.custom-layout .gh-navigation-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.gh-navigation.is-scrolled .gh-navigation-logo img {
    height: 35px;
}

.gh-navigation.custom-layout .gh-navigation-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 auto;
}

.gh-navigation.custom-layout .gh-navigation-menu .nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    z-index: 1;
}

.nav-item-dropdown:hover {
    z-index: 1001;
}

.nav-item-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-item-dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Two column layout for Movies and TV Series dropdowns */
.nav-item-dropdown:nth-child(1) .nav-dropdown,
.nav-item-dropdown:nth-child(2) .nav-dropdown {
    min-width: 400px;
}

.nav-item-dropdown:nth-child(1) .nav-dropdown-list,
.nav-item-dropdown:nth-child(2) .nav-dropdown-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* First two items (All Movies/All Movie Genres and All TV Series/All TV Genres) stay in their columns */
.nav-item-dropdown:nth-child(1) .nav-dropdown-list li:first-child,
.nav-item-dropdown:nth-child(2) .nav-dropdown-list li:first-child {
    grid-column: 1;
}

.nav-item-dropdown:nth-child(1) .nav-dropdown-list li:nth-child(2),
.nav-item-dropdown:nth-child(2) .nav-dropdown-list li:nth-child(2) {
    grid-column: 2;
}

/* Border under both first items */
.nav-item-dropdown:nth-child(1) .nav-dropdown-list li:first-child a,
.nav-item-dropdown:nth-child(2) .nav-dropdown-list li:first-child a,
.nav-item-dropdown:nth-child(1) .nav-dropdown-list li:nth-child(2) a,
.nav-item-dropdown:nth-child(2) .nav-dropdown-list li:nth-child(2) a {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

.nav-dropdown-list li {
    margin: 0;
}

.nav-dropdown-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.95rem;
    margin: 0;
}

.nav-dropdown-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.nav-dropdown-list li:first-child a {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

/* Custom scrollbar for dropdown */
.nav-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

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

.nav-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.nav-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gh-navigation-menu,
.gh-navigation-members {
    font-size: 1.1rem;
}

.gh-navigation.custom-layout .gh-navigation-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    background-color: transparent;
}

.gh-navigation-members {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gh-navigation svg {
    stroke: #fff;
    fill: #fff;
}

.gh-button {
    color: #fff;
    background: #e50914;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.gh-button:hover {
    background: #b20710;
    opacity: 1;
}

/* Hamburger Menu Styles */
.gh-burger {
    width: 48px !important;
    height: 48px !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gh-burger svg {
    width: 32px !important;
    height: 32px !important;
}

/* Search Icon Positioning on Mobile */
@media (max-width: 768px) {
    .gh-navigation-actions {
        position: absolute !important;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show search icon on mobile */
    .gh-navigation-actions .gh-search {
        display: flex !important;
    }
    
    /* Hide search when menu is open */
    .gh-navigation.is-open .gh-navigation-actions {
        display: none !important;
    }
}

/* Mobile Only Navigation Items */
.mobile-only-nav {
    display: none;
}

/* Mobile Navigation Styles (512px and below) */
@media (max-width: 768px) {
    /* Hide the ::after arrow on mobile */
    .nav-item-dropdown > a::after {
        display: none !important;
    }
    
    /* Show dropdown when open */
    .nav-item-dropdown.dropdown-open .nav-dropdown {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Arrow and close text container */
    .nav-item-dropdown > a .dropdown-arrow {
        margin-left: auto;
        font-size: 0.9rem;
    }
    
    /* Hide close text by default */
    .nav-item-dropdown > a .close-submenu-text {
        display: none;
        margin-left: 0.5rem;
        font-size: 1rem;
    }
    
    /* Show close text when dropdown is open */
    .nav-item-dropdown.dropdown-open > a .close-submenu-text {
        display: inline;
    }
    
    /* Close button styling when menu is open */
    .gh-navigation.is-open .gh-burger {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        transform: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .gh-navigation.is-open .gh-burger::after {
        content: "Close Menu";
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff;
    }
    
    .gh-navigation.is-open .gh-burger svg {
        flex-shrink: 0;
    }
    
    .gh-navigation.is-open .gh-burger svg:last-child {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Show logo on mobile */
    .gh-navigation.is-open .gh-navigation-logo {
        display: none !important;
    }
    
    /* Hide desktop auth buttons on mobile */
    .gh-navigation-actions .gh-navigation-members {
        display: none !important;
    }

    .gh-navigation-members {
        flex-direction: column-reverse;
        width: 100%;
        gap: 16px;
    }

    .nav-dropdown{
        padding: 0;
        top: 70%;
        background: #000;
        z-index: 1001;
        margin-top: 0;
        opacity: 1;   
    }

    #gh-navigation .nav  .nav-dropdown .nav-dropdown-list li a{
        font-size: 1rem;
    }
    
    /* Show mobile-only nav items */
    .mobile-only-nav {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .mobile-only-nav a {
        display: block;
        padding: 1rem 1.5rem;
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: background 0.2s ease;
    }
    
    .mobile-only-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Style Sign Up link with red background */
    .mobile-signup-link {
        background: #e50914 !important;
        border-radius: 6px;
        margin: 0.5rem 1rem;
        padding: 0.75rem 1.5rem !important;
        text-align: center;
        font-weight: 600 !important;
    }
    
    .mobile-signup-link:hover {
        background: #b20710 !important;
    }
    
    /* Adjust mobile menu layout */
    .gh-navigation.custom-layout .gh-navigation-menu {
        justify-content: center;
        align-items: center;
    }
    
    .gh-navigation.custom-layout .gh-navigation-menu .nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: center;
    }
    
    .nav-item-dropdown > a {
        padding: 1rem 1.5rem;
        width: 100%;
        justify-content: space-between;
    }
    .is-open#gh-navigation .nav{
        display: block;
    }
    .is-open#gh-navigation .gh-navigation-menu {
        opacity: 1;
        position: absolute;
        visibility: visible;
        width: 300px;
        left: 10%;
    }
    #gh-navigation .nav a, 
    #gh-navigation a[data-portal=signin], 
    #gh-navigation a[data-portal=signup]{
        font-size: 1.65rem;
    }
    
    .homepage-hero-cta {
        padding: .4rem 1rem !important;
        font-size: 1rem !important;
    }
    .homepage-hero-excerpt{
        margin-bottom: .5rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Streaming Services Section */
    .streaming-tabs {
        gap: 0.25rem !important;
    }
    
    .streaming-tab {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }
    
    .streaming-content {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    /* Hide last 2 items (show only 6) */
    .streaming-post-card:nth-child(7),
    .streaming-post-card:nth-child(8) {
        display: none !important;
    }
    
    .streaming-post-image {
        margin-bottom: 0.5rem !important;
    }
}

/* Hide content type filter on specific tag pages */
.tag-movie .content-type-filter,
.tag-tv-series .content-type-filter {
    display: none !important;
}

/* Footer Styles */
.gh-footer {
    background: #333;
}

.gh-footer,
.gh-footer * {
    color: #fff;
}

.gh-footer a {
    color: #fff;
}

.gh-footer a:hover {
    opacity: 0.8;
}

/* Footer Typography */
.gh-footer-logo {
    font-size: 1rem;
}

.gh-footer-menu {
    font-size: 0.95rem;
}
.gh-footer-copyright1{
    font-size: 0.85rem;
    text-align: right;
}
.gh-footer-copyright {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gh-footer-bar{
    margin-bottom: 0;
}
.mt-2{
    margin-top: 1rem;
}


.gh-footer-signup-header {
    font-size: 1.3rem;
}

.gh-footer-signup-subhead {
    font-size: 0.95rem;
}

/* Footer Form */
.gh-footer .gh-form-input {
    font-size: 0.95rem;
    color: #fff;
}

.gh-footer .gh-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.gh-footer .gh-button {
    font-size: 0.95rem;
}

/* Footer CTA Section */
.gh-footer-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.gh-footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.gh-footer-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gh-footer-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.gh-footer-cta-pricing {
    margin-top: 2rem;
}

.gh-footer-cta-button {
    display: inline-block;
    background: #e50914;
    color: #fff !important;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
}

.gh-footer-cta-button:hover {
    background: #c40812;
    transform: translateY(-2px);
    opacity: 1;
}

.gh-footer{
    margin-top: 0;
}

@media (max-width: 768px) {
    .gh-footer-cta {
        padding: 2rem 1.5rem;
    }
    
    .gh-footer-cta-title {
        font-size: 1.5rem;
    }
    
    .gh-footer-cta-subtitle {
        font-size: 1rem;
    }
    
    .gh-footer-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* 5 Column Footer Navigation */
.gh-footer-navigation {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.gh-footer-column {
    display: flex;
    flex-direction: column;
}

.gh-footer-column-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gh-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-footer-links li {
    margin-bottom: 0.5rem;
}

.gh-footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.6;
}

.gh-footer-links a:hover {
    color: #e50914;
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .gh-footer-navigation {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gh-footer-column-title {
        font-size: 0.85rem;
    }
    
    .gh-footer-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gh-footer-navigation {
        grid-template-columns: 1fr;
    }
}

/* Watch Links Disclaimer */
.placeholder-watch-links {
    position: relative;
}

/* Watch Providers and Watch Links Label Text */
.watch-providers-inline > span:first-child,
.placeholder-watch-links > span:first-child {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
}
.watch-providers-inline > span:first-child{
    margin-bottom: .25rem;
}

/* Make watch providers container stack vertically */
.watch-providers-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Make placeholder watch links container stack vertically */
.placeholder-watch-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    max-width: 150px;
}

/* Force the first span (label) to take full width */
.placeholder-watch-links > span:first-child {
    width: 100%;
}

.watch-disclaimer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    font-size: 0.75rem;
    line-height: 1.1;
    color: #fff;
    width: 300px;
    background: rgba(135, 135, 135, 0.95);
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.watch-disclaimer a {
    background: none;
    padding: 0;
    margin: 0;
}

.watch-disclaimer::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border: 8px solid transparent;
    border-bottom-color: rgba(135, 135, 135, 0.95);
}

.placeholder-watch-links:hover .watch-disclaimer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Availability Icon */
.availability-icon-wrapper {
    position: absolute;
    top: -10px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    z-index: 10;
}

.availability-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.availability-yes circle {
    fill: #22c55e;
}

.availability-no circle {
    fill: #ef4444;
}

.availability-icon-wrapper::after {
    content: attr(data-message);
    position: absolute;
    bottom: 100%;
    right: 0;
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    line-height: 1.3;
    white-space: normal;
    max-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    margin-bottom: 0px;
    text-align: left;
    width: 200px;
    font-weight: normal;
}

.availability-icon-wrapper:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Availability Message for Inline Section */
.availability-message-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    background: rgba(135, 135, 135, 0.3);
    border-radius: 6px;
    width: fit-content;
}

.availability-message-inline .availability-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.availability-message-inline span {
    line-height: 1.4;
}

/* Inline Watch Links Section */
.inlineplpaceholder-watch-links {
    padding: 30px 0;
    text-align: left;
}

.inlineplpaceholder-watch-links .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.watch-links-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.watch-link-btn {
    font-size: 1.2rem;
    color: #FFF;
    background: rgba(135, 135, 135, 0.2);
    padding: .3rem .3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.watch-link-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.watch-disclaimer-inline {
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
    padding: .8rem 1rem;
    background: rgba(135, 135, 135, 0.3);
    border-radius: 6px;
    flex: 1;
    min-width: 300px;
}

@media (max-width: 900px) {
    .watch-disclaimer-inline {
        width: 100%;
        flex: none;
    }
}

/* Tag Page Header */
.gh-archive-wrapper {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Tag Page Header with Filters */
.tag-header-section {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.tag-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.tag-header-left {
    flex: 1;
}

.tag-filters-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}

.filter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Custom Multi-Select */
.custom-multiselect {
    position: relative;
    min-width: 180px;
}

.multiselect-display {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.multiselect-display:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.multiselect-display::after {
    content: '▼';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    opacity: 0.7;
}

.multiselect-display .placeholder {
    opacity: 0.6;
}

.multiselect-display .selected-count {
    color: #e50914;
    font-weight: 600;
}

.multiselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-top: 0.25rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.multiselect-dropdown.show {
    display: block;
}

.multiselect-option {
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.multiselect-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.multiselect-option input[type="checkbox"] {
    cursor: pointer;
}

.multiselect-option label {
    cursor: pointer;
    font-size: 0.875rem;
    color: #fff;
    flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .tag-header-wrapper {
        flex-direction: column;
    }
    
    .tag-filters-right {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Tag Page Grid Layout */
.tag-posts-grid-section {
    padding: 40px 0;
}

.tag-posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.tag-post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tag-post-card:hover {
    transform: translateY(-5px);
}

.tag-post-image {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    position: relative;
}

.tag-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tag-post-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.tag-post-title {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .tag-posts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .tag-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tag-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tag-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Homepage Hero Slideshow */
.homepage-hero-slideshow {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

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

.homepage-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}

.homepage-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.homepage-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.homepage-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.homepage-hero-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.homepage-hero-cta {
    display: inline-block;
    background: #e50914;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.homepage-hero-cta:hover {
    background: #c40812;
}

.homepage-hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.homepage-hero-prev,
.homepage-hero-next {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.homepage-hero-prev {
    padding-right: 2px;
}

.homepage-hero-next {
    padding-left: 2px;
}

.homepage-hero-prev:hover,
.homepage-hero-next:hover {
    background: rgba(229, 9, 20, 0.8);
}

.homepage-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.homepage-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.homepage-hero-dot.active {
    background: #e50914;
}

.homepage-hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .homepage-hero-slideshow {
        height: 50vh;
        min-height: 400px;
    }
    
    .homepage-hero-title {
        font-size: 2rem;
    }
    
    .homepage-hero-excerpt {
        font-size: 1rem;
    }
    
    .homepage-hero-prev,
    .homepage-hero-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* Homepage Category Layout */
.homepage-header {
    text-align: center;
    margin: 4rem 0 3rem;
}

.homepage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.homepage-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.homepage-category-section {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-title-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.category-title-link:hover {
    opacity: 0.8;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.category-view-all {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.category-view-all:hover {
    color: #e50914;
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-post-card:hover {
    transform: translateY(-5px);
}

.category-post-image {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    position: relative;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-post-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.category-post-title {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

/* Responsive for homepage categories */
@media (max-width: 1400px) {
    .category-posts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .category-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .category-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .homepage-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .category-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Watch Limit Lightbox */
.watch-limit-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.watch-limit-lightbox.show {
    display: flex;
}

.watch-limit-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
}

.watch-limit-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.watch-limit-close-x:hover {
    color: #fff;
    transform: scale(1.1);
}

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

.watch-limit-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.watch-limit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.watch-limit-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.watch-limit-signin {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.watch-limit-signin:hover {
    color: #fff;
}

.watch-limit-signup {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.watch-limit-signup:hover {
    background: #c40812;
}

.watch-limit-close-text {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.watch-limit-close-text:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Watch Limit Pricing Section */
.watch-limit-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-trial {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e !important;
    display: inline-block;
    margin-bottom: 0 !important;
}

.pricing-cost {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Episode Watch Links */
.episode-watch-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
    position: relative;
}

.episode-watch-label-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.episode-watch-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.episode-availability-icon {
    position: static;
    display: inline-flex;
}

.episode-availability-icon .availability-icon {
    width: 16px;
    height: 16px;
}

.episode-watch-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.episode-watch-btn {
    font-size: 0.8rem;
    color: #FFF;
    background: rgba(135, 135, 135, 0.2);
    padding: .3rem .3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.episode-watch-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.episode-watch-disclaimer {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    font-size: 0.7rem;
    line-height: 1.3;
    color: #fff;
    background: rgba(135, 135, 135, 0.95);
    padding: 10px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    width: 175px;
    text-align: left;
    margin-top: 5px;
}

.episode-watch-disclaimer::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(135, 135, 135, 0.95);
}

.episode-watch-buttons:hover .episode-watch-disclaimer {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive adjustments */
@media (max-width: 512px) {
    .hero-content {
        left: 10px;
        max-width: 95%;
    }
}

/* Streaming Services Grid */
.streaming-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 3rem 0 1.5rem;
}

.streaming-section-title:first-of-type {
    margin-top: 2rem;
}

.streaming-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.streaming-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.streaming-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.streaming-service-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.streaming-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Genre Icons */
.genre-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #e50914 0%, #111 80%);
}

.genre-icon-text {
    font-size: 3rem;
    line-height: 1;
}

.streaming-service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .streaming-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .streaming-service-icon {
        width: 80px;
        height: 80px;
    }
    
    .streaming-service-name {
        font-size: 1rem;
    }
}

/* Tag Header with Filters */
.tag-header-section {
    position: relative;
}

/* Title constrained to leave space for filters */
.tag-header-section > h1 {
    max-width: calc(100% - 420px);
    margin-bottom: 2rem;
    font-size: 3rem;
}

/* Header Filters Container */
.header-filters-container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Sort Dropdown - Match filter selectbox style */
.sort-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 2rem 0.75rem 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' opacity='0.7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    min-width: 150px;
}

.sort-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.sort-dropdown:focus {
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.1);
}

.sort-dropdown option {
    background: rgba(30, 30, 30, 0.98);
    color: #fff;
    padding: 0.5rem;
}

/* Content Type Filter */
.content-type-filter {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-type-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #fff;
}

.content-type-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e50914;
}

.content-type-option span {
    user-select: none;
}

@media (max-width: 1024px) {
    /* Remove max-width constraint on title */
    .tag-header-section > h1 {
        max-width: 100%;
    }
    
    /* Position filters below title */
    .header-filters-container {
        position: static;
        width: 100%;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .sort-dropdown {
        flex: 1;
        min-width: 150px;
    }
    
    .content-type-filter {
        flex: 1;
        min-width: fit-content;
    }
}

@media (max-width: 768px) {
    .header-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sort-dropdown {
        width: 100%;
    }
    
    .content-type-filter {
        width: 100%;
        justify-content: center;
    }
}

/* Show Filters Button (Mobile) */
.show-filters-btn {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 250px;
}

.show-filters-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.show-filters-btn .filter-arrow {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Tag Filters Below - Responsive */
.tag-filters-below {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

/* Responsive Filter Behavior */
@media (max-width: 1024px) {
    .show-filters-btn {
        display: flex !important;
        margin-top: 1rem;
    }
    
    .tag-filters-below {
        display: none !important;
        flex-direction: column;
        width: 100%;
    }
    
    .tag-filters-below.mobile-visible {
        display: flex !important;
    }
    
    .filter-select-group {
        width: 100%;
        margin-right: 0;
    }
    
    .custom-multiselect {
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 1025px) {
    .show-filters-btn {
        display: none !important;
    }
    
    .tag-filters-below {
        display: flex !important;
    }
}

/* Streaming Services Tabs Section */
.streaming-tabs-section {
    margin: 4rem 0;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 1rem;
}

.streaming-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.streaming-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.streaming-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.streaming-tab.active {
    background: #e50914;
    border-color: #e50914;
    font-weight: 600;
}

.streaming-content-wrapper {
    position: relative;
    overflow: hidden;
}

.streaming-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.streaming-post-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.streaming-post-card:hover {
    transform: translateY(-5px);
}

.streaming-post-image {
    width: 100%;
    aspect-ratio: 2/3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.streaming-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streaming-post-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.streaming-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.streaming-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streaming-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.streaming-arrow-left {
    left: 0;
}

.streaming-arrow-right {
    right: 0;
}

.no-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    font-size: 1.1rem;
}

.streaming-view-all-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.streaming-view-all-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.875rem 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.streaming-view-all-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .streaming-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .show-filters-btn{
        max-width: inherit;
    }
    .streaming-content-wrapper {
        padding: 0;
    }
    
    .streaming-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streaming-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .streaming-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Category View All Button */
.category-view-all-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.category-view-all-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.875rem 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-view-all-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

/* Homepage Two Column Layout */
.homepage-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

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

.column-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e50914;
}

.column-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.column-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.column-view-all-btn {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.column-view-all-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.column-footer {
    margin-top: 3rem;
    text-align: center;
}

.column-footer-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.column-footer-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.column-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-post {
    display: block;
}

.column-post-link {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.column-post-link:hover {
    transform: translateX(5px);
}

.column-post-image {
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.column-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.column-post-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    height: 100%;
}

.column-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.column-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.column-post-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .homepage-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .column-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .column-view-all-btn {
        width: 100%;
        text-align: center;
    }
    
    .column-post-image {
        width: 100px;
        height: 150px;
    }
    
    .column-post-link {
        gap: 1rem;
    }
    
    .column-post-title {
        font-size: 1.1rem;
    }
    
    .column-post-excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
    
    .column-title {
        font-size: 1.5rem;
    }
}

/* Reviews and News Page Styles */
.page-header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 2px solid #e50914;
    margin-bottom: 3rem;
}

.page-header-with-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 0 2rem;
    border-bottom: 2px solid #e50914;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.page-header-content {
    flex: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.page-filter-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.filter-link {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-link:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.reviews-page-section,
.news-page-section {
    padding: 2rem 0 4rem;
}

/* Two Column Layouts for Reviews and News Pages */
.reviews-two-column,
.news-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.reviews-column,
.news-column {
    display: flex;
    flex-direction: column;
}

.column-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Page View All Links */
.page-view-all-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-view-all-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.reviews-list,
.news-list {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

/* Override grid for lists inside two-column layouts */
.reviews-two-column .reviews-list,
.news-two-column .news-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.review-item,
.news-item {
    display: block;
}

.review-item-link,
.news-item-link {
    display: flex;
    gap: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item-link:hover,
.news-item-link:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.review-item-image,
.news-item-image {
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.review-item-image img,
.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-item-no-image,
.news-item-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    height: 100%;
}

.review-item-content,
.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.review-item-title,
.news-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.review-item-excerpt,
.news-item-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-prev,
.pagination-next {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.pagination-current {
    font-weight: 500;
}

/* Post Article Styles */
.gh-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 2rem 2rem 2rem;
}

.gh-article-header {
    margin-bottom: 2rem;
}

.gh-article-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.gh-article-header-left {
    flex: 1;
}

.gh-article-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.gh-article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.gh-article-back-btn {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gh-article-back-btn:hover {
    background: #e50914;
    border-color: #e50914;
    transform: translateY(-2px);
}

.gh-article-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.gh-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.gh-article-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gh-article-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.gh-article-feature-image {
    flex-shrink: 0;
    width: 350px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    align-self: flex-start;
}

.gh-article-feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article Body Wrapper - Two Column Layout */
.gh-article-body-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.gh-article-content {
    flex: 1;
    max-width: 768px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Sidebar */
.gh-article-sidebar {
    flex-shrink: 0;
    width: 315px;
}

.gh-article-sidebar-sticky {
    position: sticky;
    top: 2rem;
}

.gh-sidebar-youtube-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.gh-sidebar-youtube-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.gh-article-content h2,
.gh-article-content h3,
.gh-article-content h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gh-article-content h2 {
    font-size: 2rem;
    font-weight: 700;
}

.gh-article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.gh-article-content p {
    margin-bottom: 1.5rem;
}

.gh-article-content a {
    color: #e50914;
    text-decoration: underline;
}

.gh-article-content a:hover {
    color: #ff1a1a;
}

.gh-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.gh-article-content ul,
.gh-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.gh-article-content li {
    margin-bottom: 0.5rem;
}

/* Tag Page Description and Read More */
.page-description-wrapper {
    max-width: 768px;
    margin-bottom: .25rem;
}

.page-description {
    transition: max-height 0.3s ease;
}

.read-more-btn {
    background: none;
    border: none;
    color: #e50914;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #ff1a1a;
}

/* Related Posts Section - Clean Implementation */
.gh-related-posts {
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 0;
}

.gh-related-posts-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gh-related-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .gh-related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gh-related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .gh-related-posts-inner {
        padding: 0 1rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .gh-article-header-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gh-article-feature-image {
        width: 100%;
        max-width: 600px;
    }
    
    .reviews-two-column,
    .news-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-header-with-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-filter-links {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 1200px) {
    .reviews-list,
    .news-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    /* Stack sidebar below content on tablets and mobile */
    .gh-article-body-wrapper {
        flex-direction: column;
    }
    
    .gh-article-sidebar {
        width: 100%;
        max-width: 560px;
        margin: 2rem auto 0;
    }
    
    .gh-sidebar-youtube-container {
        max-height: 560px;
    }
}

@media (max-width: 768px) {
    .gh-article {
        padding: 2rem 1rem;
    }
    
    .gh-article-header-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gh-article-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .gh-article-title {
        font-size: 2rem;
    }
    
    .gh-article-back-btn {
        align-self: flex-start;
    }
    
    .gh-article-excerpt {
        font-size: 1rem;
    }
    
    .gh-article-feature-image {
        width: 100%;
        order: -1;
    }
    
    .gh-article-content {
        font-size: 1rem;
    }
    
    .gh-article-sidebar {
        max-width: 100%;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-prev,
    .pagination-next {
        width: 100%;
    }
    
    .page-view-all-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-view-all-btn,
    .column-footer-btn {
        width: 100%;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-filter-links {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-link {
        width: 100%;
        text-align: center;
    }
    
    .review-item-link,
    .news-item-link {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .review-item-image,
    .news-item-image {
        width: 120px;
        height: 180px;
    }
    
    .review-item-title,
    .news-item-title {
        font-size: 1.2rem;
    }
    
    .review-item-excerpt,
    .news-item-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    .column-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .review-item-link,
    .news-item-link {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-item-image,
    .news-item-image {
        width: 100%;
        height: 300px;
    }
}
