body, a, button, input, label, [data-accordion-target] {
            cursor: none !important;
        }
        body {
            background-color: #000000;
            color: #FFFFFF;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        .cursor-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            background: rgba(255, 138, 0, 0.4);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 35px 15px rgba(255, 138, 0, 0.25);
            mix-blend-mode: difference;
            transition: width 0.2s, height 0.2s;
        }
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 5px;
            height: 5px;
            background: #ffffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px #ffffff;
            mix-blend-mode: difference;
        }
        .glass-panel {
            background: rgba(11, 11, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(42, 42, 42, 0.4);
        }
        .orange-glow-hover {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .orange-glow-hover:hover {
            box-shadow: 0 0 30px rgba(255, 138, 0, 0.12);
            border-color: rgba(255, 138, 0, 0.4);
            transform: translateY(-4px);
        }
        .reveal-element {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-element.active {
            opacity: 1;
            transform: translateY(0);
        }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #000000; }
        ::-webkit-scrollbar-thumb { background: #1A1A1A; border-radius: 2px; }
        ::-webkit-scrollbar-thumb:hover { background: #FF8A00; }