:root {
    --bg-color: #f0f2f5;
    --text-color: #333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    transition: background 0.3s;
}

.container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.word-display {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 1rem 0;
    color: var(--primary-color);
}

input {
    width: 100%;
    padding: 10px;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: white;
}

.game-dashboard {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    font-weight: bold;
}

.controls {
    margin-bottom: 1rem;
}

#difficulty {
    padding: 5px;
    border-radius: 5px;
}
