body {
    background-color: #282828;
    color: wheat;
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#game-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#leaderboard {
    width: 250px;
    background-color: #3d3d3d;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#leaderboard h2 {
    margin-top: 0;
}

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

#leaderboard-list li {
    background-color: #4f4f4f;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#squares-wrapper {
    width: 800px;
    height: 800px;
    border: 2px solid gray;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#squares-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.square {
    width: 60px;
    height: 60px;
    background-color: red;
    position: absolute;
    transition: background-color 0.5s ease;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.square.unique {
    background-image: url('anomi.png'); /* Unique square image */
}

#message {
    margin-top: 20px;
    font-size: 1.2em;
    text-align: center;
}

#username-input {
    margin-top: 20px;
    text-align: center;
}

#username {
    padding: 5px;
    font-size: 1em;
}

#submit-username {
    padding: 5px 10px;
    font-size: 1em;
    background-color: #f39c12;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#submit-username:hover {
    background-color: #e67e22;
}

/* Disclaimer */
#disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f39c12;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
    z-index: 1000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-content {
    background-color: #3d3d3d;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content button {
    padding: 10px 20px;
    background-color: #f39c12;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.modal-content button:hover {
    background-color: #e67e22;
}

#enable-music {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #4CAF50; /* Green background */
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#enable-music:hover {
    background-color: #45a049; /* Darker green on hover */
}