body {
    background-color: #ffdae0;
    background-image: radial-gradient(#ffb6c1 2px, transparent 2px);
    background-size: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

#game-board {
    width: 400px;
    height: 550px;
    background: rgba(255, 255, 255, 0.9);
    border: 8px double #ff1493;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
}

#gloomy {
    width: 85px;
    height: 85px;
    position: absolute;
    bottom: 15px;
    left: 157px;
    background: url('gloomy.png') no-repeat center/contain;
    z-index: 10;
    filter: drop-shadow(0 0 5px #ffb6c1);
}

.drop {
    position: absolute;
    font-size: 32px;
    user-select: none;
    z-index: 5;
    filter: drop-shadow(2px 2px 0px #fff);
}

#score-display {
    color: #ff1493;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 0px #fff;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    border: 3px solid #ff1493;
    margin-bottom: 10px;
}

@keyframes flash {
    0% { background: #fff; }
    50% { background: #ffb3b3; }
    100% { background: #fff; }
}

.hit {
    animation: flash 0.2s linear;
}
