html {
            visibility: visible !important;
            opacity: 1 !important;
        }

        body {
            margin: 0;
            padding: 0;
            background: #0f172a;
            color: #f1f5f9;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', 'Noto Sans Arabic', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Thai', sans-serif;
        }

        /* CRITICAL: Ensure all images are always visible - prevent animation delay */
        img {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .video-poster,
        .video-item-thumb,
        .trend-hero-img,
        .slider-item img,
        .category-card-bg img,
        .wp-poster img,
        .wp-ethumb img,
        .swiper-slide img {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .swiper:not(.swiper-initialized) {
            width: 100%;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch;
        }
        .swiper:not(.swiper-initialized) .swiper-wrapper {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            overflow-x: auto !important;
        }
        .swiper:not(.swiper-initialized) .swiper-slide {
            width: 200px !important;
            flex-shrink: 0 !important;
            max-width: 40% !important;
        }
        @media (max-width: 768px) {
            .swiper:not(.swiper-initialized) .swiper-slide {
                width: 140px !important;
                max-width: 45% !important;
            }
        }

        /* ================================================================
           2026 MASTERCLASS STREAMING HEADER SYSTEM
           ================================================================ */
        .hdr-2026 {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 72px !important;
            background: rgba(10, 14, 26, 0.85) !important;
            backdrop-filter: blur(20px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
            z-index: 10000 !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            display: flex !important;
            align-items: center !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        body {
            padding-top: 72px !important;
        }

        .hdr-container {
            max-width: 1480px;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .hdr-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .hdr-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            gap: 10px;
        }

        .hdr-logo img {
            max-height: 64px;
            height: auto;
            width: auto;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
        }

        .hdr-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hdr-nav-item {
            color: #cbd5e1;
            font-weight: 600;
            font-size: 0.90rem;
            padding: 8px 16px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .hdr-nav-item:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hdr-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* Search Pill */
        .hdr-search {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 4px 14px 4px 16px;
            width: 220px;
            height: 38px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        .hdr-search:focus-within {
            width: 280px;
            background: rgba(15, 20, 32, 0.95);
            border-color: #e50914;
            box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
        }

        .hdr-search .search-icon {
            color: #e50914;
            font-size: 0.9rem;
            margin-right: 8px;
        }

        .hdr-search input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 0.85rem;
            width: 100%;
        }

        .hdr-search input::placeholder {
            color: #94a3b8;
        }

        /* 2026 Masterclass Live Search Dropdown */
        .live-search-results {
            position: absolute !important;
            top: calc(100% + 10px) !important;
            left: 0 !important;
            min-width: 320px !important;
            background: rgba(12, 16, 28, 0.98) !important;
            backdrop-filter: blur(25px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 18px !important;
            padding: 8px !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 9, 20, 0.2) !important;
            display: flex;
            flex-direction: column;
            gap: 4px;
            z-index: 10005 !important;
            max-height: 420px;
            overflow-y: auto;
        }

        .live-search-item {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            padding: 8px 12px !important;
            border-radius: 12px !important;
            color: #ffffff !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
        }

        .live-search-item:hover,
        .live-search-item.active {
            background: rgba(229, 9, 20, 0.18) !important;
            transform: translateX(4px) !important;
        }

        .live-search-thumb {
            width: 38px !important;
            height: 54px !important;
            border-radius: 8px !important;
            object-fit: cover !important;
            flex-shrink: 0 !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        .live-search-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            overflow: hidden;
        }

        .live-search-title {
            font-size: 0.88rem !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .live-search-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.72rem;
            color: #94a3b8;
        }

        .live-search-badge {
            background: rgba(229, 9, 20, 0.2);
            color: #e50914;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.68rem;
        }

        .live-search-no-results {
            padding: 16px;
            text-align: center;
            color: #94a3b8;
            font-size: 0.88rem;
        }

        /* Live Watchers Pill */
        .hdr-watchers {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(229, 9, 20, 0.12);
            border: 1px solid rgba(229, 9, 20, 0.3);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.82rem;
            color: #ffffff;
            white-space: nowrap;
        }

        .live-pulse {
            width: 8px;
            height: 8px;
            background: #e50914;
            border-radius: 50%;
            box-shadow: 0 0 10px #e50914;
            animation: pulseGlow 1.5s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0% { transform: scale(0.9); opacity: 0.7; }
            50% { transform: scale(1.3); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.7; }
        }

        .hdr-watchers strong {
            color: #e50914;
            font-weight: 700;
        }

        /* User Profile Dropdown Pill */
        .hdr-user-wrapper {
            position: relative;
        }

        .hdr-user-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 4px 14px 4px 5px;
            border-radius: 50px;
            cursor: pointer;
            color: #ffffff;
            transition: all 0.25s ease;
        }

        .hdr-user-pill:hover,
        .hdr-user-wrapper.active .hdr-user-pill {
            background: rgba(229, 9, 20, 0.15);
            border-color: rgba(229, 9, 20, 0.5);
            box-shadow: 0 0 20px rgba(229, 9, 20, 0.25);
        }

        .hdr-user-pill .pill-img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid #e50914;
            object-fit: cover;
        }

        .hdr-user-pill .pill-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.25;
        }

        .hdr-user-pill .pill-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #ffffff;
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .hdr-user-pill .pill-arrow {
            font-size: 0.70rem;
            color: #94a3b8;
            transition: transform 0.3s ease;
        }

        .hdr-user-wrapper.active .pill-arrow {
            transform: rotate(180deg);
            color: #e50914;
        }

        .hdr-user-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 250px;
            background: rgba(12, 16, 28, 0.96);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 10px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.96);
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 10001;
        }

        .hdr-user-wrapper.active .hdr-user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .hdr-user-dropdown .drop-head {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            margin-bottom: 6px;
        }

        .hdr-user-dropdown .drop-head img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #e50914;
            object-fit: cover;
        }

        .hdr-user-dropdown .drop-name {
            font-size: 0.90rem;
            font-weight: 700;
            color: #ffffff;
        }

        .hdr-user-dropdown .drop-role {
            font-size: 0.72rem;
            color: #ffd700;
            font-weight: 600;
        }

        .hdr-user-dropdown .drop-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
            margin: 6px 0;
        }

        .hdr-user-dropdown .drop-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            color: #cbd5e1;
            font-size: 0.86rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .hdr-user-dropdown .drop-link:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            transform: translateX(4px);
        }

        .hdr-user-dropdown .drop-link.logout-link {
            color: #ff4b59;
        }

        .hdr-user-dropdown .drop-link.logout-link:hover {
            background: rgba(229, 9, 20, 0.15);
            color: #ffffff;
        }

        .hdr-login-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
            color: #ffffff !important;
            padding: 9px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
            transition: all 0.3s ease;
        }

        .hdr-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
        }

        /* Mobile Hamburger Button */
        .hdr-mob-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hdr-mob-btn .m-bar {
            width: 20px;
            height: 2px;
            background: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .hdr-mob-btn .m-bar:nth-child(1) { width: 20px; }
        .hdr-mob-btn .m-bar:nth-child(2) { width: 20px; }
        .hdr-mob-btn .m-bar:nth-child(3) { width: 20px; }

        .hdr-mob-btn.active {
            background: rgba(229, 9, 20, 0.2);
            border-color: rgba(229, 9, 20, 0.6);
        }

        .hdr-mob-btn.active .m-bar:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); background: #e50914; }
        .hdr-mob-btn.active .m-bar:nth-child(2) { width: 0; opacity: 0; }
        .hdr-mob-btn.active .m-bar:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); background: #e50914; }

        /* Mobile Drawer & Overlay */
        .hdr-mob-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 10050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .hdr-mob-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .hdr-mob-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 340px;
            height: 100vh;
            height: 100svh;
            background: rgba(12, 16, 28, 0.97);
            backdrop-filter: blur(30px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10060;
            display: flex;
            flex-direction: column;
            padding: 20px;
            box-sizing: border-box;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
            overflow-y: auto;
        }

        .hdr-mob-drawer.active {
            transform: translateX(0);
        }

        .mob-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 16px;
        }

        .mob-logo {
            font-size: 1.15rem;
            font-weight: 800;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mob-close-btn {
            background: rgba(255, 255, 255, 0.08);
            border: none;
            color: #ffffff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
        }

        .mob-drawer-search {
            position: relative;
            margin-bottom: 20px;
        }

        .mob-drawer-search input {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 45px 12px 16px;
            color: #ffffff;
            font-size: 0.9rem;
            box-sizing: border-box;
            outline: none;
        }

        .mob-drawer-search button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #e50914;
            font-size: 1rem;
            padding: 8px;
            cursor: pointer;
        }

        .mob-user-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            background: rgba(229, 9, 20, 0.08);
            border: 1px solid rgba(229, 9, 20, 0.2);
            border-radius: 14px;
            margin-bottom: 20px;
        }

        .mob-user-card img {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 2px solid #e50914;
            object-fit: cover;
        }

        .mob-user-card .m-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
        }

        .mob-user-card .m-sub {
            font-size: 0.75rem;
            color: #cbd5e1;
            margin-top: 2px;
        }

        .mob-nav-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .mob-grid-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 14px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .mob-grid-item i {
            font-size: 1.3rem;
            color: #e50914;
        }

        .mob-grid-item:active {
            transform: scale(0.96);
            background: rgba(229, 9, 20, 0.15);
        }

        .mob-sub-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 20px;
        }

        .mob-sub-links a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            color: #cbd5e1;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: background 0.2s ease;
        }

        .mob-sub-links a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }

        .mob-drawer-foot {
            margin-top: auto;
        }

        .mob-foot-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            width: 100%;
            box-sizing: border-box;
        }

        .mob-foot-btn.logout {
            background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
            color: #ffffff;
        }

        .mob-foot-btn.login {
            background: rgba(34, 197, 94, 0.12);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #4ade80;
        }

        /* Responsive Breakpoint Adjustments */
        @media (max-width: 1024px) {
            .hdr-nav,
            .hdr-search,
            .hdr-watchers,
            .hdr-user-wrapper,
            .hdr-login-btn {
                display: none !important;
            }

            .hdr-mob-btn {
                display: flex !important;
            }
        }

