
        body {
            background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), 
                        url('../img/team.jpg');
            background-size: cover;
            background-attachment: fixed;
            color: #f8fafc;
            font-family: 'Monaco', 'Consolas', monospace;
        }
        .glass-card {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-active {
            border-bottom: 3px solid #22c55e;
            color: #22c55e;
        }
        .tab-content { display: none; }
        .tab-content.active { display: block; }
  
        #mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tambahkan indikator halaman aktif agar kru tahu mereka di posisi mana */
.active-page {
    color: #22c55e !important;
}