:root {
            --primary: #0F172A; --accent: #D4AF37; --light: #F1F5F9;
            --secondary: #334155; --white: #ffffff;
        }
        html.dark-mode {
            --primary: #FFFFFF; --secondary: #E2E8F0; 
            --light: #1E293B; --white: #334155;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--light); color: var(--secondary); line-height: 1.8; }

        /* HEADER */
        .page-header {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            color: white; padding: 60px 20px; text-align: center;
        }
        .page-header .back-link {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--accent); text-decoration: none; font-size: 0.9rem;
            margin-bottom: 25px; transition: opacity 0.2s;
        }
        .page-header .back-link:hover { opacity: 0.8; }
        .page-header h1 {
            font-family: 'Playfair Display', serif; font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .page-header p { color: #94A3B8; font-size: 0.95rem; }

        /* JADWAL SHOLAT WIDGET */
        .sholat-widget {
            background: linear-gradient(135deg, #D4AF37, #b08d4a);
            border-radius: 20px; padding: 25px 30px; margin-bottom: 30px;
            color: #0F172A; box-shadow: 0 10px 30px rgba(212,175,55,0.3);
        }
        .sholat-widget h3 {
            font-family: 'Playfair Display', serif; font-size: 1.3rem;
            margin-bottom: 5px; display: flex; align-items: center; gap: 10px;
        }
        .sholat-widget .city-row {
            display: flex; align-items: center; gap: 10px; margin-bottom: 20px; margin-top: 8px;
        }
        .sholat-widget select {
            background: rgba(0,0,0,0.15); border: none; color: #0F172A;
            padding: 6px 12px; border-radius: 8px; font-family: inherit;
            font-weight: 600; cursor: pointer; outline: none;
        }
        .sholat-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
        }
        @media(max-width: 600px) { .sholat-grid { grid-template-columns: repeat(2, 1fr); } }
        .sholat-item {
            background: rgba(255,255,255,0.3); border-radius: 12px;
            padding: 12px; text-align: center; backdrop-filter: blur(5px);
        }
        .sholat-item .name { font-size: 0.8rem; font-weight: 600; opacity: 0.8; margin-bottom: 4px; }
        .sholat-item .time { font-size: 1.2rem; font-weight: 700; }
        .sholat-item.active-prayer { background: rgba(0,0,0,0.2); border: 2px solid rgba(0,0,0,0.3); }
        .sholat-date { font-size: 0.85rem; opacity: 0.75; margin-top: 15px; text-align: right; }
        #sholat-loading { text-align: center; padding: 20px; opacity: 0.7; }
        #sholat-error { text-align: center; padding: 10px; color: #7f0000; font-weight: 600; }

        /* MAIN CONTENT */
        .main-wrapper {
            max-width: 860px; margin: 0 auto; padding: 40px 20px 60px;
        }
        .content-card {
            background: var(--white); border-radius: 20px; padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07); margin-bottom: 20px;
            transition: background 0.3s;
        }
        .content-card h2 {
            font-family: 'Playfair Display', serif; color: var(--primary);
            font-size: 1.5rem; margin-bottom: 15px; border-left: 4px solid var(--accent);
            padding-left: 15px;
        }
        .content-card p { margin-bottom: 12px; font-size: 0.95rem; }
        .content-card ul { padding-left: 20px; margin-bottom: 12px; }
        .content-card ul li { margin-bottom: 8px; font-size: 0.95rem; }
        .last-updated { text-align: center; color: #94A3B8; font-size: 0.8rem; margin-top: 30px; }
