/* Custom Scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #0a0a0a; }
    ::-webkit-scrollbar-thumb { background: #ffcc00; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #e6b800; }

    /* Typing Cursor */
    .typed-cursor { opacity: 1; animation: blink 0.7s infinite; color: #ffcc00; }
    @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }

    /* Geometric Background Pattern */
    .bg-gotham {
      background-color: #0a0a0a;
      background-image: 
        radial-gradient(at 0% 0%, rgba(255, 204, 0, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 204, 0, 0.05) 0px, transparent 50%),
        linear-gradient(135deg, #0a0a0a 25%, #111111 25%, #111111 50%, #0a0a0a 50%, #0a0a0a 75%, #111111 75%, #111111 100%);
      background-size: 100% 100%, 100% 100%, 40px 40px;
    }
    
    .nav-link.active { color: #ffcc00 !important; }