.stats-player-pool-control {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
}

.stats-player-pool-control__label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
}

.stats-player-pool {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(10, 13, 20, 0.72);
}

.stats-player-pool__option {
    padding: 8px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.stats-player-pool__option:hover,
.stats-player-pool__option:focus-visible {
    color: #fff;
}

.stats-player-pool__option:focus-visible {
    outline: 2px solid #f4c95d;
    outline-offset: 2px;
}

.stats-player-pool__option.is-active {
    background: #d8aa36;
    color: #11131a;
}

html[data-theme="light"] .stats-player-pool {
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .stats-player-pool-control__label {
    color: rgba(15, 23, 42, 0.58);
}

html[data-theme="light"] .stats-player-pool__option {
    color: rgba(15, 23, 42, 0.66);
}

html[data-theme="light"] .stats-player-pool__option:hover,
html[data-theme="light"] .stats-player-pool__option:focus-visible {
    color: #0f172a;
}

html[data-theme="light"] .stats-player-pool__option.is-active {
    color: #11131a;
}

@media (max-width: 480px) {
    .stats-player-pool-control {
        width: 100%;
    }

    .stats-player-pool {
        display: flex;
        width: 100%;
    }

    .stats-player-pool__option {
        flex: 1 1 50%;
        text-align: center;
    }
}
