* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    overflow: hidden;
}

.stadium-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stadium-svg {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Стили для секторов - базовые настройки */
.stadium-svg path[data-component="svg__section"] {
    cursor: pointer;
    transition: all 0.2s ease;
    stroke: #fff;
    stroke-width: 2;
    fill: rgb(148, 148, 148) !important;
    /* Серый цвет для всех по умолчанию */
}

/* Выделенные секторы синим цветом */
.stadium-svg path[data-section-name="103E"],
.stadium-svg path[data-section-name="104E"],
.stadium-svg path[data-section-name="105E"] {
    fill: #c230ff !important;
}

.stadium-svg path[data-section-name="120"],
.stadium-svg path[data-section-name="120E"],
.stadium-svg path[data-section-name="119E"] {
    fill: #01fff1 !important;
}

.stadium-svg path[data-section-name="125"],
.stadium-svg path[data-section-name="124"],
.stadium-svg path[data-section-name="124E"],
.stadium-svg path[data-section-name="123E"],
.stadium-svg path[data-section-name="122E"] {
    fill: #610199 !important;
}

/* Hover эффект для выделенных секторов */
.stadium-svg path[data-section-name="125"]:hover,
.stadium-svg path[data-section-name="124"]:hover,
.stadium-svg path[data-section-name="124E"]:hover,
.stadium-svg path[data-section-name="123E"]:hover,
.stadium-svg path[data-section-name="122E"]:hover,
.stadium-svg path[data-section-name="120"]:hover,
.stadium-svg path[data-section-name="120E"]:hover,
.stadium-svg path[data-section-name="119E"]:hover,
.stadium-svg path[data-section-name="118E"]:hover,
.stadium-svg path[data-section-name="103E"]:hover,
.stadium-svg path[data-section-name="104E"]:hover,
.stadium-svg path[data-section-name="105E"]:hover {
    fill: rgb(31, 63, 162) !important;
    stroke: #333;
    stroke-width: 3;
}

/* Обычный hover для остальных секторов */
.stadium-svg path[data-component="svg__section"]:hover {
    opacity: 0.8;
    filter: brightness(1.1);
    stroke: #333;
    stroke-width: 3;
}

/* Специальные зоны с оригинальными цветами */
.stadium-svg path[data-section-name*="GOLDEN"] {
    fill: #ffba15 !important;
}

.stadium-svg path[data-section-name="PISTA GENERAL"] {
    fill: rgb(148, 148, 148) !important;
}

.stadium-svg path[data-section-name="PALCO"] {
    fill: rgb(148, 148, 148) !important;
}

.stadium-svg path[data-section-name="PRENSA"] {
    fill: rgb(148, 148, 148) !important;
}

.stadium-svg path[data-section-name*="MOVILIDAD"] {
    fill: rgb(148, 148, 148) !important;
}

.stadium-svg text {
    letter-spacing: 0.02em;
    font-weight: 400;
    pointer-events: none;
    user-select: none;
    fill: #fff;
}
