/* [DIUBAH] Variabel warna hijau diganti biru */
        :root {
            --primary-blue: #3B82F6; /* blue-500 */
            --primary-blue-dark: #1D4ED8; /* blue-700 */
            --primary-blue-light: #DBEAFE; /* blue-100 */
            --text-dark: #1f2937; /* Gray 800 */
            --text-medium: #4b5563; /* Gray 600 */
            --text-light: #6b7280; /* Gray 500 */
            --bg-light: #f9fafb; /* Gray 50 */
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            --card-shadow-hover: 0 20px 35px -8px rgba(0, 0, 0, 0.1), 0 10px 15px -8px rgba(0, 0, 0, 0.08);
        }
        body {
             /* [DIUBAH] Font Poppins diganti Inter */
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-medium); /* [BARU] Tambahan dari index */
            overflow-x: hidden; /* [BARU] Tambahan dari index */
        }
        /* [BARU] Style glass-effect dari index.html */
        .glass-effect {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
        }
        /* [DIHAPUS] .header-nav tidak dipakai lagi */

        /* [DIUBAH] nav-link disamakan dengan index.html */
        .nav-link { position: relative; padding: 0.25rem 0; }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-blue); /* [DIUBAH] green -> blue */
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }
        .nav-link:hover::after, .nav-link.active::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        /* [BARU] Style nav-link active dari index.html */
        .nav-link.active { color: var(--primary-blue-dark); font-weight: 600; }

        .accordion-header {
            transition: background-color 0.3s;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        }
        #user-profile-dropdown.active { 
            opacity: 1; 
            /* [DIHAPUS] Transform tidak diperlukan lagi */
        }
        /* [DIUBAH] Modal style disamakan dengan index */
        .modal-overlay { 
            background-color: rgba(0, 0, 0, 0.4); 
            backdrop-filter: blur(12px); 
            -webkit-backdrop-filter: blur(12px); 
        }
        .modal-content { 
            background: rgba(255, 255, 255, 0.95); 
            border-radius: 1.5rem; 
            border: 1px solid rgba(0,0,0,0.05);
            max-width: 800px; 
            width: 100%; 
            transform: scale(0.95) translateY(10px);  
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
            max-height: 90vh; 
            overflow-y: auto; 
        }
        .modal-transition.active .modal-content { 
            transform: scale(1) translateY(0); 
        }

        @keyframes pulse-glow { 0%, 100% { transform: scale(1); box-shadow: 0 0 10px var(--glow-color-strong), 0 0 20px var(--glow-color-strong), 0 0 30px var(--glow-color); } 50% { transform: scale(1.02); box-shadow: 0 0 20px var(--glow-color-strong), 0 0 40px var(--glow-color-strong), 0 0 60px var(--glow-color); } }
        .status-display { text-align: center; padding: 1.5rem 1rem; border-radius: 1rem; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .status-display.animate-glow { animation: pulse-glow 3s infinite ease-in-out; }

         /* [BARU] Style section-card dari index.html */
        .section-card { 
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 1.25rem; /* 20px */
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: var(--card-shadow); 
            transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); 
            position: relative;
        }

        /* [BARU] Style navigasi bawah dari index.html */
        .nav-container { 
            padding: 0.5rem; /* p-2 */ 
        }
        .mobile-nav {
            display: flex;
            justify-content: space-around; 
            align-items: center;
            height: 100%;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            border-radius: 1rem; /* rounded-2xl */
            border: 1px solid rgba(229, 231, 235, 0.5); 
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); 
        }
        .mobile-nav .nav-item {
            position: relative;
            isolation: isolate;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-medium); 
            padding: 0.75rem 0.25rem; 
            width: 20%; 
            height: 100%;
            transition: color 0.2s ease-out, transform 0.2s ease-out;
            cursor: pointer;
            text-decoration: none; 
            gap: 0.25rem; 
        }
        .mobile-nav .nav-item .fa-solid, .mobile-nav .nav-item .fas {
             font-size: 1.5rem; /* 24px */
             height: 1.5rem; 
        }
        .mobile-nav .nav-item .nav-text {
            font-size: 0.7rem; 
            line-height: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%; 
        }
        .mobile-nav .nav-item:hover {
            transform: translateY(-2px);
            color: var(--primary-blue-dark); 
        }
        .mobile-nav .nav-item:active, 
        .mobile-nav .nav-item.active { 
            color: var(--primary-blue-dark);
            font-weight: 600;
            transform: translateY(-2px);
        }
        /* [AKHIR BARU] Style navigasi bawah */
