/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== OBS Canvas ===== */
.display-body {
    width: 800px;
    height: 400px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== Scoreboard Wrapper ===== */
.scoreboard {
    width: 800px;
    height: 200px;
    background: linear-gradient(180deg,
            #1f3f8c 0%,
            #1a2f63 100%);
    /* border-radius: 80px; */
    padding: 18px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* ===== Team Row ===== */
.team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Left Side ===== */
.team-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* ===== Logo (KEIN Kreis mehr) ===== */
.team-logo {
    width: 70px;
    /* 👈 feste Breite für Ausrichtung */
    height: 70px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* 👈 wichtig */
}

/* Logo selbst größer */
.team-logo img {
    height: 80px;
    /* 👈 größer */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ===== Team Name ===== */
.team-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ===== Score ===== */
.team-score {
    width: 88px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
}

/* ===== Animation ===== */
@keyframes scoreUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.score-animate {
    animation: scoreUpdate 0.35s ease-in-out;
}