body:active {
            cursor: url('../images/cursors/clickcursor64.png') 16 16, auto;
        }

            /* Or target specific elements on click */
        button:active {
            cursor: url('../images/cursors/clickcursor64.png') 16 16, pointer;
        }

        button:hover, article:hover{
            cursor: url('../images/cursors/clickcursor64.png') 16 16, pointer;
        }
        body {
            /* Syntax: url('path/to/image') [x-hotspot y-hotspot], fallback */
            cursor: url('../images/cursors/cursor64.png') 16 16, auto;
        }
        /* ...existing styles... */

        .reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.985);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Modern minimalist technical scrollbar */
        ::-webkit-scrollbar {
            width: 5px;
            height: 5px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        .dark ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 4px;
        }
        *:focus-visible {
            outline: 2px solid rgba(147, 51, 234, 0.4);
            outline-offset: 4px;
        }
        /* Custom Liquid Glass Container class */
        .glass-card {
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.06),
                inset 0 1px 1px 0 rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .dark .glass-card {
            background: rgba(10, 10, 15, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 
                0 8px 32px 0 rgba(0, 0, 0, 0.4),
                inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
        }
        /* Glowing cursor effects on hover */
        .glass-hover:hover {
            border-color: rgba(147, 51, 234, 0.3);
            box-shadow: 
                0 12px 40px 0 rgba(147, 51, 234, 0.12),
                inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
        }
        .dark .glass-hover:hover {
            border-color: rgba(168, 85, 247, 0.25);
            box-shadow: 
                0 12px 40px 0 rgba(168, 85, 247, 0.15),
                inset 0 1px 1px 0 rgba(255, 255, 255, 0.08);
        }

        .reveal {
            opacity: 0;
            transform: translateY(32px) scale(0.98);
            transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
