body {
            margin: 0;
            padding: 0;
            background: #ffffff00;
            font-family: Arial, sans-serif;
            color: rgba(255, 255, 255, 0);
        }
        
        canvas {
            position: absolute;
            cursor: crosshair;
        }
        .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(230, 230, 230, 0) 80%, rgba(230, 230, 230, 0) 100%);
        backdrop-filter: blur(0.1px);
        z-index: 10;
        }
        #info {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.246);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }
        
        #info h3 {
            margin: 0 0 10px 0;
            color: #4ecdc4;
        }
        
        #info p {
            margin: 5px 0;
            font-size: 14px;
        }
        
        #title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 200;
            opacity: 1;
            transition: opacity 3s ease-out, transform 0.3s ease-out;
            pointer-events: none;
        }
        
        #title h1 {
            font-size: 4em;
            margin: 0;
            background: linear-gradient(45deg,#EF233C, #FF9F1C, #2E8BC0,#0A1128);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 8s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
        }
        
        #title p {
            font-size: 1.3em;
            margin: 15px 0;
            opacity: 0.9;
            text-shadow: 0 0 20px rgba(255,255,255,0.2);
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .fade-out {
            opacity: 0 !important;
        }
        
        #controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 100;
            background: rgba(255, 255, 255, 0);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        #controls label {
            display: block;
            margin: 5px 0;
            font-size: 12px;
        }
        
        #controls input[type="range"] {
            width: 150px;
            margin-left: 10px;
        }