        body {
            background-color: #050505;
            color: #ffffff;
            overflow-x: hidden;
            cursor: none;
        }
        
        .cursor-dot, .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 9999;
            pointer-events: none;
        }
        
        .cursor-dot { width: 5px; height: 5px; background-color: #00f5ff; }
        .cursor-outline {
            width: 30px; height: 30px;
            border: 2px solid rgba(0, 245, 255, 0.5);
            transition: all 0.2s ease;
        }
        .cursor-outline.hover {
            width: 50px; height: 50px;
            background-color: rgba(255, 0, 110, 0.1);
            border-color: #ff006e;
        }
        
        .glitch-text { position: relative; }
        .glitch-text::before, .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
        }
        .glitch-text::before {
            left: 2px;
            text-shadow: -2px 0 #ff006e;
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }
        .glitch-text::after {
            left: -2px;
            text-shadow: -2px 0 #00f5ff;
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }
        @keyframes glitch-anim {
            0% { clip: rect(31px, 9999px, 94px, 0); }
            20% { clip: rect(78px, 9999px, 23px, 0); }
            100% { clip: rect(67px, 9999px, 89px, 0); }
        }
        @keyframes glitch-anim2 {
            0% { clip: rect(65px, 9999px, 99px, 0); }
            100% { clip: rect(12px, 9999px, 67px, 0); }
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #00f5ff 0%, #b026ff 50%, #ff006e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            border-color: rgba(0, 245, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .scanline {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
            background-size: 100% 4px;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.3;
        }
        
        #bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
        
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #050505; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00f5ff, #ff006e); border-radius: 5px; }
        
        .neon-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        .neon-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }
        .neon-btn:hover::before { left: 100%; }
        .neon-btn:hover {
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
            text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
        }
        
        .project-card { transition: all 0.3s ease; }
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 245, 255, 0.1);
        }
        
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: #00f5ff;
            color: black;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        .skip-to-content:focus { top: 0; }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
    


.project-hero {
    background: radial-gradient(circle at 20% 10%, rgba(0,245,255,0.12), transparent 35%), radial-gradient(circle at 80% 20%, rgba(176,38,255,0.12), transparent 35%);
}
.doc-list li { margin-bottom: 0.5rem; color: #d1d5db; }
.stack-chip { border: 1px solid rgba(0,245,255,0.35); background: rgba(0,245,255,0.08); }
