/* ==========================================================================
   PUNJABI MANIA - MODERN DESIGN SYSTEM (home-modern.css)
   Ultra-Premium, Modern Header, Footer, Live Search, Bento Hero & Pages
   ========================================================================== */

:root {
    --pm-primary: #ed1e24;
    --pm-primary-glow: rgba(237, 30, 36, 0.4);
    --pm-primary-gradient: linear-gradient(135deg, #ff2a30 0%, #c41217 100%);
    --pm-card-radius: 20px;
    --pm-card-radius-sm: 14px;
    --pm-font-title: 'Playfair Display', Georgia, serif;
    --pm-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pm-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --pm-gold: #fbbf24;
    --pm-gold-glow: rgba(251, 191, 36, 0.35);
    --pm-music-gradient: linear-gradient(135deg, #1db954 0%, #0d9488 100%);
    
    /* Default Dark Tokens */
    --pm-bg: #090d16;
    --pm-text: #e2e8f0;
    --pm-text-muted: #94a3b8;
    --pm-surface: rgba(255, 255, 255, 0.03);
    --pm-border: rgba(255, 255, 255, 0.08);
    --pm-glass: rgba(9, 13, 22, 0.88);
}

.light-theme {
    --pm-bg: #f8fafc;
    --pm-text: #0f172a;
    --pm-text-muted: #64748b;
    --pm-surface: #ffffff;
    --pm-border: rgba(0, 0, 0, 0.08);
    --pm-glass: rgba(255, 255, 255, 0.92);
}

/* Global Section Layout & Container Alignment */
.pm-home-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.pm-container-fluid {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

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

/* Performance Optimizations */
.pm-perf-deferred {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* ==========================================================================
   1. HEADER & NAVBAR MODERN STYLES
   ========================================================================== */
.pm-main-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--pm-glass) !important;
    border-bottom: 1px solid var(--pm-border);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.pm-main-header .header-items {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .pm-main-header .header-items {
        padding: 10px 16px;
    }
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

#mob-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    cursor: pointer;
    color: var(--pm-text);
    transition: var(--pm-transition-smooth);
}

@media (max-width: 1023px) {
    #mob-menu-button {
        display: flex;
    }
}

#mob-menu-button:hover {
    background: rgba(237, 30, 36, 0.12);
    color: var(--pm-primary);
    border-color: var(--pm-primary);
}

#logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.04);
}

/* Modern Floating Search Bar */
.desktop-search-container {
    flex: 1;
    max-width: 480px;
    position: relative;
}

.desktop-search-pill {
    display: flex;
    align-items: center;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: 30px;
    padding: 6px 16px;
    gap: 10px;
    transition: var(--pm-transition-smooth);
}

.desktop-search-pill:focus-within {
    border-color: var(--pm-primary);
    box-shadow: 0 0 0 3px var(--pm-primary-glow);
    background: var(--pm-surface);
}

.modern-search-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    color: var(--pm-text) !important;
    font-size: 0.88rem !important;
    font-family: var(--pm-font-body);
    outline: none !important;
    padding: 4px 0 !important;
}

.desktop-search-results-box {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--pm-glass);
    border: 1px solid var(--pm-border);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px;
    display: none;
    z-index: 1200;
}

/* Desktop Navigation Menu Strip */
.pm-desktop-nav {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--pm-border);
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 1023px) {
    .pm-desktop-nav {
        display: none !important;
    }
}

.pm-nav-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    color: var(--pm-text) !important;
    font-family: var(--pm-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 8px;
    transition: var(--pm-transition-smooth);
}

.pm-nav-link:hover,
.pm-nav-dropdown:hover .pm-nav-link {
    color: var(--pm-primary) !important;
    background: rgba(237, 30, 36, 0.08);
}

.pm-nav-dropdown {
    position: relative;
}

.pm-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--pm-transition-smooth);
    z-index: 1200;
}

.pm-nav-dropdown:hover .pm-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-dropdown-content a {
    display: block;
    padding: 9px 14px;
    color: var(--pm-text) !important;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 8px;
    transition: var(--pm-transition-smooth);
}

.pm-dropdown-content a:hover {
    background: var(--pm-primary);
    color: #ffffff !important;
    transform: translateX(4px);
}

