/**
 * Jakarta Islamic School
 * Auto-separated stylesheet for: public/students/mengenal_10ribu.php
 */

:root { 
            --primary-purple: #7c3aed; 
            --accent-indigo: #4f46e5;
            --bg-body: #f8fafc; 
            --text-dark: #1e293b; 
        }
        body { font-family: 'Poppins', sans-serif; background: var(--bg-body); color: var(--text-dark); min-height: 100vh; }
        
        .navbar-custom { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
        .logo-nav { width: 36px; height: auto; }
        .navbar-brand span { font-size: 1rem; font-weight: 700; color: var(--primary-purple); }

        .content-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 1.5rem; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
        
        /* Grid Kartu Topik Materi */
        .grid-materi { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
        .materi-box { border-radius: 1.25rem; padding: 1.5rem; border: 2px solid #e2e8f0; transition: all 0.3s ease; cursor: pointer; background: #faf5ff; }
        .materi-box:hover { transform: translateY(-4px); border-color: var(--primary-purple); box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12); }
        .materi-box.active { background: #f3e8ff; border-color: var(--primary-purple); box-shadow: 0 6px 18px rgba(124, 58, 237, 0.2); }

        .typing-text { border-right: 2px solid var(--primary-purple); white-space: pre-wrap; animation: blink 0.75s step-end infinite; }
        @keyframes blink { from, to { border-color: transparent } 50% { border-color: var(--primary-purple); } }
        
        .step-box { background: #f8fafc; border-left: 5px solid var(--primary-purple); border-radius: 0.75rem; padding: 1.25rem; font-size: 0.9rem; line-height: 1.7; }
        .interactive-box { background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 100%); border-radius: 1.25rem; border: 2px dashed #c084fc; transition: 0.3s; }
        
        .number-display { font-size: 3.5rem; font-weight: 800; color: var(--primary-purple); animation: popIn 0.3s ease-in-out; }
        @keyframes popIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

        .box-digit { width: 75px; height: 75px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; color: white; box-shadow: 0 6px 15px rgba(0,0,0,0.12); transition: transform 0.2s; }
        .box-digit:hover { transform: scale(1.05); }

        .form-range::-webkit-slider-thumb { background: var(--primary-purple); }

        /* Styling Pilihan Kuis */
        .quiz-option {
            border: 2px solid #e2e8f0;
            border-radius: 1rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 600;
            background: #fdfdfd;
        }
        .quiz-option:hover {
            border-color: var(--primary-purple);
            background: #faf5ff;
        }
        .quiz-option.selected {
            border-color: var(--primary-purple);
            background: #f3e8ff;
            color: var(--primary-purple);
        }