body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #222;
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#dummy {
    position: absolute;
    width: 100px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dummy-head {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #F2D2BD;
    border-radius: 50%;
    top: 0;
    left: 25px;
}

.dummy-body {
    position: absolute;
    width: 50px;
    height: 60px;
    background-color: #6A5ACD;
    top: 50px;
    left: 25px;
}

.dummy-left-hand, .dummy-right-hand {
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: #F2D2BD;
    top: 50px;
}

.dummy-left-hand {
    left: 5px;
    transform: rotate(-20deg);
}

.dummy-right-hand {
    right: 5px;
    transform: rotate(20deg);
}

.dummy-left-leg, .dummy-right-leg {
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: #4169E1;
    top: 110px;
}

.dummy-left-leg {
    left: 20px;
    transform: rotate(-10deg);
}

.dummy-right-leg {
    right: 20px;
    transform: rotate(10deg);
}

#kill-controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

#kill-effect-selector, #kill-button {
    padding: 10px;
    font-size: 16px;
}

.lightning-bolt {
    position: absolute;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255,255,255,0.8) 10%, 
        rgba(255,255,255,1) 20%, 
        rgba(173,216,230,0.8) 50%, 
        transparent 100%);
    transform-origin: top center;
    pointer-events: none;
    z-index: 10;
}

.money-effect {
    position: absolute;
    width: 20px;
    height: 10px;
    background-color: green;
    transform: rotate(45deg);
    opacity: 0;
}

.heartbeat-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
}

.absorb-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.7);
    transform: scale(0);
    pointer-events: none;
    z-index: 10;
}

.black-hole-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle at center, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.5) 50%, 
        rgba(0,0,0,0.2) 80%, 
        transparent 100%
    );
    border-radius: 50%;
    border: 3px solid rgba(50,50,50,0.7);
    transform: scale(0);
    pointer-events: none;
    z-index: 10;
}

.cupid-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg, 
        rgba(255, 192, 203, 0.7) 0%, 
        rgba(255, 105, 180, 0.9) 100%
    );
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.cupid-heart {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: pink;
    transform: rotate(45deg);
    opacity: 0;
}

.cherub-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg, 
        rgba(255, 250, 205, 0.7) 0%, 
        rgba(255, 255, 224, 0.9) 100%
    );
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.cherub-wing {
    position: absolute;
    width: 30px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
}

.left-wing {
    left: -15px;
    transform: rotate(-45deg);
}

.right-wing {
    right: -15px;
    transform: rotate(45deg);
}

.matrix-effect {
    position: absolute;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    z-index: 10;
}

.bouquet-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg, 
        rgba(255, 182, 193, 0.7) 0%, 
        rgba(255, 105, 180, 0.9) 100%
    );
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.bouquet-flower {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: pink;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
}

.numbers-effect {
    position: absolute;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    z-index: 10;
}

.blood-splatter {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: crimson;
    border-radius: 50%;
    transform: scale(0);
}

.axe-effect {
    position: absolute;
    width: 80px;
    height: 20px;
    background: linear-gradient(
        45deg, 
        #8B4513 40%, 
        silver 60%, 
        #8B4513 100%
    );
    transform-origin: left center;
    border-radius: 5px;
    pointer-events: none;
    z-index: 10;
}

.axe-blood-splatter {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: crimson;
    border-radius: 50%;
    transform: scale(0);
}

.grave-effect {
    position: absolute;
    width: 200px;
    height: 100px;
    background: linear-gradient(
        to bottom, 
        rgba(50, 50, 50, 0.7) 0%, 
        rgba(30, 30, 30, 0.9) 50%, 
        rgba(20, 20, 20, 1) 100%
    );
    border-radius: 10px;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.grave-cross {
    position: absolute;
    width: 10px;
    height: 50px;
    background-color: rgba(100, 100, 100, 0.8);
    top: 25px;
    left: 95px;
    transform: scale(0);
    opacity: 0;
}

.grave-cross.horizontal {
    width: 50px;
    height: 10px;
    top: 40px;
    left: 75px;
}