/* Theme Toggle Button */
.pm-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    color: var(--pm-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--pm-transition-smooth);
}

.pm-theme-toggle:hover {
    border-color: var(--pm-primary);
    color: var(--pm-primary);
    transform: rotate(20deg) scale(1.06);
}

/* User Menu & Login Button */
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--pm-primary-gradient);
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px var(--pm-primary-glow);
    transition: var(--pm-transition-smooth);
}

.header-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--pm-primary-glow);
}

/* Mobile Slide-Over Navigation Drawer & Dark Modals */
.dark-theme .mob-nav-header {
    background: #090d16 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dark-theme .mob-nav-header #close-nav span {
    color: #ffffff !important;
}

.dark-theme .nav {
    background: #080c14 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-theme .nav .mob-nav-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #e2e8f0 !important;
}

.dark-theme .nav .mob-nav-item:hover {
    border-color: var(--pm-primary) !important;
    color: var(--pm-primary) !important;
}

/* ==========================================================================
   2. DYNAMIC LIVE SEARCH POPUP & RESULT CARDS
   ========================================================================== */
.pm-search-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--pm-border);
}

.pm-popup-query {
    font-size: 0.85rem;
    color: var(--pm-text);
}

.pm-popup-count {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--pm-primary);
    background: rgba(237, 30, 36, 0.12);
    padding: 3px 8px;
    border-radius: 12px;
}

.pm-search-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none !important;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--pm-transition-smooth);
}

.search-result-item:hover,
.search-result-item.highlighted {
    background: rgba(237, 30, 36, 0.08) !important;
    border-color: rgba(237, 30, 36, 0.25) !important;
    transform: translateX(3px);
}

.search-result-item .pic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--pm-bg);
}

.search-result-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-details {
    flex-grow: 1;
    min-width: 0;
}

.search-result-title {
    font-family: var(--pm-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--pm-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 7px;
    border-radius: 6px;
    color: #ffffff;
}

.search-badge.type-movie { background: var(--pm-primary-gradient); }
.search-badge.type-person { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.search-badge.type-post { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.search-badge.type-video { background: linear-gradient(135deg, #e11d48 0%, #be123c 100%); }
.search-badge.type-event { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }

.search-subtext {
    font-size: 0.72rem;
    color: var(--pm-text-muted);
    font-weight: 600;
}

.search-arrow {
    font-size: 1rem;
    color: var(--pm-text-muted);
    opacity: 0;
    transition: var(--pm-transition-smooth);
}

.search-result-item:hover .search-arrow,
.search-result-item.highlighted .search-arrow {
    opacity: 1;
    color: var(--pm-primary);
    transform: translate(2px, -2px);
}

.pm-search-view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px;
    background: var(--pm-primary-gradient);
    color: #ffffff !important;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px var(--pm-primary-glow);
    transition: var(--pm-transition-smooth);
}

.pm-search-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--pm-primary-glow);
}

.pm-no-results-box {
    padding: 24px 16px;
    text-align: center;
}

.pm-search-suggestions {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ==========================================================================
   3. QUICK DISCOVERY / CATEGORY BAR
   ========================================================================== */
.pm-quick-bar-wrap {
    padding: 12px 0 20px 0;
    position: relative;
    z-index: 10;
}

.pm-quick-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 2px 10px 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.pm-quick-bar::-webkit-scrollbar {
    display: none;
}

.pm-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    color: var(--pm-text);
    font-family: var(--pm-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: var(--pm-transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pm-quick-pill .material-symbols-outlined {
    font-size: 1.05rem;
    color: var(--pm-primary);
    transition: transform 0.3s ease;
}

.pm-quick-pill:hover,
.pm-quick-pill.active {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--pm-primary-glow);
}

.pm-quick-pill:hover .material-symbols-outlined,
.pm-quick-pill.active .material-symbols-outlined {
    color: #ffffff;
    transform: scale(1.15);
}

/* ==========================================================================
   4. CINEMATIC BENTO HERO (ROBUST RESPONSIVE GRID)
   ========================================================================== */
.pm-cinema-hero {
    position: relative;
    padding: 0 0 25px 0;
}

.pm-cinema-hero .pm-bento-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
}

.pm-cinema-hero .pm-bento-lead {
    position: relative;
    border-radius: var(--pm-card-radius);
    overflow: hidden;
    height: 420px !important;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition: var(--pm-transition-smooth);
}

.pm-cinema-hero .pm-bento-stack {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    height: auto !important;
    overflow: visible !important;
}

.pm-cinema-hero .pm-bento-stack .pm-bento-card {
    position: relative !important;
    border-radius: var(--pm-card-radius);
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    text-decoration: none !important;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    height: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    transition: var(--pm-transition-smooth);
}

.pm-cinema-hero .pm-bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 30, 36, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 25px rgba(237, 30, 36, 0.15);
}

.pm-bento-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.pm-bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-cinema-hero .pm-bento-card:hover .pm-bento-img {
    transform: scale(1.06);
}

.pm-bento-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(9, 13, 22, 0.3) 40%, rgba(9, 13, 22, 0.85) 75%, rgba(9, 13, 22, 0.98) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.pm-cinema-hero .pm-bento-card:hover .pm-bento-scrim {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(9, 13, 22, 0.25) 35%, rgba(9, 13, 22, 0.88) 70%, rgba(9, 13, 22, 1) 100%);
}

.pm-bento-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.pm-cinema-hero .pm-bento-lead .pm-bento-body {
    padding: 38px 44px;
}

.pm-bento-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pm-badge-flame {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--pm-primary-gradient);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 8px;
    box-shadow: 0 4px 14px var(--pm-primary-glow);
}

