/* 数字回忆游戏特定样式 */

.game-control-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.config-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.config-label {
    font-size: 0.95rem;
    color: #666;
    white-space: nowrap;
}

.config-input {
    text-align: center;
}

#gameContent {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-display {
    font-size: 4rem;
    font-weight: bold;
    color: #1976d2;
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 12px;
    min-width: 300px;
}

.input-area {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .config-section {
        flex-direction: column;
        width: 100%;
    }
    
    .config-input {
        width: 100% !important;
    }
}

