body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #333300; /* Pleasant light green #90EE90*/
    color: black;
}

#instructions {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

#game-area {
    position: relative;
    width: 400px;
    height: 300px;
    border: 2px solid black;
    margin: 20px auto;
    background-color: white;
    overflow: hidden;
}

.number {
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    color: black;
    z-index: 1;
}

.cover {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    font-size: 24px;
}

#scoreboard {
    margin-top: 20px;
    padding: 10px;
    background: white;
    border: 2px solid black;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

#scoreboard h2 {
    margin: 0;
    padding: 5px;
}

#score-list {
    list-style-type: none;
    padding: 0;
}

#score-list li {
    padding: 5px;
    font-size: 18px;
}

button {
    font-size: 14px;
    padding: 8px 14px;
    margin: 8px;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid hotpink;
    width: 60%;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px red;
}

/* Close button */
.close {
    color: hotpink;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: red;
}

#score-list, #score-list li {
    color: black;
}

.round {
    color: white;
}
}