body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000; /* Black background for a retro vibe */
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

#basket {
    width: 80px;
    height: 16px;
    background-color: black; /* Black color for the basket */
    border: 1px solid white; /* Thin white outline */
    position: absolute;
    bottom: 35%; /* 40% from the bottom */
    left: calc(50% - 40px);
}

#drop {
    width: 16px;
    height: 16px;
    background-color: #fff; /* White color */
    position: absolute;
    top: -15px;
}

#middle-line {
    width: 100%;
    height: 1px;
    background-color: white; /* Thin white line */
    position: absolute;
    bottom: calc(35% + 8px);
    left: 0;
}

#score-display {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    font-family: 'Courier New', monospace; /* Retro font */
    color: #fff;
}
