
        :root {
            --bg-parchment: #EDE6D3;
            --green-tile: #1F3A34;
            --green-tile-light: #2C5048;
            --brass-accent: #A8823D;
            --brass-light: #C9A24B;
            --text-dark: #2C2C2C;
            --text-muted: #6B6558;
            --card-bg: #F5EFE1;
            --shadow-soft: rgba(31, 58, 52, 0.14);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--bg-parchment);
            color: var(--text-dark);
            font-family: 'Work Sans', sans-serif;
            line-height: 1.8;
        }

        .pattern-border {
            height: 14px;
            background-image:
                linear-gradient(45deg, var(--brass-accent) 25%, transparent 25%),
                linear-gradient(-45deg, var(--brass-accent) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--brass-accent) 75%),
                linear-gradient(-45deg, transparent 75%, var(--brass-accent) 75%);
            background-size: 18px 18px;
            background-position: 0 0, 0 9px, 9px -9px, -9px 0px;
            opacity: 0.55;
        }

        /* Header */
        header {
            background-color: var(--green-tile);
            color: var(--bg-parchment);
            padding: 1.6rem 1rem 1.4rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .eyebrow {
            font-size: 0.78rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--brass-light);
            margin-bottom: 0.4rem;
            opacity: 0.9;
        }

        header h1 {
            font-family: 'Amiri', serif;
            font-weight: 700;
            font-size: clamp(1.4rem, 4vw, 1.9rem);
            margin-bottom: 0.3rem;
        }

        header .subtitle {
            font-size: 0.88rem;
            color: rgba(237, 230, 211, 0.75);
        }

        .back-btn {
            position: absolute;
            left: 1rem;
            top: 1.2rem;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(237, 230, 211, 0.35);
            color: var(--bg-parchment);
            text-decoration: none;
            transition: background-color 0.15s ease, border-color 0.15s ease;
            z-index: 10;
            cursor: pointer;
        }
        .back-btn:hover { background-color: rgba(237, 230, 211, 0.12); border-color: var(--brass-light); }
        .back-btn svg { width: 16px; height: 16px; }

        /* Kontainer */
        .container { max-width: 800px; margin: 0 auto; padding: 2rem 1.2rem 1rem; }

        /* Hero Plaque */
        .shahada-plaque {
            background-color: var(--card-bg);
            border: 1px solid rgba(168, 130, 61, 0.35);
            border-radius: 10px;
            padding: 2.2rem 1.5rem;
            text-align: center;
            margin-bottom: 2.5rem;
            box-shadow: 0 2px 10px var(--shadow-soft);
            position: relative;
        }
        .shahada-plaque::before,
        .shahada-plaque::after {
            content: "";
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--brass-accent);
            margin: 0 auto 1rem;
            opacity: 0.6;
        }
        .shahada-plaque::after { margin: 1rem auto 0; }

        .shahada-arabic {
            font-family: 'Amiri', serif;
            font-weight: 700;
            font-size: clamp(1.4rem, 4.5vw, 1.8rem);
            color: var(--green-tile);
            line-height: 2.2;
            direction: rtl;
        }

        .shahada-translit {
            font-family: 'Amiri', serif;
            font-style: italic;
            font-size: 1rem;
            color: var(--brass-accent);
            margin-top: 1rem;
        }

        .shahada-meaning {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-top: 0.8rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Isi Artikel */
        article {
            font-size: 1.05rem;
        }

        article h2 {
            font-family: 'Amiri', serif;
            font-weight: 700;
            color: var(--green-tile);
            font-size: 1.4rem;
            border-bottom: 2px solid var(--brass-accent);
            padding-bottom: 0.4rem;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
        }

        article h3 {
            font-family: 'Amiri', serif;
            font-weight: 700;
            color: var(--green-tile-light);
            font-size: 1.15rem;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }

        article p { margin-bottom: 1.2rem; color: var(--text-dark); text-align: justify; }
        article p.lead { 
            color: var(--text-muted); 
            font-size: 1.1rem; 
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .syarat-list {
            list-style: none;
            counter-reset: pilar;
            margin: 1.5rem 0;
        }
        .syarat-list li {
            counter-increment: pilar;
            display: flex;
            gap: 1rem;
            background-color: var(--card-bg);
            border-left: 3px solid var(--brass-accent);
            border-radius: 6px;
            padding: 1rem 1.2rem;
            margin-bottom: 0.8rem;
        }
        .syarat-list li::before {
            content: counter(pilar);
            font-family: 'Amiri', serif;
            font-weight: 700;
            color: var(--brass-accent);
            font-size: 1.2rem;
            flex-shrink: 0;
            width: 1.5rem;
        }
        .syarat-list h4 { color: var(--green-tile); margin-bottom: 0.3rem; font-size: 1.05rem; }
        .syarat-list p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; text-align: left; }

        blockquote {
            font-family: 'Amiri', serif;
            font-style: italic;
            color: var(--green-tile);
            border-left: 3px solid var(--brass-accent);
            background-color: rgba(168, 130, 61, 0.05);
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            font-size: 1.1rem;
            line-height: 1.8;
            border-radius: 0 8px 8px 0;
        }

        ul.bullet-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
        }
        ul.bullet-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
        }
        ul.bullet-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--brass-accent);
            font-size: 0.9rem;
        }

        /* Navigasi Prev / Next */
        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 3.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(168, 130, 61, 0.3);
            flex-wrap: wrap;
        }
        .article-nav a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--brass-accent);
            text-decoration: none;
        }
        .article-nav a:hover { color: var(--green-tile); }
        .article-nav .next { margin-left: auto; text-align: right; }

        /* Footer */
        footer {
            background-color: var(--green-tile);
            color: var(--bg-parchment);
            padding: 2.5rem 1rem;
            text-align: center;
            margin-top: 2rem;
        }
        .footer-site { font-family: 'Amiri', serif; font-size: 1.2rem; color: var(--brass-light); margin-bottom: 0.3rem; }
        .footer-tagline { font-size: 0.9rem; color: rgba(237, 230, 211, 0.75); max-width: 420px; margin: 0 auto 1.2rem; }
        .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
        .footer-links a { color: var(--bg-parchment); text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid transparent; transition: border-color 0.15s ease, color 0.15s ease; }
        .footer-links a:hover { border-color: var(--brass-light); color: var(--brass-light); }
        .footer-copy { font-size: 0.8rem; color: rgba(237, 230, 211, 0.55); }

        @media (prefers-reduced-motion: reduce) {
            .back-btn, .footer-links a, .article-nav a { transition: none; }
        }
    