        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
        }

        body {
            overflow: hidden;
            background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%, #000000 100%);
            font-family: 'Courier New', monospace;
            position: relative;
            color: #00ffff;
            height: 100vh;
        }

        #canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .custom-cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: all 0.1s ease-out;
        }

        .cursor-core {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #00ffff;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff, 0 0 45px #00ffff;
            animation: corePulse 2s infinite;
        }

        .cursor-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-radius: 50%;
            animation: ringRotate 3s linear infinite;
        }

        .cursor-trail {
            position: fixed;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.8), transparent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease-out;
        }

        @keyframes corePulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.7; }
        }

        @keyframes ringRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .glitch-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 50;
            pointer-events: none;
            background: 
                linear-gradient(90deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%),
                linear-gradient(180deg, transparent 98%, rgba(255, 0, 255, 0.02) 100%);
            animation: scanlines 0.1s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(2px); }
        }

        .info-panel {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #00ffff;
            z-index: 200;
            pointer-events: auto;
            animation: matrixFadeIn 3s ease-out;
            background: linear-gradient(135deg, 
                rgba(0, 20, 40, 0.9) 0%,
                rgba(0, 10, 30, 0.85) 50%,
                rgba(0, 25, 45, 0.9) 100%);
            padding: 25px 30px;
            border: 2px solid rgba(0, 255, 255, 0.4);
            border-radius: 15px;
            backdrop-filter: blur(20px);
            max-width: 50vw;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 
                0 8px 32px rgba(0, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 255, 255, 0.2),
                0 0 60px rgba(0, 150, 255, 0.2);
            position: relative;
            opacity: 0.8;
        }

        .info-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.8), 
                transparent);
            border-radius: 15px 15px 0 0;
        }

        .info-panel::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            right: 1px;
            bottom: 1px;
            border-radius: 13px;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1) 0%,
                transparent 20%,
                transparent 80%,
                rgba(0, 255, 255, 0.1) 100%);
            pointer-events: none;
            z-index: -1;
        }

        @keyframes matrixFadeIn {
            0% { 
                opacity: 0; 
                transform: translate(-50%, -50%) translateY(30px) scale(0.9);
                filter: blur(10px);
            }
            100% { 
                opacity: 1; 
                transform: translate(-50%, -50%) translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .error-code {
            font-size: 4em;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 
                0 0 10px #00ffff,
                0 0 20px #00ffff,
                0 0 40px #00ffff,
                0 0 80px #00ffff;
            animation: codeGlitch 4s ease-in-out infinite;
            position: relative;
        }

        @keyframes codeGlitch {
            0%, 90%, 100% { transform: translateX(0); }
            92% { transform: translateX(-2px); }
            94% { transform: translateX(2px); }
            96% { transform: translateX(-1px); }
            98% { transform: translateX(1px); }
        }

        .title {
            font-size: 2em;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
            animation: titleGlow 3s ease-in-out infinite alternate;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .subtitle {
            font-size: 0.9em;
            color: #ff0080;
            margin-bottom: 20px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            opacity: 0.9;
            animation: matrixFadeIn 3.5s ease-out;
            text-shadow: 0 0 10px #ff0080;
        }

        @keyframes titleGlow {
            from { 
                text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
                filter: hue-rotate(0deg);
            }
            to { 
                text-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 0.8);
                filter: hue-rotate(20deg);
            }
        }

        .description {
            font-size: 0.9em;
            margin-bottom: 25px;
            opacity: 1;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-style: italic;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
            color: #ffffff;
        }

        .terminal-text {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #00ffff;
            padding: 15px;
            margin: 15px 0;
            font-family: 'Courier New', monospace;
            font-size: 0.85em;
            text-align: left;
            border-radius: 5px;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
            color: #ffffff;
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
        }

        .terminal-text::before {
            content: "> ";
            color: #ff0080;
        }

        .home-button {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(145deg, 
                rgba(0, 40, 80, 0.9) 0%,
                rgba(0, 60, 120, 0.8) 25%,
                rgba(0, 80, 160, 0.9) 50%,
                rgba(0, 60, 120, 0.8) 75%,
                rgba(0, 40, 80, 0.9) 100%);
            color: #ffffff;
            text-decoration: none;
            border: 2px solid rgba(0, 255, 255, 0.6);
            border-radius: 12px;
            font-size: 1em;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 25px rgba(0, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 255, 255, 0.3),
                0 0 30px rgba(0, 150, 255, 0.3);
            pointer-events: auto;
            cursor: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
            text-shadow: 
                0 0 10px rgba(0, 255, 255, 0.8),
                0 0 20px rgba(0, 255, 255, 0.4);
        }

        .home-button::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: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .home-button::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            right: 1px;
            bottom: 1px;
            border-radius: 10px;
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.2) 0%,
                transparent 25%,
                transparent 75%,
                rgba(0, 255, 255, 0.2) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .home-button:hover {
            transform: perspective(1000px) rotateX(-5deg) rotateY(2deg) translateZ(20px) translateY(-5px);
            box-shadow: 
                0 15px 40px rgba(0, 255, 255, 0.6),
                inset 0 2px 0 rgba(255, 255, 255, 0.4),
                inset 0 -2px 0 rgba(0, 255, 255, 0.4),
                0 0 50px rgba(0, 200, 255, 0.5),
                0 25px 50px rgba(0, 255, 255, 0.3);
            background: linear-gradient(145deg, 
                rgba(0, 60, 120, 0.95) 0%,
                rgba(0, 100, 180, 0.9) 25%,
                rgba(0, 120, 220, 0.95) 50%,
                rgba(0, 100, 180, 0.9) 75%,
                rgba(0, 60, 120, 0.95) 100%);
            border-color: rgba(0, 255, 255, 0.9);
            text-shadow: 
                0 0 15px rgba(0, 255, 255, 1),
                0 0 30px rgba(0, 255, 255, 0.6),
                0 0 45px rgba(0, 255, 255, 0.3);
        }

        .home-button:hover::before {
            left: 100%;
        }

        .home-button:active {
            transform: perspective(1000px) rotateX(-2deg) rotateY(1deg) translateZ(10px) translateY(-2px);
            transition: all 0.1s ease-out;
        }

        .debug-info {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #666;
            text-align: center;
            z-index: 200;
            font-size: 0.75em;
            font-family: 'Courier New', monospace;
        }

        .debug-code {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #333;
            padding: 5px 10px;
            border-radius: 3px;
            display: inline-block;
            margin: 3px;
            color: #00ffff;
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
        }

        .matrix-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100;
            pointer-events: none;
            overflow: hidden;
        }

        .matrix-char {
            position: absolute;
            color: #00ff41;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            font-weight: bold;
            opacity: 0.9;
            animation: matrixFall linear infinite;
            text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
            z-index: 150;
        }

        @keyframes matrixFall {
            0% {
                transform: translateY(-50px);
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(calc(100vh + 50px));
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .info-panel {
                padding: 20px 15px;
                margin: 10px;
                max-width: 95vw;
                max-height: 90vh;
            }
            
            .error-code {
                font-size: 3em;
                margin-bottom: 10px;
            }
            
            .title {
                font-size: 1.5em;
                margin-bottom: 8px;
            }
            
            .subtitle {
                font-size: 0.8em;
                letter-spacing: 0.2em;
                margin-bottom: 15px;
            }
            
            .description {
                font-size: 0.8em;
                line-height: 1.5;
                margin-bottom: 20px;
            }
            
            .terminal-text {
                font-size: 0.75em;
                padding: 12px;
                margin: 12px 0;
            }
            
            .home-button {
                padding: 12px 25px;
                font-size: 0.9em;
                letter-spacing: 1px;
            }
            
            .debug-info {
                font-size: 0.65em;
                bottom: 10px;
            }
            
            .debug-code {
                padding: 3px 6px;
                margin: 2px;
            }
        }

        @media (max-height: 600px) {
            .info-panel {
                max-height: 95vh;
                padding: 15px 20px;
            }
            
            .error-code {
                font-size: 2.5em;
                margin-bottom: 8px;
            }
            
            .title {
                font-size: 1.3em;
                margin-bottom: 6px;
            }
            
            .description {
                font-size: 0.75em;
                margin-bottom: 15px;
            }
        }