body {
    font-family: 'Montserrat', sans-serif;
    background-color: #282c34;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #3a3f47;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

h1 {
    color: #61dafb;
    margin-bottom: 10px;
    font-size: 2.2em;
}

.instructions {
    font-size: 1.1em;
    color: #bbbbbb;
    margin-bottom: 30px;
}

.word-display {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.color-btn {
    padding: 20px;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease;
}

.color-btn:hover {
    transform: translateY(-2px);
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
    color: #e0e0e0;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    color: #61dafb;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s ease;
}

.back-btn:hover {
    color: #21a1f1;
}
