html, body {
    overflow: hidden;
}

body {
    background-image: url("grass2.jpg");
    background-size: cover;
}

#horse {
    position:absolute;
    width: 100px;
    height: 100px;
    user-select: none;
}

#score {
    font-size: 42px;
    font-weight: bolder;
    text-align: right;
    user-select: none;
}

#horsesimulator {
    font-size: 50px;
    font-weight: bolder;
    text-align: right;
    user-select: none;
}

#timer {
    font-size: 32px;
    font-weight: bold;
    text-align: right;
    user-select: none;
    margin-top: 10px;
}

#circle {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: -2;
    user-select: none;
}

#apple, .apple {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: -1;
    user-select: none;
}

#apple1 {
    left: 0px;
    top: 0px;
}

#apple2 {
    left: calc(100% - 20px);
    top: 0px;
}

#apple3 {
    left: 0px;
    top: calc(100% - 20px);
}

#apple4 {
    left: calc(100% - 20px);
    top: calc(100% - 20px);
}

.info {
    text-align: right;
    user-select: none;
}

#flash {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.0;
}

/* Win Form Overlay - minimal styling */
.win-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.win-content {
    background-color: white;
    padding: 20px;
    text-align: center;
}

#leaderboard-list {
    font-weight: bold;
}