.pm-badge-flame .material-symbols-outlined {
    font-size: 0.95rem;
    animation: flamePulse 1.8s infinite ease-in-out;
}

@keyframes flamePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.pm-badge-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 6px;
}

.pm-bento-lead-title {
    font-family: var(--pm-font-title) !important;
    font-size: clamp(1.5rem, 2.8vw, 2.6rem) !important;
    font-weight: 900 !important;
    line-height: 1.22 !important;
    color: #ffffff !important;
    margin: 0 0 16px 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-bento-sub-title {
    font-family: var(--pm-font-title) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: fit-content;
    transition: var(--pm-transition-smooth);
}

.pm-cinema-hero .pm-bento-card:hover .pm-bento-cta {
    background: #ffffff;
    color: #080c14 !important;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.pm-cinema-hero .pm-bento-card:hover .pm-bento-cta .material-symbols-outlined {
    transform: translateX(4px);
}

.pm-bento-cta .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Responsive Breakpoints for Bento Grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .pm-cinema-hero .pm-bento-lead {
        height: 440px !important;
    }
    .pm-cinema-hero .pm-bento-stack {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
    }
    .pm-cinema-hero .pm-bento-stack .pm-bento-card {
        height: 230px !important;
        min-height: 230px !important;
    }
}

@media (min-width: 1024px) {
    .pm-cinema-hero .pm-bento-grid {
        grid-template-columns: 2fr 1fr !important;
        grid-template-rows: repeat(3, 1fr) !important;
        gap: 20px !important;
        height: 740px !important;
    }
    .pm-cinema-hero .pm-bento-lead {
        grid-column: 1 !important;
        grid-row: 1 / span 3 !important;
        height: 100% !important;
    }
    .pm-cinema-hero .pm-bento-stack {
        grid-column: 2 !important;
        grid-row: 1 / span 3 !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(3, 1fr) !important;
        gap: 16px !important;
        height: 100% !important;
    }
    .pm-cinema-hero .pm-bento-stack .pm-bento-card {
        height: 100% !important;
        min-height: 0 !important;
    }
}

@media (max-width: 767px) {
    .pm-cinema-hero .pm-bento-lead {
        height: 360px !important;
    }
    .pm-cinema-hero .pm-bento-lead .pm-bento-body {
        padding: 22px 18px !important;
    }
    .pm-cinema-hero .pm-bento-stack .pm-bento-card {
        height: 190px !important;
        min-height: 190px !important;
    }
}

/* ==========================================================================
   5. SECTION HEADERS & VIEW ALL PILLS
   ========================================================================== */
.pm-section-head-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pm-border);
}

