        body {
            background: #f0f9ff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .text-gradient {
            background: linear-gradient(135deg, #0284C7, #D97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-gradient {
            background: linear-gradient(145deg, #0B1528 0%, #1a2a4a 60%, #0B1528 100%);
        }

        .shape-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            pointer-events: none;
        }

        .mobile-menu-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        .mobile-menu-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.05s;
        }

        .delay-2 {
            transition-delay: 0.1s;
        }

        .delay-3 {
            transition-delay: 0.15s;
        }

        .delay-4 {
            transition-delay: 0.2s;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #e0f2fe;
        }

        ::-webkit-scrollbar-thumb {
            background: #38bdf8;
            border-radius: 8px;
        }

        /* Card Berita (untuk related) */
        .card-berita {
            background: #ffffff;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.35s ease;
            box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-berita:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 30px -10px rgba(2, 132, 199, 0.15);
            border-color: #38BDF8;
        }

        .card-berita .thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: #e2e8f0;
        }

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

        .card-berita:hover .thumb img {
            transform: scale(1.05);
        }

        .card-berita .category-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: white;
            backdrop-filter: blur(4px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .card-berita .content {
            padding: 1rem 1.25rem 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-berita .title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.35rem;
        }

        .card-berita .excerpt {
            font-size: 0.8rem;
            color: #64748B;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .card-berita .meta {
            font-size: 0.65rem;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid #f1f5f9;
        }

        .card-berita .meta i {
            margin-right: 0.2rem;
            width: 0.9rem;
            text-align: center;
        }

        /* Sidebar */
        .sidebar-card {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.25rem 1.5rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.04);
        }

        .sidebar-card .title-side {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #0284C7;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #E0F2FE;
        }

        .sidebar-card .title-side i {
            margin-right: 0.5rem;
        }

        .kategori-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.55rem 0.75rem;
            margin-bottom: 0.2rem;
            border-radius: 0.5rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #475569;
            transition: all 0.2s ease;
            cursor: pointer;
            border-left: 3px solid transparent;
        }

        .kategori-item:hover {
            background: #f8fafc;
            color: #0284C7;
            border-left-color: #0284C7;
            padding-left: 1rem;
        }

        .kategori-item .count {
            background: #F1F5F9;
            padding: 0.05rem 0.6rem;
            border-radius: 999px;
            font-size: 0.65rem;
            font-weight: 700;
            color: #64748B;
        }

        .kategori-item.all {
            font-weight: 700;
            color: #0284C7;
            border-left-color: #0284C7;
            background: #f0f9ff;
        }

        .popular-item {
            display: flex;
            gap: 0.75rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid #f8fafc;
            align-items: center;
        }

        .popular-item:last-child {
            border-bottom: none;
        }

        .popular-item .num {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #F1F5F9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 800;
            color: #64748B;
            flex-shrink: 0;
        }

        .popular-item .text {
            font-size: 0.78rem;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .popular-item .text:hover {
            color: #0284C7;
        }

        .arsip-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.8rem;
            color: #475569;
            font-weight: 500;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .arsip-item:hover {
            background: #f8fafc;
            color: #0284C7;
        }

        .nav-link.active {
            color: #0284C7;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2.5px;
            background: #0284C7;
            border-radius: 4px;
        }

        /* ===== Detail Berita ===== */
        .detail-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.04);
        }

        .detail-card .thumb-detail {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/7;
            background: #e2e8f0;
        }

        .detail-card .thumb-detail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .detail-card .badge-kategori {
            position: absolute;
            top: 1.2rem;
            left: 1.2rem;
            padding: 0.3rem 1.2rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: white;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }

        .detail-card .body-detail {
            padding: 2rem 2.5rem 2.5rem;
        }

        .detail-card h1 {
            font-size: 2rem;
            font-weight: 800;
            color: #0F172A;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        .detail-card .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.85rem;
            color: #64748B;
            margin-bottom: 1.5rem;
        }

        .detail-card .meta-info i {
            margin-right: 0.4rem;
            width: 1.1rem;
            text-align: center;
            color: #0284C7;
        }

        .detail-card .share-buttons a {
            transition: color 0.2s;
        }

        .detail-card .share-buttons a:hover {
            color: #0284C7;
        }

        .detail-card .content-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #1e293b;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f1f5f9;
        }

        .detail-card .content-text p {
            margin-bottom: 1.2rem;
        }

        .detail-card .content-text h2,
        .detail-card .content-text h3 {
            font-weight: 700;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .detail-card .content-text ul,
        .detail-card .content-text ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .detail-card .content-text li {
            margin-bottom: 0.4rem;
        }

        .detail-card .content-text blockquote {
            border-left: 4px solid #0284C7;
            padding-left: 1.2rem;
            margin: 1.2rem 0;
            font-style: italic;
            color: #475569;
        }

        @media (max-width: 640px) {
            .detail-card .body-detail {
                padding: 1.2rem;
            }
            .detail-card h1 {
                font-size: 1.5rem;
            }
            .detail-card .meta-info {
                gap: 0.8rem;
                font-size: 0.75rem;
                flex-wrap: wrap;
            }
            .detail-card .content-text {
                font-size: 0.95rem;
            }
            .detail-card .thumb-detail {
                aspect-ratio: 16/9;
            }
        }

        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .related-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }