        body {
            background: #f0f9ff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .card-pegawai {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 200px;
        }
        .card-pegawai:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -12px rgba(2, 132, 199, 0.2);
            border-color: #38BDF8;
        }

        .text-gradient {
            background: linear-gradient(135deg, #0284C7, #D97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-gradient {
            background: linear-gradient(145deg, #0B1528 0%, #1a2a4a 60%, #0B1528 100%);
        }

        .shape-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            pointer-events: none;
        }

        .mobile-menu-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }
        .mobile-menu-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 {
            transition-delay: 0.05s;
        }
        .delay-2 {
            transition-delay: 0.1s;
        }
        .delay-3 {
            transition-delay: 0.15s;
        }
        .delay-4 {
            transition-delay: 0.2s;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #e0f2fe;
        }
        ::-webkit-scrollbar-thumb {
            background: #38bdf8;
            border-radius: 8px;
        }

        .grid-pegawai {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .grid-pegawai {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .grid-pegawai {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 12px;
        }
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .filter-btn {
            transition: all 0.3s ease;
        }
        .filter-btn.active {
            background: #0284C7;
            color: white;
            border-color: #0284C7;
        }
        .filter-btn.active:hover {
            background: #0369a1;
        }

        .avatar-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        /* LOGO FIX - PASTI TAMPIL */
        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #38BDF8, #0284C7);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }
        .logo-icon:hover {
            transform: scale(1.05);
        }
        .logo-text {
            font-weight: 800;
            font-size: 1.5rem;
            color: white;
            letter-spacing: -0.5px;
        }
        .logo-text span {
            color: #38BDF8;
        }