
    @import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

    :root {
        --primary: #0f766e; /* Teal 700 - Beda dikit sama Quran */
        --primary-light: #14b8a6;
        --bg: #f0fdfa;
        --surface: #ffffff;
        --text: #1e293b;
        --text-light: #64748b;
        --border: #ccfbf1;
    }

    [data-theme="dark"] {
        --bg: #0f172a; --surface: #1e293b; --text: #f1f5f9; --text-light: #94a3b8; --border: #334155; --primary: #2dd4bf;
    }

    * { box-sizing: border-box; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); margin: 0; padding-bottom: 3rem; }
    a { text-decoration: none; color: inherit; }
    .container { max-width: 700px; margin: 0 auto; padding: 0 1rem; }

    /* Header */
    .navbar { background: var(--surface); padding: 1rem 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }
    .nav-flex { display: flex; justify-content: space-between; align-items: center; }
    .logo { font-weight: 800; font-size: 1.2rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }
    .theme-btn { background: none; border: 1px solid var(--border); padding: 5px 10px; border-radius: 8px; cursor: pointer; color: var(--text); }

    /* Hero */
    .hero { text-align: center; padding: 2rem 0; }
    .hero h1 { color: var(--primary); margin-bottom: 0.5rem; }
    .search-box { position: relative; max-width: 500px; margin: 1rem auto; }
    .search-input { width: 100%; padding: 1rem 1rem 1rem 3rem; border-radius: 50px; border: 2px solid var(--border); background: var(--surface); color: var(--text); font-size: 1rem; outline: none; transition: 0.3s; }
    .search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1); }
    .search-icon { position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); opacity: 0.5; }

    /* Categories */
    .cats { display: flex; gap: 10px; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
    .cat-pill { background: var(--surface); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; border: 1px solid var(--border); font-weight: 600; transition: 0.2s; }
    .cat-pill:hover, .cat-pill.active { background: var(--primary); color: white; border-color: var(--primary); }

    /* List Doa */
    .doa-grid { display: grid; gap: 1rem; }
    .card { background: var(--surface); padding: 1.2rem; border-radius: 12px; border: 1px solid var(--border); transition: 0.2s; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .card:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
    .card-icon { background: var(--bg); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 1rem; font-size: 1.2rem; }
    .card-title { font-weight: 700; font-size: 1rem; }
    
    /* Detail Page */
    .detail-header { text-align: center; padding: 2rem 0; border-bottom: 1px dashed var(--border); margin-bottom: 2rem; }
    .arabic-text { font-family: 'Amiri', serif; font-size: 2.2rem; line-height: 2.4; text-align: right; color: var(--text); margin: 1.5rem 0; direction: rtl; }
    .latin-text { color: var(--primary); font-style: italic; font-weight: 500; margin-bottom: 1rem; line-height: 1.6; }
    .indo-text { color: var(--text-light); line-height: 1.7; }
    
    .action-bar { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
    .btn { padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 5px; color: var(--text); }
    .btn:hover { background: var(--bg); color: var(--primary); }

    /* Tahlil List */
    .tahlil-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
    .tahlil-title { font-size: 0.9rem; color: var(--primary); font-weight: bold; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }

    footer { text-align: center; margin-top: 3rem; color: var(--text-light); font-size: 0.9rem; }
    .hidden { display: none; }
    