* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #282c36;
    color: white;
    text-align: center;
}

.container {
    background: #3a3f4b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
}

canvas {
    display: block;
    margin: 20px auto;
    background: white;
}

#word {
    font-size: 24px;
    letter-spacing: 8px;
    margin: 20px 0;
}

#keyboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    gap: 5px;
    max-width: 400px;
    margin: 10px auto;
}

button {
    background: #ff4757;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #ff6b81;
}

#reset {
    background: #2ed573;
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
}
