body {
    background: #111;
    font-family: Sahel, Arial, sans-serif;
    color: #fff;
}

.scoreboard {
    width: 100%;
    margin: 40px 10px;
}

#container {
    position: relative;
}

.score-row {
    display: grid;
    grid-template-columns: 50px 60px 1fr 55% 80px;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    margin-bottom: 8px;
    background: #222;
    border-radius: 8px;
}

.rank {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.name {
    font-size: 20px;
    font-weight: 500;
}

.categories {
    display: flex;
    gap: 6px;
}

.categories span {
    background: #3a3a3a;
    width: 9%;
    text-align: center;
    padding: 4px 4px;
    border-radius: 4px;
    font-size: 12px;
}

.score-badge {
    /* background: #32c739; */
    padding: 6px 2px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

.blue {
    background-color: darkblue;
}

.subtitle {
    font-size: small;
    color: gray;
    line-height: 1em;
}