.pm-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-title-dot {
    width: 6px;
    height: 24px;
    background: var(--pm-primary-gradient);
    border-radius: 4px;
    display: inline-block;
}

.pm-section-heading {
    font-family: var(--pm-font-title);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.pm-view-all-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    color: var(--pm-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-view-all-pill .material-symbols-outlined {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.pm-view-all-pill:hover {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px var(--pm-primary-glow);
}

.pm-view-all-pill:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* ==========================================================================
   6. CINEMA DECK (RECENTLY RELEASED, COMING SOON, & GENRES)
   ========================================================================== */
.pm-cinema-deck-wrap {
    padding: 40px 0;
    background: var(--pm-surface);
    border-top: 1px solid var(--pm-border);
    border-bottom: 1px solid var(--pm-border);
    margin: 25px 0;
}

.pm-cinema-deck-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.pm-movie-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pm-film-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    position: relative;
    border-radius: var(--pm-card-radius-sm);
    transition: var(--pm-transition-smooth);
}

.pm-film-poster-box {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: var(--pm-card-radius-sm);
    overflow: hidden;
    background: var(--pm-bg);
    border: 1px solid var(--pm-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    transition: var(--pm-transition-smooth);
}

.pm-film-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-film-card:hover .pm-film-poster-box {
    transform: translateY(-6px);
    border-color: rgba(237, 30, 36, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 20px rgba(237, 30, 36, 0.2);
}

.pm-film-card:hover .pm-film-poster {
    transform: scale(1.07);
}

.pm-film-rating-chip {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.pm-film-date-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-film-title {
    font-family: var(--pm-font-title);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0 0 4px 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.pm-film-card:hover .pm-film-title {
    color: var(--pm-primary);
}

.pm-film-submeta {
    font-size: 0.75rem;
    color: var(--pm-text-muted);
    font-weight: 600;
}

/* Movie Genre Cloud Strip Inside Cinema Deck */
.pm-cinema-genre-strip {
    padding-top: 24px;
    border-top: 1px solid var(--pm-border);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pm-genre-strip-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--pm-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pm-genre-bubble {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--pm-bg);
    border: 1px solid var(--pm-border);
    color: var(--pm-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 30px;
    transition: var(--pm-transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-genre-bubble:hover {
    background: var(--pm-primary);
    border-color: var(--pm-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--pm-primary-glow);
}

@media (max-width: 1100px) {
    .pm-cinema-deck-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .pm-movie-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ==========================================================================
   7. MAIN CONTENT HUB: 68% NEWS FEED + 32% SIDEBAR
   ========================================================================== */
.pm-hub-grid {
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 40px;
    margin: 40px 0;
}

/* Left Column: News Magazine */
.pm-news-stream {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pm-news-spotlight {
    position: relative;
    border-radius: var(--pm-card-radius);
    overflow: hidden;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--pm-transition-smooth);
}

.pm-news-spotlight:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 30, 36, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.pm-spotlight-thumb-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.pm-spotlight-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-news-spotlight:hover .pm-spotlight-thumb {
    transform: scale(1.05);
}

.pm-spotlight-info {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.pm-news-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pm-news-card-sm {
    display: flex;
    flex-direction: column;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-card-radius-sm);
    overflow: hidden;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-news-card-sm:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 30, 36, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pm-news-card-thumb-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: var(--pm-bg);
}

.pm-news-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pm-news-card-sm:hover .pm-news-card-thumb {
    transform: scale(1.06);
}

.pm-news-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pm-card-title {
    font-family: var(--pm-font-title);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0 0 10px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.pm-news-card-sm:hover .pm-card-title {
    color: var(--pm-primary);
}

.pm-spotlight-title {
    font-family: var(--pm-font-title);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--pm-text);
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.pm-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--pm-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: auto;
}

.pm-meta-row .material-symbols-outlined {
    font-size: 0.95rem;
}

/* Right Column: Sidebar Widgets */
.pm-sidebar-stream {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pm-widget-card {
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-card-radius);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pm-widget-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pm-border);
}

.pm-widget-head h3 {
    font-family: var(--pm-font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0;
}

.pm-widget-icon {
    color: var(--pm-primary);
    font-size: 1.25rem;
}

/* Trending Ranks with Big Numeric Typography */
.pm-trending-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pm-trending-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
    border: 1px solid transparent;
}

.pm-trending-row:hover {
    background: rgba(237, 30, 36, 0.05);
    border-color: rgba(237, 30, 36, 0.2);
    transform: translateX(4px);
}

.pm-trending-num {
    font-family: var(--pm-font-title);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--pm-border);
    line-height: 1;
    min-width: 32px;
    transition: color 0.3s ease;
}

.pm-trending-row:hover .pm-trending-num {
    color: var(--pm-primary);
}

.pm-trending-thumb-wrap {
    width: 68px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--pm-bg);
}

.pm-trending-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-trending-text {
    flex-grow: 1;
    min-width: 0;
}

.pm-trending-title {
    font-family: var(--pm-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--pm-text);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Nostalgia / On This Day Card */
.pm-flashback-card {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
    margin-bottom: 12px;
}

.pm-flashback-card:last-child {
    margin-bottom: 0;
}

.pm-flashback-card:hover {
    transform: translateY(-2px);
    border-color: var(--pm-gold);
    box-shadow: 0 8px 20px var(--pm-gold-glow);
}

.pm-flashback-poster {
    width: 55px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.pm-flashback-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-flashback-name {
    font-family: var(--pm-font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0 0 4px 0;
}

.pm-flashback-year {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pm-gold);
}

@media (max-width: 1024px) {
    .pm-hub-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .pm-news-subgrid {
        grid-template-columns: 1fr;
    }
    .pm-spotlight-title {
        font-size: 1.3rem;
    }
    .pm-spotlight-info {
        padding: 18px 16px;
    }
}

/* ==========================================================================
   8. EXPANDED FULL-WIDTH MUSIC & BEATS SHOWCASE (FLAGSHIP PILLAR)
   ========================================================================== */
.pm-music-showcase-section {
    padding: 55px 0;
    background: linear-gradient(180deg, rgba(237, 30, 36, 0.03) 0%, var(--pm-surface) 100%);
    border-top: 1px solid var(--pm-border);
    border-bottom: 1px solid var(--pm-border);
    margin: 35px 0;
    position: relative;
}

/* Hot Artist Tags Strip */
.pm-music-artist-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 18px;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.pm-music-artist-tags::-webkit-scrollbar {
    display: none;
}

.pm-artist-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    color: var(--pm-text);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 20px;
    white-space: nowrap;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-artist-pill:hover {
    background: var(--pm-music-gradient);
    border-color: transparent;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(29, 185, 84, 0.35);
}

.pm-music-power-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 28px;
}

/* Left: Spotlight Music Lead */
.pm-music-spotlight-card {
    position: relative;
    border-radius: var(--pm-card-radius);
    overflow: hidden;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    text-decoration: none !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    transition: var(--pm-transition-smooth);
}

.pm-music-spotlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(29, 185, 84, 0.5);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25), 0 0 25px rgba(29, 185, 84, 0.2);
}

.pm-music-spotlight-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-music-spotlight-card:hover .pm-music-spotlight-img {
    transform: scale(1.06);
}

.pm-music-spotlight-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(9, 13, 22, 0.85) 70%, rgba(9, 13, 22, 0.98) 100%);
    z-index: 1;
}

.pm-music-spotlight-body {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.pm-badge-music {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--pm-music-gradient);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.35);
}

.pm-music-spotlight-title {
    font-family: var(--pm-font-title);
    font-size: 1.55rem;
    font-weight: 900;
    color: #ffffff !important;
    margin: 0 0 16px 0;
    line-height: 1.25;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

/* Right: 4-Card Music Tracks Grid */
.pm-music-tracks-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pm-music-track-card-lg {
    display: flex;
    flex-direction: column;
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-card-radius-sm);
    overflow: hidden;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-music-track-card-lg:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.pm-track-lg-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pm-bg);
}

.pm-track-lg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pm-music-track-card-lg:hover .pm-track-lg-img {
    transform: scale(1.07);
}

.pm-track-play-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(29, 185, 84, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: var(--pm-transition-smooth);
}

.pm-music-track-card-lg:hover .pm-track-play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pm-track-lg-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pm-track-lg-title {
    font-family: var(--pm-font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0 0 8px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.pm-music-track-card-lg:hover .pm-track-lg-title {
    color: #10b981;
}

@media (max-width: 1024px) {
    .pm-music-power-grid {
        grid-template-columns: 1fr;
    }
    .pm-music-spotlight-card {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .pm-music-tracks-2x2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   9. LIVE EVENTS & CONCERTS
   ========================================================================== */
.pm-events-section {
    padding: 50px 0;
    background: var(--pm-surface);
    border-top: 1px solid var(--pm-border);
    border-bottom: 1px solid var(--pm-border);
    margin: 30px 0;
}

.pm-events-deck {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 28px;
}

.pm-event-highlight-promo {
    background: linear-gradient(135deg, rgba(237, 30, 36, 0.12) 0%, rgba(9, 13, 22, 0.8) 100%);
    border: 1px solid rgba(237, 30, 36, 0.25);
    border-radius: var(--pm-card-radius);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pm-event-highlight-promo::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--pm-primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pm-promo-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(237, 30, 36, 0.15);
    border: 1px solid rgba(237, 30, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-primary);
    margin-bottom: 20px;
}

.pm-promo-icon-box .material-symbols-outlined {
    font-size: 1.8rem;
}

.pm-promo-heading {
    font-family: var(--pm-font-title);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.pm-promo-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0 0 25px 0;
}

.pm-promo-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pm-primary-gradient);
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none !important;
    box-shadow: 0 6px 18px var(--pm-primary-glow);
    transition: var(--pm-transition-smooth);
}

.pm-promo-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--pm-primary-glow);
}

.pm-events-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.pm-event-card-modern {
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-card-radius-sm);
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: var(--pm-transition-smooth);
}

.pm-event-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 30, 36, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.pm-event-poster-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.pm-event-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pm-event-card-modern:hover .pm-event-poster-img {
    transform: scale(1.07);
}

.pm-event-cal-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(9, 13, 22, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 48px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pm-event-cal-badge .cal-m {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pm-primary);
    line-height: 1;
}

.pm-event-cal-badge .cal-d {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 2px;
}

.pm-event-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pm-event-item-title {
    font-family: var(--pm-font-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pm-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-event-meta-line {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--pm-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pm-event-meta-line .material-symbols-outlined {
    font-size: 0.95rem;
    color: var(--pm-primary);
}

@media (max-width: 960px) {
    .pm-events-deck {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pm-events-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   10. CINEMATIC VIDEO STUDIO & TRAILERS (DARK STYLED)
   ========================================================================== */
.pm-video-studio-section {
    padding: 50px 0;
    background: #080c14;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

.pm-video-studio-section .pm-section-heading {
    color: #ffffff !important;
}

.pm-video-studio-section .pm-view-all-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

.pm-video-studio-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
}

.pm-video-main-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    border-radius: var(--pm-card-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--pm-transition-smooth);
}

.pm-video-main-card:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 30, 36, 0.5);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(237, 30, 36, 0.2);
}

.pm-video-lead-thumb-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.pm-video-lead-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pm-video-main-card:hover .pm-video-lead-img {
    transform: scale(1.05);
}

.pm-video-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--pm-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px var(--pm-primary-glow);
    transition: var(--pm-transition-smooth);
}

.pm-video-play-center .material-symbols-outlined {
    font-size: 2.2rem;
    margin-left: 3px;
}

.pm-video-main-card:hover .pm-video-play-center {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(237, 30, 36, 0.7);
}

.pm-video-duration-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.pm-video-main-info {
    padding: 20px 24px;
}

.pm-video-main-title {
    font-family: var(--pm-font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.pm-video-queue-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pm-video-queue-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-video-queue-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(237, 30, 36, 0.35);
    transform: translateX(4px);
}

.pm-video-queue-thumb-wrap {
    width: 110px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.pm-video-queue-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-video-queue-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(237, 30, 36, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.pm-video-queue-play .material-symbols-outlined {
    font-size: 1.1rem;
    margin-left: 1px;
}

.pm-video-queue-item:hover .pm-video-queue-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ff1e27;
}

.pm-video-queue-title {
    font-family: var(--pm-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 6px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-video-queue-duration {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
}

@media (max-width: 960px) {
    .pm-video-studio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. STRATEGIC GOOGLE ADSENSE CONTAINERS (CLS-SAFE, LABELED & RESPONSIVE)
   ========================================================================== */
.pm-ad-slot-wrap {
    margin: 32px auto;
    text-align: center;
    position: relative;
    width: 100%;
}

.pm-ad-slot-wrap.pm-ad-top-hero {
    margin: 12px auto 28px auto;
    min-height: 90px;
}

.pm-ad-slot-wrap.pm-ad-mid-break {
    margin: 36px auto;
    min-height: 90px;
}

.pm-ad-slot-wrap.pm-ad-bottom {
    margin: 36px auto 20px auto;
    min-height: 90px;
}

@media (min-width: 768px) {
    .pm-ad-slot-wrap.pm-ad-top-hero {
        min-height: 100px;
    }
    .pm-ad-slot-wrap.pm-ad-mid-break {
        min-height: 120px;
    }
    .pm-ad-slot-wrap.pm-ad-bottom {
        min-height: 120px;
    }
}

.pm-ad-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--pm-text-muted);
    opacity: 0.65;
    margin-bottom: 6px;
    display: block;
    text-align: center;
}

.pm-ad-slot-card {
    background: var(--pm-surface);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-card-radius);
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pm-ad-sidebar-container {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ==========================================================================
   12. ULTRA-PREMIUM MODERN FOOTER STYLES
   ========================================================================== */
.pm-footer {
    background: #060911 !important;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 60px 0 30px 0;
    overflow: hidden;
}

.pm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pm-primary-gradient);
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.pm-footer-brand-title {
    font-family: var(--pm-font-title);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff !important;
    margin: 0 0 12px 0;
    display: inline-block;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

.pm-footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.pm-footer-heading {
    font-family: var(--pm-font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 18px 0;
    letter-spacing: 0.3px;
}

.pm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pm-footer-links li a {
    color: #94a3b8 !important;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pm-footer-links li a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.pm-social-bubble-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pm-social-bubble {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: var(--pm-transition-smooth);
}

.pm-social-bubble:hover {
    transform: translateY(-4px) scale(1.08);
}

.pm-social-bubble.fb:hover { background: #1877f2; border-color: #1877f2; color: #fff !important; }
.pm-social-bubble.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; color: #fff !important; }
.pm-social-bubble.x:hover { background: #000000; border-color: #ffffff; color: #fff !important; }
.pm-social-bubble.yt:hover { background: #ff0000; border-color: #ff0000; color: #fff !important; }
.pm-social-bubble.wa:hover { background: #25d366; border-color: #25d366; color: #fff !important; }

.pm-footer-bottom-bar {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1100px) {
    .pm-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pm-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pm-footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   HOMEPAGE BOX OFFICE TRACKER WIDGET SECTION
   ========================================================================== */
.pm-home-bo-section {
    padding: 32px 0;
}

.pm-home-bo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.pm-home-bo-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.pm-home-bo-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pm-home-bo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.pm-home-bo-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 850;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 4px;
}

.pm-home-bo-sub {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.pm-home-bo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.pm-home-bo-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.pm-home-bo-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.pm-home-bo-kpi-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.pm-home-bo-kpi-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 6px;
}

.pm-home-bo-kpi-val {
    font-size: 24px;
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pm-home-bo-kpi-sub {
    font-size: 11px;
    color: #64748b;
    display: block;
    margin-top: 4px;
}

.pm-home-bo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.pm-home-bo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pm-home-bo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.4);
}

.pm-home-bo-poster {
    width: 48px;
    height: 68px;
    border-radius: 6px;
    object-fit: cover;
    background: #334155;
    flex-shrink: 0;
}

.pm-home-bo-info {
    flex: 1;
    min-width: 0;
}

.pm-home-bo-name {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 2px;
}

.pm-home-bo-total {
    font-size: 15px;
    font-weight: 850;
    color: #60a5fa;
}

.pm-home-bo-submeta {
    font-size: 11px;
    color: #94a3b8;
}

.pm-home-bo-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 8px 14px;
}
