body {
    font-family: Arial, sans-serif;
    background-color: #550000;  /* Dark Red background */
    margin: 0;
    padding: 0;
    color: #f1f1f1;  /* Light gray text for contrast */
    text-align: center;
}

h1 {
    margin-top: 20px;
    color: #ff0000;  /* Bright Red for the header */
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for better readability */
}

.game-container {
    margin: 20px;
    padding: 20px;
    background-color: #cc0000;  /* Dark Red for game containers */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

button {
    margin: 5px;
    padding: 12px 25px;
    background-color: #ff0000;  /* Bright Red for buttons */
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

button:hover {
    background-color: #b20000;  /* Slightly darker red when hovering */
}

#click-note {
    margin-top: 10px;
    font-size: 14px;
    color: #f2f2f2;  /* Light gray for the note */
}

/* Input fields */
input[type="number"] {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
}

/* Add space between sections */
.game-container {
    margin-top: 30px;
}

/* Leaderboard Section */
.leaderboard-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #990000;  /* Even darker red for leaderboard background */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.leaderboard-section h3 {
    color: #f1f1f1;  /* Light color for leaderboard headings */
}

.leaderboard-section p {
    color: #f1f1f1;  /* Light color for leaderboard text */
    font-size: 16px;
    margin: 5px 0;
}
/* Specific styles for Word Scramble Game */
#word-scramble-feedback {
    margin-top: 10px;
    color: #f1f1f1;
    font-size: 16px;
}