/* Stardew Valley-inspired styling */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Press Start 2P', cursive;
    background-color: #7EC4CF; /* Stardew Valley sky blue */
}

#ui {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    text-shadow: 2px 2px #000;
    z-index: 10;
}

#magnet {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

#score {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.8); /* Stardew Valley UI color */
    border: 2px solid #000;
    border-radius: 0; /* Remove rounded corners for pixel art style */
    box-shadow: 2px 2px 0 #000;
}