
    .game-container {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .word-box {
        font-size: 4rem;
        font-weight: bold;
        margin: 30px 0;
        padding: 20px;
        border: 2px solid #ddd;
        border-radius: 8px;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .color-option {
        padding: 20px;
        font-size: 1.5rem;
        border-radius: 8px;
        border: none;
        color: white;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .color-option:hover {
        transform: scale(1.05);
    }

    #start-button, #restart-button {
        padding: 15px 30px;
        font-size: 1.2rem;
        cursor: pointer;
        background-color: #2563EB;
        color: white;
        border: none;
        border-radius: 8px;
    }

    #results-area {
        margin-top: 30px;
    }
