body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    cursor: pointer;
    padding: 0 10px;
    box-sizing: border-box;
}

.clue {
    max-width: 600px;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    color: #555;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.tile {
    width: 50px;
    height: 50px;
    border: 2px solid #d3d6da;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
}

.tile.correct {
    background-color: #6aaa64;
    color: white;
    border-color: #6aaa64;
}

.tile.misplaced {
    background-color: #c9b458;
    color: white;
    border-color: #c9b458;
}

.tile.incorrect {
    background-color: #787c7e;
    color: white;
    border-color: #787c7e;
}

#clear-button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e7e7e7;
}

#clear-button:hover {
    background-color: #ddd;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
