/* Saniye Savaşları Game Styles */
.game-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Settings View */
.settings-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.settings-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.settings-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Game View */
.number-display {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 40px 0;
    transition: transform 0.2s;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 100%;
    background: var(--secondary-color);
    width: 100%;
    transform-origin: left;
}

.counter-badge {
    background: var(--bg-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    color: var(--text-light);
}

/* Result View */
.history-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.history-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: 50%;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.score-box {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 20px 0;
}