     body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden; 
            overflow-y: auto; 
        }

        .animated-gradient {
            background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5, #ff00ff, #ffc371);
            background-size: 1200% 1200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-animation 15s ease infinite, text-move 6s ease-in-out infinite;
        }

        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes text-move {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }

        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 20s infinite ease-in-out;
            z-index: 0;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0.1; }
            50% { transform: translateY(-100vh) translateX(50vw); opacity: 0.5; }
            100% { transform: translateY(0) translateX(0); opacity: 0.1; }
        }

        
        .timer-container {
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 0 10px rgba(134, 168, 231, 0.5);
        }

        .timer-box {
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timer-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(134, 168, 231, 0.4);
        }

        @keyframes pulse-glow {
            from { text-shadow: 0 0 10px rgba(134, 168, 231, 0.5); }
            to { text-shadow: 0 0 20px rgba(134, 168, 231, 1); }
        }
        
        
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background-color: #f00;
            opacity: 0.7;
            animation: fall 5s linear forwards;
            z-index: 100;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        
        #game-canvas {
            background: linear-gradient(to bottom, #281c47, #5a585e);
            border-radius: 0.5rem;
            cursor: pointer;
            width: 100%;
        }

        #second-game-canvas {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: none;
            width: 100%;
        }
        
        .game-button {
            transition: all 0.3s ease;
        }
        .game-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(134, 168, 231, 0.5);
        }
        