body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

h1 {
    margin-bottom: 20px;
}

.word-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.letter-box {
    width: 40px;
    height: 40px;
    margin: 5px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.letter-box.blank {
    background: #ff4081;
    color: #fff;
}

input {
    padding: 10px;
    font-size: 18px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.submit-btn, .next-btn, .show-answer-btn {
    background: #00e676;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: background 0.3s;
    margin: 10px;
}

.submit-btn:hover, .next-btn:hover, .show-answer-btn:hover {
    background: #66ffa6;
}

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

.counters {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 18px;
}
