/* Custom styles for sidebar scrollbar and hamburger animation */
        .sidebar ul::-webkit-scrollbar {
            width: 8px;
        }

        .sidebar ul::-webkit-scrollbar-thumb {
            background: #FF00FF;
            border-radius: 4px;
        }

        .sidebar ul::-webkit-scrollbar-thumb:hover {
            background: #00FFFF;
        }

        .sidebar ul::-webkit-scrollbar-track {
            background: #24243e;
            border-radius: 4px;
        }

        /* Hamburger animation styles */
        .hamburger.active {
            margin-bottom: 10px;
        }

        .hamburger.active .line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 7px);
        }

        .hamburger.active .line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
        }

        .hamburger.active .line {
            background: #00FFFF;
            box-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
        }

        .hamburger::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            border-radius: 8px;
            z-index: -1;
        }

        /* Sidebar active state */
        .sidebar.active {
            transform: translateX(0);
        }

        /* Overlay active state */
        .overlay.active {
            display: block;
        }

        .body-no-scroll {
            overflow: hidden;
        }

        #navbar-search {
            position: fixed;
            top: 0;
            left: 0;
            width: 80%;
            height: 100%;
            background: #1A1A2E;
            transform: translateX(-100%);
            transition: transform 0.3s ease-out;
            z-index: 40;
        }

        #navbar-search.active {
            transform: translateX(0);
        }

        /* Shadow glow utility */
        .shadow-glow {
            box-shadow: 0 0 10px #FF00FF;
        }

        /* Scale 102 utility */
        .hover-scale-102:hover {
            transform: scale(1.02);
        }

        /* Text glow utility */
        .text-glow {
            text-shadow: 0 0 10px #FF00FF, 0 0 20px #FF00FF;
        }

        /* Terminal window styles */
        .terminal-window {
            background: linear-gradient(145deg, #1A1A2E, #16213E);
            border: 1px solid #00FF88;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.3),
                        inset 0 0 30px rgba(0, 255, 136, 0.1);
        }

        .terminal-header {
            background: linear-gradient(90deg, #00FF88, #00D4FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .command-line {
            background: rgba(0, 255, 136, 0.05);
            border-left: 3px solid #00FF88;
        }

        .system-grid {
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .data-flow {
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 255, 136, 0.2),
                rgba(0, 212, 255, 0.2),
                rgba(255, 0, 136, 0.2),
                transparent
            );
        }

        .glitch-text {
            text-shadow: 
                2px 0 #00FF88,
                -2px 0 #FF0088;
            animation: glitch 3s infinite;
        }

        .sidebar {
            background: linear-gradient(145deg, #0A0A0F, #1A1A2E);
            border-right: 1px solid #00FF88;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
        }

        .hero-terminal {
            background: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 50%, #16213E 100%);
            border: 1px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .hero-terminal::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00FF88, #00D4FF, #FF0088, #00FF88);
            border-radius: inherit;
            z-index: -1;
            animation: rotate 3s linear infinite;
            background-size: 400% 400%;
        }

        /* ===== NAVLINK HOVER STATES ===== */
        
        /* Main sidebar link hover effects */
        #sidebar-multi-level-sidebar a {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 0.375rem;
        }

        #sidebar-multi-level-sidebar a:hover {
            background: rgba(0, 255, 136, 0.1) !important;
            color: #00FF88 !important;
            border: 1px solid rgba(0, 255, 136, 0.3) !important;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2),
                        inset 0 0 15px rgba(0, 255, 136, 0.1);
            transform: translateX(8px);
        }

        /* Glowing text effect on hover */
        #sidebar-multi-level-sidebar a:hover span {
            text-shadow: 0 0 8px #00FF88, 0 0 16px #00FF88;
        }

        /* Icon glow effect on hover */
        #sidebar-multi-level-sidebar a:hover svg {
            filter: drop-shadow(0 0 8px #00FF88);
            color: #00FF88 !important;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        /* Pulsing animation for active/current link */
        #sidebar-multi-level-sidebar a.active {
            background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1)) !important;
            border: 1px solid #00FF88 !important;
            animation: pulse-glow 2s infinite;
        }

        /* Data flow animation on hover */
        #sidebar-multi-level-sidebar a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 255, 136, 0.2),
                rgba(0, 212, 255, 0.2),
                transparent
            );
            transition: left 0.5s ease;
            z-index: 0;
        }

        #sidebar-multi-level-sidebar a:hover::before {
            left: 100%;
            animation: data-flow 1.5s linear;
        }

        /* Badge/notification hover effects */
        #sidebar-multi-level-sidebar a:hover .bg-danger-soft {
            background: #FF0088 !important;
            box-shadow: 0 0 10px #FF0088;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        /* Pro badge hover effect */
        #sidebar-multi-level-sidebar a:hover .bg-neutral-secondary-medium {
            background: #00D4FF !important;
            color: #0A0A0F !important;
            box-shadow: 0 0 10px #00D4FF;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        /* Dropdown button hover effect */
        #sidebar-multi-level-sidebar button[data-collapse-toggle] {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: 1px solid transparent;
            border-radius: 0.375rem;
        }

        #sidebar-multi-level-sidebar button[data-collapse-toggle]:hover {
            background: rgba(0, 212, 255, 0.1) !important;
            color: #00D4FF !important;
            border: 1px solid rgba(0, 212, 255, 0.3) !important;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.2),
                        inset 0 0 15px rgba(0, 212, 255, 0.1);
            transform: translateX(8px);
        }

        /* Dropdown items hover effect */
        #sidebar-multi-level-sidebar ul#dropdown-example a {
            border-left: 2px solid transparent;
            margin-left: 0.5rem;
        }

        #sidebar-multi-level-sidebar ul#dropdown-example a:hover {
            border-left: 2px solid #00FF88;
            background: rgba(0, 255, 136, 0.05) !important;
            transform: translateX(4px);
        }

        /* Dropdown arrow animation */
        #sidebar-multi-level-sidebar button[data-collapse-toggle] svg:last-child {
            transition: transform 0.3s ease;
        }

        #sidebar-multi-level-sidebar button[data-collapse-toggle].active svg:last-child {
            transform: rotate(180deg);
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }

        @keyframes rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 10px rgba(0, 255, 136, 0.3),
                            inset 0 0 10px rgba(0, 255, 136, 0.1);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 255, 136, 0.5),
                            inset 0 0 15px rgba(0, 255, 136, 0.2);
            }
        }
        
        /* Icon styling */
        .icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .control-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .control-dot-red {
            background-color: #FF5F57;
            box-shadow: 0 0 5px #FF5F57;
        }
        
        .control-dot-yellow {
            background-color: #FEBC2E;
            box-shadow: 0 0 5px #FEBC2E;
        }
        
        .control-dot-green {
            background-color: #28C840;
            box-shadow: 0 0 5px #28C840;
        }