.tbs-season-switcher {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 0 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(16, 17, 22, 0.72);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tbs-season-switcher *,
.tbs-season-switcher *::before,
.tbs-season-switcher *::after {
    box-sizing: border-box;
}

.tbs-season-switcher__field {
    display: grid;
    gap: 7px;
    min-width: min(100%, 260px);
}

.tbs-season-switcher__label {
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.tbs-season-switcher__control {
    position: relative;
    display: block;
    width: 100%;
}

.tbs-season-switcher__select {
    width: 100%;
    min-height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid rgba(218, 165, 32, 0.28);
    border-radius: 8px;
    appearance: none;
    background:
        linear-gradient(135deg, rgba(218, 165, 32, 0.16), rgba(255, 255, 255, 0.045)),
        #15161c;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.09);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tbs-season-switcher__select:hover {
    border-color: rgba(218, 165, 32, 0.82);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), 0 0 0 3px rgba(218, 165, 32, 0.14);
}

.tbs-season-switcher__select:focus-visible {
    border-color: #daa520;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.2), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.tbs-season-switcher__select option {
    background: #15161c;
    color: #f8fafc;
    font-weight: 700;
}

.tbs-season-switcher__chevron {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #daa520;
    border-bottom: 2px solid #daa520;
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
}

.tbs-season-switcher__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
}

.tbs-season-switcher__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c8102e;
    box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.18);
}

.tbs-season-switcher--compact {
    justify-content: flex-start;
    margin: 0 0 20px;
}

.tbs-season-switcher--compact .tbs-season-switcher__field {
    min-width: min(100%, 220px);
}

html[data-theme="light"] .tbs-season-switcher {
    border-color: rgba(16, 16, 20, 0.08);
    background: transparent;
    box-shadow: none;
}

html[data-theme="light"] .tbs-season-switcher__label {
    color: rgba(16, 16, 20, 0.58);
}

html[data-theme="light"] .tbs-season-switcher__select {
    border-color: rgba(16, 16, 20, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.9)),
        #fff;
    box-shadow: 0 14px 28px rgba(16, 16, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    color: #101014;
}

html[data-theme="light"] .tbs-season-switcher__select option {
    background: #fff;
    color: #101014;
}

html[data-theme="light"] .tbs-season-switcher__meta {
    color: rgba(16, 16, 20, 0.62);
}

@media (max-width: 720px) {
    .tbs-season-switcher {
        display: grid;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        margin-bottom: 22px;
    }

    .tbs-season-switcher__field {
        min-width: 0;
    }

    .tbs-season-switcher__meta {
        align-items: flex-start;
        flex-wrap: wrap;
        min-height: 0;
        font-size: 0.78rem;
        line-height: 1.35;
    }
}

@media (max-width: 420px) {
    .tbs-season-switcher {
        padding: 12px;
    }

    .tbs-season-switcher__select {
        min-height: 44px;
        padding-left: 14px;
        font-size: 0.9rem;
    }
}
