:root {
    --primary: #10b981; /* Emerald */
    --bg-gradient: linear-gradient(135deg, #d1fae5, #a7f3d0, #6ee7b7);
}

.scoreboard-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: 12px;
}

.settings input {
    width: 60px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    text-align: center;
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #334155;
    border: none;
    text-align: center;
    width: 100%;
    background: transparent;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 5px;
}

.team-score {
    font-size: 5rem;
    font-weight: bold;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.score-controls {
    display: flex;
    gap: 10px;
}

.btn-score {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.1s;
}

.btn-score:active {
    transform: scale(0.9);
}

.btn-add { background: #3b82f6; }
.btn-sub { background: #ef4444; }
