/* 홀/짝 게임 스타일 */

.game-display {
    text-align: center;
    padding: 30px 0;
}

.number-display {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.number-display.rolling {
    animation: pulse 0.1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.result-text {
    font-size: 1.2rem;
    font-weight: 700;
    min-height: 30px;
}

.result-text.odd { color: var(--accent-red); }
.result-text.even { color: var(--accent-blue); }

/* 선택 버튼 */
.choice-section {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.choice-btn {
    flex: 1;
    padding: 25px 15px;
    border-radius: 15px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    color: #fff;
}

.choice-btn[data-choice="odd"] {
    border-color: var(--accent-red);
}

.choice-btn[data-choice="even"] {
    border-color: var(--accent-blue);
}

.choice-btn.selected[data-choice="odd"] {
    background: var(--accent-red);
    color: #fff;
}

.choice-btn.selected[data-choice="even"] {
    background: var(--accent-blue);
    color: #fff;
}

.choice-btn:disabled {
    opacity: 0.5;
}

.choice-label {
    font-size: 1.8rem;
    font-weight: 800;
}

.choice-odds {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 기록 섹션 */
.history-section {
    padding: 0;
    margin-top: 15px;
}

.history-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.history-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.history-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.history-item.odd {
    background: var(--accent-red);
    color: #fff;
}

.history-item.even {
    background: var(--accent-blue);
    color: #fff;
}
