.match-pre-radar {
    display: flex;
    justify-content: center;
    position: relative;
}

.radar-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* ← делает квадрат из блока */
    background: var(--background-color);
    border-radius: 12px;
    padding: 25px;
}

#radarCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

#radar-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


.radar-label-wrapper {
    line-height: 1.15;
    text-align: center;
}


.radar-label {
    font-weight: 600;
    color: var(--primary-text-color);
}

.radar-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.radar-center {
    width: 200px;
    height: 200px;
}

.radar-svg {
    overflow: visible;
}

.radar-grid {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 1;
}

.team-a-poly {
    fill: rgba(255, 122, 69, 0.35); /* твой оранжевый */
    stroke: #ff7a45;
    stroke-width: 2;
}

.team-b-poly {
    fill: rgba(0, 150, 255, 0.25);
    stroke: #0096ff;
    stroke-width: 2;
}

.radar-player {
    white-space: nowrap;
}
