:root {
            --brand-red: #dc2626;
            --brand-red-dark: #b91c1c;
            --brand-red-deep: #991b1b;
            --brand-red-light: #fee2e2;
            --brand-red-soft: rgba(220, 38, 38, 0.08);
            --brand-red-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%);
            
            --dark-obsidian: #0b0f19;
            --dark-slate: #111827;
            --dark-card: #1f2937;
            
            --bg-body: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --border-dark: #cbd5e1;
            
            --text-main: #1e293b;
            --text-heading: #090d16;
            --text-muted: #64748b;
            
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 18px;
            
            --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
            --shadow-hover: 0 16px 28px -6px rgba(15, 23, 42, 0.12);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            color: var(--text-heading);
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        a:hover {
            color: var(--brand-red);
        }

        .hover-red:hover {
            color: var(--brand-red) !important;
        }

        /* Top Red Accent Stripe */
        .top-accent-stripe {
            height: 4px;
            background: var(--brand-red-gradient);
            width: 100%;
        }

        /* 1. Header Top Bar (Ultra-Premium & Sleek) */
        .newsroom-top-bar {
            background: #090d16;
            color: #94a3b8;
            font-size: 0.8125rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 0.01em;
        }

        .topbar-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.4);
            color: #ef4444;
            font-family: 'Outfit', sans-serif;
            font-size: 0.675rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            padding: 2px 8px;
            border-radius: 20px;
        }

        .topbar-live-dot {
            width: 6px;
            height: 6px;
            background-color: #ef4444;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px #ef4444;
            animation: livePulse 1.8s infinite;
        }

        .topbar-divider {
            display: inline-block;
            width: 1px;
            height: 14px;
            background: rgba(255, 255, 255, 0.12);
            margin: 0 10px;
            vertical-align: middle;
        }

        .topbar-date {
            color: #94a3b8;
            font-size: 0.775rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .topbar-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: #cbd5e1;
            font-size: 0.775rem;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .topbar-social-link:hover {
            background: var(--brand-red);
            color: #ffffff;
            border-color: var(--brand-red);
            transform: translateY(-1px);
        }

        /* Language Selector Styling */
        .language-dropdown-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #e2e8f0;
            padding: 3px 10px;
            transition: all 0.2s ease;
        }

        .language-dropdown-btn:hover, .language-dropdown-btn:focus, .language-dropdown-btn[aria-expanded="true"] {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #ffffff;
        }

        /* Clean Google Translate Widget Overrides */
        .goog-te-banner-frame.skiptranslate, .goog-te-banner-frame {
            display: none !important;
            visibility: hidden !important;
            height: 0 !important;
        }

        body {
            top: 0px !important;
            position: static !important;
        }

        #google_translate_element {
            display: none !important;
            visibility: hidden !important;
        }

        .goog-tooltip, .goog-tooltip:hover {
            display: none !important;
        }

        .goog-text-highlight {
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

        .skiptranslate:not(.allow-translate) {
            display: none !important;
        }

        @keyframes livePulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.35); opacity: 0.6; }
        }

        /* 2. Main Brand Header */
        .newsroom-main-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
            padding: 22px 0;
        }

        .brand-logo-red {
            font-family: 'Outfit', sans-serif;
            font-size: 2.15rem;
            font-weight: 900;
            letter-spacing: -0.04em;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--dark-obsidian);
        }

        .brand-logo-badge {
            width: 44px;
            height: 44px;
            background: var(--brand-red-gradient);
            color: #ffffff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 900;
            box-shadow: 0 6px 14px rgba(220, 38, 38, 0.35);
        }

        .brand-red-text {
            color: var(--brand-red);
        }

        .search-pill-newsroom {
            border-radius: 50px;
            border: 1.5px solid var(--border-color);
            padding: 10px 20px 10px 45px;
            background: #f8fafc;
            font-size: 0.875rem;
            transition: all 0.25s ease;
        }

        .search-pill-newsroom:focus {
            background: #ffffff;
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
        }

        /* 3. Sticky Navigation Bar */
        .newsroom-navbar {
            background: #ffffff;
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .nav-item-red {
            font-size: 0.925rem;
            font-weight: 700;
            color: #334155;
            padding: 14px 16px;
            display: inline-flex;
            align-items: center;
            position: relative;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .nav-item-red:hover {
            color: var(--brand-red);
        }

        .nav-item-red.active {
            color: var(--brand-red);
        }

        .nav-item-red.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--brand-red);
            border-radius: 3px 3px 0 0;
        }

        /* 4. Breaking News Ticker */
        .newsroom-ticker {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--brand-red);
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow-subtle);
        }

        .ticker-badge-red {
            background: var(--brand-red);
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 0.725rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .ticker-slider-wrapper {
            position: relative;
            height: 24px;
            overflow: hidden;
            flex-grow: 1;
        }

        .ticker-slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(18px);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .ticker-slide-item.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .ticker-slide-item.slide-out {
            opacity: 0;
            transform: translateY(-18px);
        }

        .ticker-btn {
            background: transparent;
            border: 1px solid transparent;
            color: #64748b;
            font-size: 0.8rem;
            padding: 2px 7px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .ticker-btn:hover {
            color: var(--brand-red);
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        /* 5. Professional News Cards */
        .news-card-pro {
            background: #ffffff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card-pro:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: #cbd5e1;
        }

        .news-card-img-container {
            position: relative;
            padding-top: 56.25%; /* 16:9 */
            overflow: hidden;
            background: #e2e8f0;
        }

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

        .news-card-pro:hover .news-card-img-pro {
            transform: scale(1.05);
        }

        .category-tag-red {
            font-family: 'Outfit', sans-serif;
            font-size: 0.725rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--brand-red);
            background: var(--brand-red-soft);
            padding: 3px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .category-tag-red:hover {
            background: var(--brand-red);
            color: #ffffff;
        }

        .news-title-pro {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            color: var(--text-heading);
        }

        .news-title-pro a:hover {
            color: var(--brand-red);
        }

        /* 6. Magazine Hero Grid */
        .hero-main-red {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 480px;
            background-color: var(--dark-obsidian);
            box-shadow: var(--shadow-card);
        }

        .hero-main-red img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.72;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-main-red:hover img {
            transform: scale(1.04);
        }

        .hero-main-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 15, 25, 0.05) 0%, rgba(11, 15, 25, 0.92) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            color: #ffffff;
        }

        .hero-sub-item {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 14px;
            display: flex;
            gap: 14px;
            align-items: center;
            height: 100%;
            box-shadow: var(--shadow-subtle);
            transition: all 0.25s ease;
        }

        .hero-sub-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: #cbd5e1;
        }

        .hero-sub-thumb {
            width: 120px;
            height: 95px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            background-color: #e2e8f0;
        }

        /* 7. Editorial Single Article */
        .editorial-body {
            font-family: 'Newsreader', Georgia, serif;
            font-size: 1.2rem;
            line-height: 1.9;
            color: #1e293b;
        }

        .editorial-body p {
            margin-bottom: 1.8rem;
        }

        .editorial-body .article-lead {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.85;
            color: #0f172a;
            background: rgba(220, 38, 38, 0.035);
            border-left: 4px solid var(--brand-red);
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 2rem;
        }

        .editorial-body .article-lead strong {
            color: var(--brand-red);
            letter-spacing: 0.5px;
        }

        .editorial-body h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.45rem;
            font-weight: 800;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--text-heading);
            border-left: 4px solid var(--brand-red);
            padding-left: 12px;
        }

        .editorial-body ul, .editorial-body ol {
            margin-bottom: 1.8rem;
            padding-left: 1.6rem;
        }

        .editorial-body li {
            margin-bottom: 0.6rem;
        }

        /* 8. Article Multi-Page Pagination & Next Page Widget (Media Berita Style) */
        .source-box-red,
        .article-pagination-wrapper {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--brand-red);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            margin-top: 36px;
            box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
            transition: all 0.3s ease;
        }

        .article-pagination-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f1f5f9;
        }

        .pagination-label {
            font-size: 0.85rem;
            font-weight: 800;
            color: #1e293b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
        }

        .pagination-pages {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 12px;
            font-size: 0.875rem;
            font-weight: 700;
            color: #334155;
            background: #f8fafc;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .page-btn:hover {
            color: #ffffff;
            background: var(--brand-red);
            border-color: var(--brand-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
        }

        .page-btn.active {
            color: #ffffff;
            background: var(--brand-red-gradient);
            border-color: var(--brand-red);
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
            cursor: default;
        }

        .page-btn.page-next {
            gap: 4px;
            padding: 0 14px;
            background: #ffffff;
            border-color: #e2e8f0;
        }

        .badge-page-count {
            font-size: 0.775rem;
            font-weight: 600;
            color: #64748b;
            background: #f1f5f9;
            padding: 5px 12px;
            border-radius: 99px;
            border: 1px solid #e2e8f0;
        }

        /* Next Page Card (Detik / Tribun Media Style Big CTA) */
        .article-next-page-box {
            margin-top: 16px;
        }

        .next-page-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
            border: 1.5px solid #fecaca;
            border-radius: 12px;
            padding: 16px 20px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .next-page-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: var(--brand-red);
            transition: width 0.25s ease;
        }

        .next-page-card-link:hover .next-page-card {
            border-color: var(--brand-red);
            box-shadow: 0 8px 24px -4px rgba(220, 38, 38, 0.2);
            transform: translateY(-2px);
            background: #ffffff;
        }

        .next-page-card-link:hover .next-page-card::before {
            width: 7px;
        }

        .next-page-content {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .next-page-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--brand-red-gradient);
            color: #ffffff;
            font-weight: 800;
            font-size: 1.2rem;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            transition: transform 0.25s ease;
        }

        .next-page-card-link:hover .next-page-number {
            transform: scale(1.08) rotate(6deg);
        }

        .next-page-eyebrow {
            display: inline-flex;
            align-items: center;
            font-size: 0.725rem;
            font-weight: 800;
            color: var(--brand-red);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .next-page-heading {
            font-size: 1.025rem;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 3px 0;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .next-page-card-link:hover .next-page-heading {
            color: var(--brand-red);
        }

        .next-page-source {
            font-size: 0.8rem;
            color: #64748b;
            display: block;
        }

        .btn-next-page {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--brand-red-gradient);
            color: #ffffff;
            font-size: 0.875rem;
            font-weight: 700;
            border-radius: 99px;
            box-shadow: 0 3px 12px rgba(220, 38, 38, 0.28);
            white-space: nowrap;
            transition: all 0.25s ease;
        }

        .next-page-card-link:hover .btn-next-page {
            transform: translateX(4px);
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.45);
        }

        .article-source-meta {
            padding-top: 14px;
            margin-top: 14px;
            border-top: 1px dashed #e2e8f0;
        }

        @media (max-width: 576px) {
            .next-page-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px;
                gap: 12px;
            }
            .next-page-action {
                width: 100%;
            }
            .btn-next-page {
                width: 100%;
                justify-content: center;
            }
        }

        /* 8.5. Custom Red Newsroom Pagination */
        .pagination-custom {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .page-link-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            font-size: 0.875rem;
            font-weight: 700;
            color: #334155;
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            border-radius: 8px !important;
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: var(--shadow-subtle);
        }

        .page-link-custom:hover {
            color: #ffffff;
            background: var(--brand-red);
            border-color: var(--brand-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .page-item.active .page-link-custom {
            color: #ffffff;
            background: var(--brand-red-gradient);
            border-color: var(--brand-red);
            box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
            transform: scale(1.04);
        }

        .page-item.disabled .page-link-custom {
            color: #94a3b8;
            background: #f1f5f9;
            border-color: var(--border-color);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
            opacity: 0.6;
        }

        /* 8.6. Premium Load More & Scroll Widget */
        .load-more-section {
            position: relative;
            padding: 20px 0 10px 0;
        }

        .load-more-progress-wrap {
            max-width: 340px;
            margin: 0 auto 16px auto;
        }

        .load-more-progress-bar {
            height: 5px;
            background: #e2e8f0;
            border-radius: 99px;
            overflow: hidden;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
        }

        .load-more-progress-fill {
            height: 100%;
            background: var(--brand-red-gradient);
            border-radius: 99px;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
        }

        .btn-load-more-premium {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #ffffff;
            color: var(--dark-obsidian);
            border: 1.5px solid var(--border-color);
            padding: 13px 34px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            border-radius: 50px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn-load-more-premium:hover {
            color: #ffffff;
            background: var(--brand-red-gradient);
            border-color: var(--brand-red);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.38);
            transform: translateY(-2px);
        }

        .btn-load-more-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(220, 38, 38, 0.1);
            color: var(--brand-red);
            font-size: 0.85rem;
            transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
        }

        .btn-load-more-premium:hover .btn-load-more-icon {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
            transform: translateY(2px);
        }

        .article-card-item-anim {
            animation: loadMoreCardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes loadMoreCardFadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .load-more-end-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.825rem;
            color: #64748b;
            font-weight: 700;
            box-shadow: var(--shadow-subtle);
        }

        /* 8.7. Clean Minimalist Advertisement Boxes (Matching User Reference) */
        .sticky-sidebar-ad-wrap {
            position: -webkit-sticky;
            position: sticky;
            top: 85px;
            z-index: 15;
            margin-top: 15px;
            margin-bottom: 25px;
        }

        .clean-minimal-ad-box {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f6f8fb;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            text-decoration: none;
            color: #64748b;
            transition: all 0.2s ease-in-out;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .clean-minimal-ad-box:hover {
            background-color: #eef2f6;
            border-color: #cbd5e1;
            color: #334155;
            transform: translateY(-1px);
        }

        .clean-ad-top {
            min-height: 90px;
            padding: 16px 20px;
        }

        .clean-ad-sidebar {
            min-height: 250px;
            padding: 24px 16px;
        }

        .clean-ad-inarticle {
            min-height: 90px;
            padding: 16px 20px;
            margin: 1.5rem 0 0.5rem 0;
        }

        .clean-ad-bottom {
            min-height: 110px;
            padding: 20px 24px;
        }

        .clean-ad-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 3px;
        }

        .clean-ad-icon {
            font-size: 1.75rem;
            color: #94a3b8;
            margin-bottom: 2px;
            transition: color 0.2s ease;
        }

        .clean-minimal-ad-box:hover .clean-ad-icon {
            color: var(--brand-red);
        }

        .clean-ad-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #475569;
            letter-spacing: -0.01em;
            transition: color 0.2s ease;
        }

        .clean-minimal-ad-box:hover .clean-ad-title {
            color: #1e293b;
        }

        .clean-ad-sub {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .clean-ad-label {
            text-align: center;
            font-size: 0.65rem;
            color: #94a3b8;
            letter-spacing: 0.8px;
            margin-top: 6px;
            font-weight: 500;
            user-select: none;
        }

        /* 8.8. Popular Tags & Sidebar Widgets Styling (Red Ribbon Model) */
        .popular-tags-header-badge,
        .sidebar-widget-header-badge {
            background: var(--brand-red-gradient);
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            padding: 8px 22px;
            border-radius: 8px;
            transform: skewX(-8deg);
            box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
            display: inline-block;
        }

        .popular-tags-header-badge span,
        .sidebar-widget-header-badge span {
            display: inline-block;
            transform: skewX(8deg);
        }

        .popular-tag-item {
            color: #0f172a;
            transition: all 0.2s ease;
            margin-bottom: 2px;
        }

        .popular-tag-item:hover {
            background-color: #f8fafc;
            transform: translateX(4px);
        }

        .popular-tag-number {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.05rem;
            color: #0f172a;
            min-width: 24px;
        }

        .popular-tag-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            letter-spacing: -0.01em;
        }

        .popular-tag-item:hover .popular-tag-title {
            color: var(--brand-red);
        }

        .popular-tag-arrow {
            font-size: 0.85rem;
            transition: transform 0.2s ease;
        }

        .popular-tag-item:hover .popular-tag-arrow {
            transform: translateX(3px);
            color: var(--brand-red) !important;
            opacity: 1 !important;
        }

        /* 8.85. Top 10 Popular News Widget (Matching Reference) */
        .popular-hero-card {
            background-color: var(--dark-obsidian);
            display: block;
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
        }

        .popular-hero-card img {
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .popular-hero-card:hover img {
            transform: scale(1.05);
        }

        .popular-hero-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 40px;
            height: 40px;
            background: var(--brand-red-gradient);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.35rem;
            font-weight: 900;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
            border: 2.5px solid #ffffff;
            z-index: 2;
        }

        .popular-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9, 13, 22, 0.05) 15%, rgba(9, 13, 22, 0.92) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 16px;
            z-index: 1;
        }

        .popular-big-number {
            font-family: 'Outfit', sans-serif;
            font-size: 1.85rem;
            font-weight: 900;
            color: #0f172a;
            min-width: 36px;
            text-align: center;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .popular-list-item:nth-child(1) .popular-big-number,
        .popular-list-item:nth-child(2) .popular-big-number {
            color: var(--brand-red);
        }

        .popular-list-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.925rem;
            color: #0f172a;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .popular-list-item:hover .popular-list-title {
            color: var(--brand-red);
        }

        /* 8.9. Category 3-Column Bento Block (Matching Reference) */
        .category-header-bar {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .header-separator-line {
            flex: 1;
            height: 2px;
            background: #cbd5e1;
            margin: 0 16px;
            border-radius: 2px;
        }

        .category-view-all-pill {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.825rem;
            font-weight: 700;
            color: #1e293b;
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            padding: 6px 18px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            box-shadow: var(--shadow-subtle);
        }

        .category-view-all-pill:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .category-card-vertical {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 440px;
            background-color: var(--dark-obsidian);
            box-shadow: var(--shadow-card);
            display: block;
        }

        .category-card-vertical img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .category-card-vertical:hover img {
            transform: scale(1.05);
        }

        .category-card-vertical-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9, 13, 22, 0.05) 20%, rgba(9, 13, 22, 0.94) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            color: #ffffff;
        }

        .category-list-card {
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            border-radius: var(--radius-lg);
            padding: 20px;
            height: 100%;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }

        .category-list-card-dark {
            background: #111827;
            border: 1.5px solid #1f2937;
            border-radius: var(--radius-lg);
            padding: 20px;
            height: 100%;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            color: #ffffff;
        }

        .category-list-title-accent {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 8px;
        }

        .category-list-title-accent::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            background: var(--brand-red);
            border-radius: 2px;
        }

        .category-mini-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .category-list-card-dark .category-mini-row {
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .category-mini-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .category-mini-row:first-child {
            padding-top: 0;
        }

        .category-mini-thumb {
            width: 86px;
            height: 64px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            background-color: #e2e8f0;
        }

        /* 8.95. Pilihan Editor (Editor's Choice Slider/Grid) */
        .editor-choice-card {
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-subtle);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            color: inherit;
        }

        .editor-choice-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: #cbd5e1;
        }

        .editor-choice-img-wrap {
            position: relative;
            padding-top: 56.25%; /* 16:9 */
            overflow: hidden;
            background-color: #e2e8f0;
        }

        .editor-choice-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .editor-choice-card:hover .editor-choice-img {
            transform: scale(1.05);
        }

        .editor-choice-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .editor-choice-card:hover .editor-choice-title {
            color: var(--brand-red);
        }

        .editor-choice-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #ffffff;
            border: 1.5px solid var(--border-color);
            color: #475569;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-subtle);
            cursor: pointer;
        }

        .editor-choice-nav-btn:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
            transform: scale(1.05);
        }

        .editor-choice-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
        }

        .editor-choice-scroll::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .editor-choice-scroll-item {
            flex: 0 0 calc(25% - 12px);
            min-width: 250px;
        }

        @media (max-width: 992px) {
            .editor-choice-scroll-item {
                flex: 0 0 calc(50% - 8px);
                min-width: 240px;
            }
        }

        @media (max-width: 576px) {
            .editor-choice-scroll-item {
                flex: 0 0 calc(85% - 8px);
                min-width: 220px;
            }
        }

        /* 8.96. Category & Page Hero Header (Clean, Minimalist & Editorial) */
        .category-hero-header {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 24px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .category-hero-overline {
            display: inline-block;
            color: var(--brand-red);
            font-weight: 700;
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .category-hero-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.85rem;
            color: #111827;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .category-hero-desc {
            color: #4b5563;
            font-size: 0.925rem;
            line-height: 1.55;
            max-width: 720px;
            margin-bottom: 0;
        }

        .category-stats-pill {
            display: inline-block;
            background: #f3f4f6;
            color: #6b7280;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .category-hero-header {
                padding: 18px 18px;
            }
            .category-hero-title {
                font-size: 1.5rem;
            }
        }

        /* 8.97. Floating Skyscraper Wing Ads (Desktop Mode - High-Yield 160x600) */
        .floating-ad-wing {
            position: fixed;
            top: 200px;
            width: 160px;
            height: auto;
            z-index: 1020;
            transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
        }

        .floating-ad-wing.is-scrolled {
            top: 78px;
        }

        /* Safe placement outside 1320px Bootstrap container */
        @media (min-width: 1480px) {
            .floating-ad-left {
                left: max(10px, calc(50vw - 660px - 172px)) !important;
                right: auto !important;
            }
            .floating-ad-right {
                right: max(10px, calc(50vw - 660px - 172px)) !important;
                left: auto !important;
            }
        }

        @media (min-width: 1680px) {
            .floating-ad-left {
                left: calc(50vw - 660px - 180px) !important;
            }
            .floating-ad-right {
                right: calc(50vw - 660px - 180px) !important;
            }
        }

        @media (max-width: 1479px) {
            .floating-ad-wing {
                display: none !important;
            }
        }

        .floating-ad-clean {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }

        .floating-ad-body {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 160px;
            min-height: 600px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
        }

        .floating-ad-link {
            display: block;
            width: 100%;
            text-decoration: none;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .floating-ad-link:hover {
            transform: translateY(-2px);
            opacity: 0.95;
        }

        .floating-ad-img {
            width: 100%;
            max-width: 160px;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            display: block;
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .floating-ad-caption {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: #94a3b8;
            text-align: center;
            margin-top: 4px;
            font-weight: 600;
        }

        .floating-ad-close-btn {
            position: absolute;
            top: -12px;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            width: 26px;
            height: 26px;
            background: #0f172a;
            color: #ffffff;
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            line-height: 1;
            cursor: pointer;
            z-index: 15;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .floating-ad-close-btn:hover {
            background: var(--brand-red, #dc2626);
            transform: translateX(-50%) scale(1.15);
        }

        /* 9. Newsroom Footer (Ultra-Polished & High-Contrast) */
        .newsroom-footer {
            background: #080c14;
            background-image: radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
            color: #cbd5e1;
            padding: 55px 0 0;
            margin-top: 70px;
            border-top: 3px solid var(--brand-red);
            font-size: 0.875rem;
        }

        .footer-heading {
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: var(--brand-red);
            border-radius: 2px;
        }

        .footer-nav-list li {
            margin-bottom: 8px;
        }

        .footer-link-red {
            color: #94a3b8;
            display: inline-block;
            font-size: 0.835rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-link-red:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        .footer-social-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #cbd5e1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-social-btn:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(220, 38, 38, 0.35);
        }

        .footer-disclaimer-card {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-left: 3px solid var(--brand-red);
        }

        .footer-bottom-bar {
            background: #05080e;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 18px 0;
            margin-top: 40px;
            font-size: 0.8rem;
        }

        .footer-sub-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.775rem;
            transition: color 0.2s ease;
        }

        .footer-sub-link:hover {
            color: #ffffff;
        }

        /* Mobile Bottom Nav */
        .mobile-bottom-nav-red {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(16px);
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1040;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
        }

        .mobile-nav-btn-red {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.725rem;
            font-weight: 600;
            color: #475569;
        }

        .mobile-nav-btn-red.active, .mobile-nav-btn-red:hover {
            color: var(--brand-red);
        }

        .mobile-nav-btn-red i {
            font-size: 1.25rem;
            margin-bottom: 2px;
        }