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

        body {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            background: linear-gradient(to bottom, #2c003e 0%, #ff6b00 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-item {
            position: absolute;
            font-size: 2em;
            opacity: 0.4;
            animation: float-spooky 20s infinite ease-in-out;
        }

        .floating-item:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
        .floating-item:nth-child(2) { left: 85%; top: 25%; animation-delay: 3s; }
        .floating-item:nth-child(3) { left: 25%; top: 65%; animation-delay: 6s; }
        .floating-item:nth-child(4) { left: 75%; top: 55%; animation-delay: 9s; }
        .floating-item:nth-child(5) { left: 45%; top: 35%; animation-delay: 12s; }
        .floating-item:nth-child(6) { left: 15%; top: 75%; animation-delay: 15s; }

        @keyframes float-spooky {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
            25% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
            50% { transform: translateY(-40px) rotate(-5deg); opacity: 0.4; }
            75% { transform: translateY(-20px) rotate(3deg); opacity: 0.6; }
        }

        .game-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .header {
            background: rgba(255, 107, 0, 0.95);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            text-align: center;
            border: 3px solid #2c003e;
        }

        h1 {
            color: #2c003e;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
        }

        .score-board {
            display: flex;
            justify-content: space-around;
            margin-top: 15px;
            font-size: 1.3em;
        }

        .score-item {
            background: #2c003e;
            padding: 10px 20px;
            border-radius: 15px;
            font-weight: bold;
            color: #ff6b00;
            border: 2px solid #ff6b00;
        }

        .game-area {
            background: rgba(44, 0, 62, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            min-height: 500px;
            border: 3px solid #ff6b00;
        }

        .character-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .character {
            font-size: 8em;
            animation: spooky-float 2s infinite ease-in-out;
            display: inline-block;
            cursor: pointer;
            user-select: none;
            filter: drop-shadow(0 0 10px #ff6b00);
        }

        @keyframes spooky-float {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        .speech-bubble {
            background: #ff6b00;
            border: 4px solid #2c003e;
            border-radius: 20px;
            padding: 20px;
            display: inline-block;
            position: relative;
            font-size: 2em;
            font-weight: bold;
            color: white;
            margin-top: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .speech-bubble::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 15px solid transparent;
            border-bottom-color: #2c003e;
        }

        .pumpkins-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .pumpkin-option {
            font-size: 5em;
            cursor: pointer;
            transition: all 0.3s;
            padding: 10px;
            border-radius: 15px;
            user-select: none;
            filter: drop-shadow(0 0 5px #ff6b00);
        }

        .pumpkin-option:hover {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 0 20px #ff6b00);
        }

        .pumpkin-option.clicked {
            animation: explode 1s ease-in-out;
        }

        @keyframes explode {
            0% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: scale(2) rotate(180deg);
                opacity: 0.5;
            }
            100% {
                transform: scale(0) rotate(360deg);
                opacity: 0;
            }
        }

        .pumpkin-option.wrong {
            animation: shake-spooky 0.5s;
        }

        @keyframes shake-spooky {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            25% { transform: translateX(-15px) rotate(-10deg); }
            50% { transform: translateX(15px) rotate(10deg); }
            75% { transform: translateX(-15px) rotate(-10deg); }
        }

        .feedback {
            text-align: center;
            font-size: 3em;
            margin-top: 20px;
            font-weight: bold;
            min-height: 60px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .feedback.correct {
            color: #00ff00;
            animation: pulse-glow 0.5s;
        }

        .feedback.wrong {
            color: #ff0000;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px #00ff00); }
            50% { transform: scale(1.1); filter: drop-shadow(0 0 20px #00ff00); }
        }

        .results {
            background: rgba(44, 0, 62, 0.98);
            border: 5px solid #ff6b00;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            display: none;
            margin-top: 20px;
        }

        .results.show {
            display: block;
            animation: slideIn 0.5s;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .results h2 {
            color: #ff6b00;
            font-size: 3em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .result-item {
            font-size: 1.5em;
            margin: 15px 0;
            color: #ff6b00;
            font-weight: bold;
        }

        .play-again-btn {
            background: #ff6b00;
            color: #2c003e;
            border: 3px solid #2c003e;
            border-radius: 15px;
            padding: 20px 40px;
            font-size: 1.5em;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s;
        }

        .play-again-btn:hover {
            background: #2c003e;
            color: #ff6b00;
            border-color: #ff6b00;
            transform: scale(1.05);
        }

        .stars {
            font-size: 3em;
            margin: 20px 0;
        }