/* Compact preference card, shared by every public page. */
body #cookieConsentBanner {
 position:fixed;inset:auto auto max(24px,env(safe-area-inset-bottom)) 24px;z-index:100001;
 width:410px;max-width:calc(100vw - 48px);max-height:calc(100dvh - 48px);overflow-y:auto;box-sizing:border-box;
 padding:22px;border:1px solid rgba(255,255,255,.12);border-radius:20px;
 background:radial-gradient(ellipse at 100% 0,rgba(229,9,20,.09),transparent 65%),#10141e;color:#f8fafc;
 box-shadow:0 20px 64px rgba(0,0,0,.55),0 2px 10px rgba(0,0,0,.3);font-family:inherit;text-align:start;
}
body #cookieConsentBanner[hidden],body #cookieConsentBanner [hidden]{display:none!important}
body #cookieConsentBanner *{box-sizing:border-box}
body #cookieConsentBanner .cookie-consent-heading{display:flex;align-items:center;gap:11px;margin:0 0 13px}
body #cookieConsentBanner .cookie-consent-icon{
 display:inline-flex;align-items:center;justify-content:center;flex:0 0 38px;width:38px;height:38px;
 border:1px solid rgba(229,9,20,.23);border-radius:12px;background:rgba(229,9,20,.11);color:#ff5261;
}
body #cookieConsentBanner h2{margin:0;color:#f8fafc;font-size:16px;line-height:1.35;font-weight:750;letter-spacing:-.2px}
body #cookieConsentBanner .cookie-consent-copy p{margin:0;color:#b8c1d1;font-size:13px;line-height:1.65;overflow-wrap:anywhere}
body #cookieConsentBanner .cookie-consent-actions{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:10px;margin:18px 0 14px}
body #cookieConsentBanner .cookie-consent-actions button{
 display:inline-flex;align-items:center;justify-content:center;min-width:0;min-height:44px;margin:0;padding:11px 10px;
 border-radius:11px;font-family:inherit;font-size:13px;font-weight:700;line-height:1.35;text-align:center;
 white-space:normal;overflow-wrap:anywhere;cursor:pointer;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease;
}
body #cookieConsentBanner .cookie-consent-accept{background:linear-gradient(135deg,#e50914,#bf0812);border:1px solid #f22935;color:#fff;box-shadow:0 4px 14px rgba(229,9,20,.16)}
body #cookieConsentBanner .cookie-consent-accept:hover{background:#df0d19;border-color:#ff5261}
body #cookieConsentBanner .cookie-consent-reject{background:#1c2230;border:1px solid #3a4455;color:#e2e8f0;box-shadow:none}
body #cookieConsentBanner .cookie-consent-reject:hover{background:#262e3e;border-color:#6b778d}
body #cookieConsentBanner :is(button,a):focus-visible{outline:3px solid #ff8992;outline-offset:3px}
body #cookieConsentBanner .cookie-consent-actions button:disabled{opacity:.62;cursor:wait}
body #cookieConsentBanner .cookie-consent-details{display:flex;align-items:flex-start;gap:12px;justify-content:space-between}
body #cookieConsentBanner .cookie-consent-details p{margin:0;color:#8995a9;font-size:11px;line-height:1.55;flex:1}
body #cookieConsentBanner .cookie-consent-details a{color:#b5bfd0;flex-shrink:0;font-size:11px;line-height:1.55;text-underline-offset:3px;text-decoration:underline;text-decoration-color:#59657a}
body #cookieConsentBanner .cookie-consent-details a:hover{color:#fff}
body #cookieConsentBanner .cookie-consent-saving{display:none;margin:13px 0 0;color:#b8c1d1;font-size:12px;line-height:1.5}
body #cookieConsentBanner[data-saving="true"] .cookie-consent-saving{display:flex;align-items:center;gap:8px}
body #cookieConsentBanner .cookie-consent-spinner{width:13px;height:13px;border:2px solid #495166;border-top-color:#ff5261;border-radius:50%;animation:cookie-preference-spin .8s linear infinite}
body #cookieConsentBanner #cookieConsentError{margin:13px 0 0;padding:10px 12px;border:1px solid rgba(248,113,113,.28);border-radius:10px;background:rgba(127,29,29,.18);color:#fecaca;font-size:12px;line-height:1.6;overflow-wrap:anywhere}
/* Show one optional prompt at a time; advertising is unaffected. */
body:has(#cookieConsentBanner:not([hidden])) :is(#instantPushModal,#floatingPushBell,#pwaInstallBanner,#pwa-install-banner){visibility:hidden!important;pointer-events:none!important}
@keyframes cookie-preference-spin{to{transform:rotate(360deg)}}
@media(max-width:540px){
 body #cookieConsentBanner{left:12px;right:12px;bottom:calc(12px + env(safe-area-inset-bottom));width:auto;max-width:none;max-height:calc(100dvh - 24px - env(safe-area-inset-bottom));padding:18px;border-radius:17px}
 body #cookieConsentBanner .cookie-consent-heading{margin-bottom:11px}
 body #cookieConsentBanner .cookie-consent-actions{margin-top:16px}
}
@media(prefers-reduced-motion:reduce){body #cookieConsentBanner *{transition:none!important;animation:none!important}}
