body {
    background: #121213;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
}

h1 {
    font-size: 48px;
    margin-bottom: 5px;
}

.subtitle {
    color: #999;
    margin-bottom: 30px;
}

#board {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
}

.row {
    display: flex;
    gap: 5px;
}

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

.correct {
    background: #538d4e;
    border-color: #538d4e;
}

.present {
    background: #b59f3b;
    border-color: #b59f3b;
}

.absent {
    background: #3a3a3c;
    border-color: #3a3a3c;
}

#guessInput {
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
    width: 220px;
    text-align: center;
    margin-bottom: 15px;
}

.buttons {
    margin-bottom: 20px;
}

button {
    padding: 10px 16px;
    font-size: 18px;
    margin: 0 5px;
    cursor: pointer;
}

#message {
    margin-top: 20px;
    font-size: 20px;
}
