/* 선택지 버튼 */
.choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.choice-btn {
    background: #444;
    color: #e0e0e0;
    border: 2px solid #666;
    padding: 15px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.choice-btn:hover {
    background: #555;
    border-color: #ff6b6b;
}

.choice-btn:disabled {
    background: #2a2a2a;
    color: #666;
    cursor: not-allowed;
    border-color: #333;
}

/* 출신 선택 버튼 */
.choice-btn.origin-btn {
    padding: 20px;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choice-btn.origin-btn .origin-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b6b;
}

.choice-btn.origin-btn .origin-stats {
    font-size: 14px;
    opacity: 0.8;
}