  /* Mengatur base page agar menyerupai aplikasi mobile native */
        body {
            margin: 0;
            padding: 0;
            background-color: #f4f6f9;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .detail-page-container {
            max-width: 480px; /* Batasan standard mockup aplikasi mobile */
            margin: 0 auto;
            min-height: 100vh;
            background-color: #fff;
            position: relative;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        /* --- HEADER BANNER GAMBAR --- */
        .detail-header-banner {
            position: relative;
            width: 100%;
            height: 380px; /* Tinggi banner gambar atas */
        }

        /* Overlay hitam transparan agar text judul putih mudah dibaca */
        .detail-header-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
        }

        /* Tombol Back bulat semi-transparan */
        .btn-back-circle {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            z-index: 10;
            transition: background 0.2s;
        }
        .btn-back-circle:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        /* Konten teks di dalam area Banner Gambar */
        .banner-text-content {
            position: absolute;
            bottom: 45px; /* Memberi ruang space agar tidak tertutup lengkungan card putih */
            left: 0;
            right: 0;
            padding: 0 24px;
            z-index: 2;
        }

        .badge-news {
            display: inline-block;
            background: #007bff;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .detail-main-title {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 12px 0;
        }

        .detail-meta-top {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
        }
        .detail-meta-top .trending-label {
            font-weight: 700;
        }

        /* --- BODY KONTEN (CARD PUTIH MELENGKUNG KE ATAS) --- */
        .detail-body-card {
            position: relative;
            margin-top: -30px; /* Menarik card putih naik ke atas memotong banner gambar */
            background: #fff;
            border-top-left-radius: 32px;
            border-top-right-radius: 32px;
            padding: 24px;
            z-index: 5;
            min-height: 400px;
        }

        /* Bagian Profil Penulis / Author */
        .author-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #e1f0ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }
        .author-avatar-icon {
            color: #007bff;
            font-size: 22px;
        }

        .author-name {
            font-size: 16px;
            font-weight: 700;
            color: #111;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .icon-verified {
            color: #1d9bf0;
            font-size: 14px;
        }

        /* Isi Artikel Berita */
        .article-body-text {
            font-size: 15px;
            color: #444;
            line-height: 1.7;
            text-align: justify;
        }
        
        /* Merapikan paragraf, list bawan HTML jika input data menggunakan teks biasa atau editor */
        .article-body-text p {
            margin-top: 0;
            margin-bottom: 16px;
        }
        .article-body-text ul, .article-body-text ol {
            padding-left: 20px;
            margin-bottom: 16px;
        }
        .article-body-text li {
            margin-bottom: 8px;
        }