/* word-game.css - Galaxy Theme */

.word-game-area {
    width: 100%;
    text-align: center;
    font-family: var(--galaxy-font);
    background-color: var(--game-bg-color);
    border: 1px solid var(--game-grid-color);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

#question-text {
    font-family: var(--galaxy-font);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2rem;
    min-height: 50px;
    color: var(--title-color);
}

#options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
    width: 100%;
    max-width: 400px;
}

.option-button {
    font-family: var(--galaxy-font);
    background-color: var(--panel-color);
    color: var(--text-color);
    border: 1px solid var(--game-grid-color);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.option-button:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.option-button:active {
    transform: scale(0.97);
}

.option-button.correct {
    background-color: #5cc99b;
    color: white;
    border-color: #5cc99b;
}

.option-button.wrong {
    background-color: #e07070;
    color: white;
    border-color: #e07070;
}

#start-button {
    margin-top: 2rem;
}

#hearts {
    color: var(--info-color);
    font-weight: bold;
}

/* 반응형 */
@media (max-width: 600px) {
    .word-game-area {
        min-height: 250px;
        padding: 15px;
    }

    #question-text {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .option-button {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    #options-container {
        max-width: 100%;
    }
}