:root {
    --bg: #050816;
    --surface: rgba(12, 18, 40, 0.7);
    --surface-border: rgba(255,255,255,0.08);
    --text: #f5f7ff;
    --muted: #98a2c6;
    --link-visited: #aeb7d3;
    --accent: #c6ff00;
    --accent-dark: #95c400;
    --shadow: 0 10px 40px rgba(0,0,0,.35);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background:
            radial-gradient(circle at top left, rgba(118,255,3,.12), transparent 25%),
            radial-gradient(circle at top right, rgba(0,145,255,.14), transparent 20%),
            linear-gradient(180deg, #070b18 0%, #050816 100%);
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--text);
}
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}
a:visited {
    color: var(--link-visited);
}


.container {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.aside-backdrop {
    display: none;
}

.glass {
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== Logo ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    user-select: none;
}

.logo__sport {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
}

.logo__live {
    background: var(--accent);
    color: #0d111f;
    font-size: .78rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(198,255,0,.45);
}

/* ===== Navigation ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    position: relative;
    text-decoration: none;
    color: var(--muted);
    font-size: .96rem;
    font-weight: 600;
    transition: .25s ease;
}

.nav__link:hover,
.nav__link:visited:hover {
    color: white;
}

.nav__link.active:visited {
    color: white;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 10px;
    transition: width .25s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: white;
}

/* ===== Actions ===== */
.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search {
    position: relative;
}

.search-btn,
.mobile-menu-btn {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    border: 1px solid var(--surface-border);
    background: rgba(255,255,255,.03);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.search-btn:hover,
.mobile-menu-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(198,255,0,.4);
    background: rgba(198,255,0,.08);
}

.search-btn i,
.mobile-menu-btn i {
    font-size: 1.3rem;
}

.mobile-menu-btn__icon--close {
    display: none;
}

body.is-aside-open .mobile-menu-btn__icon--menu {
    display: none;
}

body.is-aside-open .mobile-menu-btn__icon--close {
    display: block;
}

/* ===== Expand Search ===== */
.search__box {
    position: absolute;
    top: 60px;
    right: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8, 12, 28, 0.96);
    backdrop-filter: blur(20px);
    transition:
            width .35s cubic-bezier(.4,0,.2,1),
            opacity .25s ease,
            padding .25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.search__box.active {
    width: 320px;
    opacity: 1;
    padding: 0 18px;
}

.search__box i {
    color: var(--muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search__box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: .96rem;
    font-family: inherit;
}

.search__box input::placeholder {
    color: #7f89ad;
}

/* ===== Profile ===== */
.profile-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 8px;
    border-radius: 18px;
    border: 1px solid var(--surface-border);
    background: rgba(255, 255, 255, .04);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.profile-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(198,255,0,.45);
    box-shadow: 0 10px 30px rgba(198,255,0,.08);
}

.profile-btn__avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:
            linear-gradient(135deg, #d946ef 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn__avatar i {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .nav {
        gap: 22px;
    }
}

@media (max-width: 920px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .profile-btn span {
        display: none;
    }

    .profile-btn {
        padding-right: 8px;
    }
}

.search--sidebar {
    display: none;
}

.search__box--sidebar {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    opacity: 1;
    overflow: visible;
    padding: 0 16px;
    box-shadow: none;
}

.search__box--sidebar.is-open,
.search__box--sidebar.active {
    width: 100%;
    opacity: 1;
    padding: 0 16px;
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1440px);
    }

    .header__wrapper {
        gap: 14px;
    }
    .header__actions {
        gap: 6px;
    }
    .profile-btn {
        padding: 0;
    }
    .search--header {
        display: none;
    }
    .search--sidebar {
        display: block;
        margin-bottom: 14px;
    }
    .search-btn,
    .notification-btn,
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .logo__sport {
        font-size: 1.4rem;
    }
}

/* ===== Layout (3 columns) ===== */
.layout {
    display: grid;
    grid-template-columns:
        minmax(220px, 280px)
        minmax(0, 1fr)
        minmax(240px, 300px);
    gap: 24px;
    align-items: start;
    padding-top: 24px;
}

.content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3.5vw, 36px);
    padding-bottom: 12px;
}

/* ===== Контент редактора (.full-text) ===== */
.full-text {
    color: var(--text);
    line-height: 1.7;
    word-wrap: break-word;
}

.full-text > :first-child {
    margin-top: 0;
}

.full-text > :last-child {
    margin-bottom: 0;
}

.full-text p {
    margin: 0 0 1em;
}

.full-text h2,
.full-text h3,
.full-text h4,
.full-text h5,
.full-text h6 {
    margin: 1.35em 0 0.65em;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
}

.full-text h2 { font-size: 1.35rem; }
.full-text h3 { font-size: 1.15rem; }
.full-text h4 { font-size: 1.02rem; }

.full-text strong,
.full-text b {
    font-weight: 700;
    color: #fff;
}

.full-text em,
.full-text i:not([class]) {
    font-style: italic;
    color: var(--muted);
}

.full-text ul,
.full-text ol {
    margin: 0 0 1em;
    padding-left: 1.35em;
}

.full-text li {
    margin-bottom: 0.35em;
}

.full-text li::marker {
    color: var(--accent);
}

.full-text blockquote {
    margin: 1em 0;
    padding: 14px 18px;
    border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0;
    background: rgba(198, 255, 0, 0.06);
    color: var(--muted);
}

.full-text hr {
    margin: 1.5em 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.full-text img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.full-text table {
    width: 100%;
    margin: 1em 0;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.full-text th,
.full-text td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.full-text th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
}

.full-text pre,
.full-text code {
    font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
    font-size: 0.88em;
}

.full-text pre {
    margin: 1em 0;
    padding: 14px 16px;
    overflow-x: auto;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.full-text code {
    padding: 0.15em 0.4em;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

/* Ссылки без класса — яркий accent, не синий браузерный */
.full-text a:not([class]),
.full-text a[class=""] {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(198, 255, 0, 0.5);
    text-underline-offset: 3px;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease,
        filter 0.2s ease;
}

.full-text a:not([class]):hover,
.full-text a[class=""]:hover,
.full-text a:not([class]):focus-visible,
.full-text a[class=""]:focus-visible {
    color: #e8ff80;
    text-decoration-color: var(--accent);
    filter: brightness(1.1);
}

.full-text a:not([class]):visited,
.full-text a[class=""]:visited {
    color: var(--link-visited);
}

/* Пустые ссылки без класса: нет текста или пустой href */
.full-text a:not([class]):empty,
.full-text a[class=""]:empty,
.full-text a:not([class]):blank,
.full-text a[class=""]:blank {
    display: inline-block;
    min-width: 2.75em;
    min-height: 1.35em;
    vertical-align: middle;
    padding: 0 0.35em;
    border-radius: 8px;
    border: 1px dashed rgba(198, 255, 0, 0.45);
    background: rgba(198, 255, 0, 0.1);
    text-decoration: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.full-text a:not([class]):empty::after,
.full-text a[class=""]:empty::after,
.full-text a:not([class]):blank::after,
.full-text a[class=""]:blank::after {
    content: "\2192";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 1.35em;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.full-text a:not([class]):empty:hover,
.full-text a[class=""]:empty:hover,
.full-text a:not([class]):blank:hover,
.full-text a[class=""]:blank:hover {
    border-color: var(--accent);
    background: rgba(198, 255, 0, 0.18);
    filter: brightness(1.08);
}

.full-text a:not([class]):empty:hover::after,
.full-text a[class=""]:empty:hover::after,
.full-text a:not([class]):blank:hover::after,
.full-text a[class=""]:blank:hover::after {
    color: #e8ff80;
}

/* Пустой или якорный href */
.full-text a:not([class])[href=""],
.full-text a:not([class])[href="#"],
.full-text a[class=""][href=""],
.full-text a[class=""][href="#"] {
    text-decoration-style: dashed;
    text-underline-offset: 3px;
}

.full-text a:not([class]):not([href]),
.full-text a[class=""]:not([href]) {
    color: var(--muted);
    text-decoration-color: rgba(152, 162, 198, 0.5);
    cursor: not-allowed;
}

.full-text a:not([class]):not([href]):hover,
.full-text a[class=""]:not([href]):hover {
    color: var(--muted);
    filter: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 16px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--accent);
    color: #0b1020;
    box-shadow: 0 8px 28px rgba(198, 255, 0, 0.22);
}

.btn--primary:hover {
    box-shadow: 0 12px 36px rgba(198, 255, 0, 0.32);
}

.btn--primary:visited {
    color: #0b1020;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn--ghost:hover {
    border-color: rgba(198, 255, 0, 0.35);
    background: rgba(198, 255, 0, 0.08);
}

.btn--ghost:visited {
    color: var(--text);
}

.btn--ghost:visited:hover {
    border-color: rgba(198, 255, 0, 0.35);
    background: rgba(198, 255, 0, 0.08);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.btn--outline:hover {
    border-color: rgba(198, 255, 0, 0.45);
    color: var(--accent);
}

.btn--wide {
    width: 100%;
}

/* ----- Hero ----- */
.hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.hero__viewport {
    position: relative;
    min-height: clamp(300px, 42vw, 440px);
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-color: #0b1020;
    background-image:
        linear-gradient(105deg, rgba(5, 8, 22, 0.92) 0%, rgba(5, 8, 22, 0.45) 42%, rgba(5, 8, 22, 0.25) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 8, 22, 0.9) 0%, transparent 55%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(22px, 4vw, 40px);
    padding-bottom: clamp(72px, 12vw, 100px);
    max-width: min(640px, 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 8px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__badge--live {
    color: #fff;
    background: rgba(220, 38, 38, 0.95);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.35);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: hero-pulse 1.4s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.hero__tournament {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__title {
    margin: 0;
    font-size: clamp(1.55rem, 2.8vw + 0.6rem, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hero__lede {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.45;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.hero__chrome {
    position: absolute;
    right: clamp(14px, 3vw, 28px);
    bottom: clamp(14px, 3vw, 28px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero__dot:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.55);
}

.hero__dot--active {
    background: var(--accent);
    transform: scale(1.15);
}

.hero__arrows {
    display: flex;
    gap: 8px;
}

.hero__arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 12, 28, 0.65);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.hero__arrow:hover {
    border-color: rgba(198, 255, 0, 0.4);
    background: rgba(198, 255, 0, 0.12);
    color: var(--accent);
}

.hero__arrow i {
    font-size: 1.35rem;
}

/* ----- Tournaments ----- */
.tournaments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tournaments__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.tournaments__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tournaments__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-inline: -4px;
    padding-inline: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(198, 255, 0, 0.35) transparent;
}

.tournaments__track:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 12px;
}

.tournaments__track::-webkit-scrollbar {
    height: 6px;
}

.tournaments__track::-webkit-scrollbar-thumb {
    background: rgba(198, 255, 0, 0.25);
    border-radius: 99px;
}

.tournament-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: min(200px, 78vw);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 30, 0.55);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tournament-card:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 255, 0, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.tournament-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament-card__logo--ucl {
    background: linear-gradient(135deg, #1e3a5f, #0c1a2e);
}

.tournament-card__logo--epl {
    background: linear-gradient(135deg, #3d195b, #1a0a2e);
}

.tournament-card__logo--laliga {
    background: linear-gradient(135deg, #c41e3a, #5c0f18);
}

.tournament-card__logo--khl {
    background: linear-gradient(135deg, #0d47a1, #031525);
    font-size: 0.62rem;
}

.tournament-card__logo--nba {
    background: linear-gradient(135deg, #c9082a, #4a0010);
    font-size: 0.65rem;
}

.tournament-card__logo--ufc {
    background: linear-gradient(135deg, #1a1a1a, #000);
    font-size: 0.7rem;
}

.tournament-card__logo--wta {
    background: linear-gradient(135deg, #7c3aed, #2e1065);
    font-size: 0.65rem;
}

.tournament-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tournament-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tournament-card__sport {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

/* ----- Schedule ----- */
.schedule {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 30, 0.5);
    padding: clamp(18px, 3vw, 26px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.schedule__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule__title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.schedule__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.schedule__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.schedule__pill {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.schedule__pill:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.schedule__pill--active {
    background: rgba(198, 255, 0, 0.14);
    border-color: rgba(198, 255, 0, 0.45);
    color: var(--accent);
}

.schedule__date-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: min(200px, 100%);
}

.schedule__date-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7f89ad;
}

.schedule__select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.schedule__select-icon {
    position: absolute;
    left: 12px;
    font-size: 1.1rem;
    color: var(--muted);
    pointer-events: none;
    font-style: normal;
    line-height: 1;
}

.schedule__select {
    width: 100%;
    appearance: none;
    padding: 11px 40px 11px 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 8, 22, 0.75);
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.schedule__select:hover,
.schedule__select:focus-visible {
    outline: none;
    border-color: rgba(198, 255, 0, 0.4);
}

.schedule__select-caret {
    position: absolute;
    right: 12px;
    font-size: 1.1rem;
    color: var(--muted);
    pointer-events: none;
    font-style: normal;
    line-height: 1;
}

.schedule__panels {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule__panels > .schedule__panel {
    display: none;
}

.schedule__panels > .schedule__panel.is-active {
    display: flex;
    flex-direction: column;
}

.schedule__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule__row {
    display: grid;
    grid-template-columns: 76px 40px minmax(0, 1fr) auto;
    gap: 12px 14px;
    align-items: center;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shortstory-news__row {
    display: grid;
    grid-template-columns: 76px 60px minmax(0, 1fr) auto;
    gap: 12px 14px;
    align-items: center;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule__row:last-of-type {
    border-bottom: none;
}

.shortstory-news__row:last-of-type {
    border-bottom: none;
}

.schedule__when {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule__when time {
    font-size: 0.95rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.shortstory-news__when {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shortstory-news__when time {
    font-size: 0.95rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.schedule__date-short {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}

.shortstory-news__date-short {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}

.schedule__sport {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.schedule__sport i {
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1;
}

.schedule__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule__league {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.schedule__match {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.schedule__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.schedule__more:hover {
    border-color: rgba(198, 255, 0, 0.35);
    background: rgba(198, 255, 0, 0.08);
    color: var(--accent);
}

.schedule__more:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.schedule__footer {
    margin-top: 4px;
}

@media (max-width: 720px) {
    .schedule__row {
        grid-template-columns: 64px 36px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .schedule__more {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }

    .schedule__sport {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 520px) {
    .hero__inner {
        padding-bottom: 96px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Right widgets column ===== */
.widgets {
    container-type: inline-size;
    container-name: widgets;

    position: sticky;
    top: 110px;

    width: 100%;
    padding: 22px 20px;

    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.06);

    background: rgba(10, 14, 30, 0.78);
    backdrop-filter: blur(20px);

    box-shadow: 0 10px 40px rgba(0,0,0,.35);

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.widgets__block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.widgets__block--news {
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.widgets__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.widgets__head--row {
    flex-wrap: wrap;
}

.widgets__title {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f89ad;
}

.widgets__link-top,
.widgets__link-all,
.widgets__link-top:visited,
.widgets__link-all:visited
{
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.widgets__link-top:hover,
.widgets__link-all:hover,
.widgets__link-top:visited:hover,
.widgets__link-all:visited:hover
{
    opacity: 0.85;
}

.widgets__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widgets__live-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
}

.widgets__live-badge {
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(239, 68, 68, 0.95);
}

.widgets__live-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widgets__live-teams {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.widgets__live-score {
    font-size: 0.92rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--muted);
}

/* Single custom item template: live-shorty.tpl */
.live-shorty__teams {
    text-decoration: none;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-shorty__teams:hover {
    color: var(--accent);
}

.live-shorty__time {
    font-size: 0.78rem;
    font-weight: 600;
}

.widgets__foot {
    margin-top: 2px;
}

.widgets__news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.widgets__news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widgets__news-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(198,255,0,.15), rgba(0,145,255,.12));
    border: 1px solid rgba(255,255,255,.06);
}

.widgets__news-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.widgets__news-headline {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.widgets__news-headline:hover {
    color: var(--accent);
}

.widgets__news-time {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Single custom item template: news-shorty.tpl */
.news-shorty__headline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-shorty__time {
    font-variant-numeric: tabular-nums;
}

@container widgets (max-width: 260px) {
    .widgets__title {
        font-size: 0.78rem;
    }

    .widgets__news-thumb {
        width: 44px;
        height: 44px;
    }
}

/* ===== Sidebar ===== */
.sidebar {
    position: sticky;
    top: 110px;

    width: 100%;

    padding: 24px;

    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.06);

    background: rgba(10, 14, 30, 0.78);
    backdrop-filter: blur(20px);

    box-shadow:
            0 10px 40px rgba(0,0,0,.35);

    overflow: hidden;
}

/* ===== Top ===== */
.sidebar__top {
    margin-bottom: 28px;
}

.sidebar__close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.sidebar__close:hover {
    border-color: rgba(198, 255, 0, 0.4);
    background: rgba(198, 255, 0, 0.1);
}

.sidebar__close i {
    font-size: 1.35rem;
}

.sidebar__label {
    color: #7f89ad;

    font-size: .82rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.sidebar__label--mobile-title,
.sidebar__nav-site,
.sidebar__sports-head--mobile-only {
    display: none;
}

.sidebar__nav-site {
    flex-direction: column;
    gap: 8px;
}

.sidebar__sports-head--mobile-only {
    margin-bottom: 4px;
}

/* ===== Navigation ===== */
.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar__nav-list > li {
    margin: 0;
}

.sidebar__link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 18px;

    border-radius: 18px;

    text-decoration: none;

    color: #aeb7d3;
    font-weight: 600;

    transition:
            background .25s ease,
            transform .25s ease,
            color .25s ease;
}

.sidebar__link::before {
    content: '';

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
            linear-gradient(
                    90deg,
                    rgba(198,255,0,.14),
                    transparent
            );

    opacity: 0;

    transition: opacity .25s ease;
}

.sidebar__link:hover::before,
.sidebar__link.active::before {
    opacity: 1;
}

.sidebar__link:hover,
.sidebar__link:visited:hover,
.sidebar__link.active,
.sidebar__link.active:visited {
    background: rgba(255,255,255,.04);
    color: #fff;

    transform: translateX(4px);
}

.sidebar__link.active,
.sidebar__link.active:visited {
    border: 1px solid rgba(198,255,0,.18);
}

.sidebar__link i {
    position: relative;
    z-index: 1;

    font-size: 1.2rem;
    font-style: normal;
    line-height: 1;
}

.sidebar__nav .sidebar__link > i:first-child {
    width: 1.35em;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.sidebar__link span {
    position: relative;
    z-index: 1;
}

/* ===== Premium Banner ===== */
.sidebar__banner {
    position: relative;

    margin-top: 30px;
    padding: 24px;

    border-radius: 24px;

    overflow: hidden;

    background:
            radial-gradient(
                    circle at top,
                    rgba(198,255,0,.22),
                    transparent 60%
            ),
            linear-gradient(
                    180deg,
                    #141c35 0%,
                    #0b1020 100%
            );

    border: 1px solid rgba(255,255,255,.06);
}

.sidebar__banner::after {
    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -80px;
    right: -60px;

    border-radius: 50%;

    background: rgba(198,255,0,.15);

    filter: blur(60px);
}

.sidebar__banner-content {
    position: relative;
    z-index: 1;
}

.sidebar__banner-title {
    display: inline-block;

    margin-bottom: 14px;
    padding: 6px 12px;

    border-radius: 999px;

    background: rgba(198,255,0,.12);

    color: #c6ff00;

    font-size: .8rem;
    font-weight: 700;
}

.sidebar__banner p {
    margin-bottom: 20px;

    color: #d6def9;
    line-height: 1.6;
}

.sidebar__banner button {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 16px;

    background: #c6ff00;
    color: #0b1020;

    font-weight: 800;

    cursor: pointer;

    transition:
            transform .25s ease,
            box-shadow .25s ease;
}

.sidebar__banner button:hover {
    transform: translateY(-2px);

    box-shadow:
            0 10px 30px rgba(198,255,0,.2);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .widgets {
        position: relative;
        top: 0;
    }

}

@media (max-width: 920px) {
    .aside-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1199;
        background: rgba(2, 4, 12, 0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
    }

    body.is-aside-open .aside-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.is-aside-open {
        overflow: hidden;
    }

    .sidebar__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 22px;
    }

    .sidebar__close {
        display: inline-flex;
    }

    aside.sidebar {
        position: fixed;
        inset: 0;
        z-index: 1201;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 100dvh;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        transform: translateX(-100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border: none;
    }

    aside.sidebar.glass {
        border-bottom: none;
    }

    body.is-aside-open aside.sidebar {
        transform: translateX(0);
        pointer-events: auto;
    }

    .sidebar__label--mobile-title {
        display: block;
    }

    .sidebar__label--desktop-only {
        display: none;
    }

    .sidebar__nav-site {
        display: flex;
        margin-bottom: 8px;
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sidebar__sports-head--mobile-only {
        display: block;
        margin-bottom: 16px;
    }
}

@media (max-width: 640px) {

    .sidebar__top {
        margin-bottom: 16px;
    }

    .sidebar {
        padding: 18px;
        border-radius: 22px;
    }

    .widgets {
        padding: 18px;
        border-radius: 22px;
    }

    .sidebar__link {
        padding: 14px 16px;
    }

}

/* ===== Footer ===== */
.footer {
    position: relative;

    margin-top: 80px;

    border-top: 1px solid rgba(255,255,255,.06);

    background:
            linear-gradient(
                    180deg,
                    rgba(10,14,30,.6),
                    rgba(5,8,22,.95)
            );

    backdrop-filter: blur(20px);

    overflow: hidden;
}

/* ===== Top ===== */
.footer__wrapper {
    display: grid;
    grid-template-columns:
    1.4fr
    1fr
    1fr
    1fr;

    gap: 50px;

    padding:
            70px 0
            50px;
}

/* ===== Logo ===== */
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 18px;

    text-decoration: none;

    color: #fff;

    font-size: 1.8rem;
    font-weight: 800;
}

.footer__logo span {
    padding: 6px 12px;

    border-radius: 999px;

    background: #c6ff00;
    color: #0b1020;

    font-size: .72rem;
    font-weight: 800;

    box-shadow:
            0 0 24px rgba(198,255,0,.4);
}

.footer__text {
    max-width: 320px;

    color: #9ca7c7;

    line-height: 1.7;
}

/* ===== Columns ===== */
.footer__title {
    display: inline-block;

    margin-bottom: 20px;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__nav a {
    position: relative;

    width: fit-content;

    text-decoration: none;

    color: #98a2c6;

    transition:
            color .25s ease,
            transform .25s ease;
}

.footer__nav a:hover,
.footer__nav a:visited:hover {
    color: #fff;

    transform: translateX(4px);
}

/* ===== Social ===== */
.footer__socials {
    display: flex;
    gap: 14px;
}

.footer__socials a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    text-decoration: none;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.06);

    color: #fff;

    transition:
            transform .25s ease,
            border-color .25s ease,
            background .25s ease;
}

.footer__socials a:hover {
    transform: translateY(-4px);
    border-color: rgba(198,255,0,.4);
    background: rgba(198,255,0,.08);
    color: var(--accent);
}

.footer__socials i {
    font-size: 1.2rem;
}

.footer__social-svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    flex-shrink: 0;
}

/* ===== Bottom ===== */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);

    padding: 22px 0;
}

.footer__bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__bottom p {
    color: #7f89ad;

    font-size: .92rem;
}

.footer__bottom-links {
    display: flex;
    gap: 18px;
}

.footer__bottom-links a {
    text-decoration: none;

    color: #7f89ad;

    transition: color .25s ease;
}

.footer__bottom-links a:hover,
.footer__bottom-links a:visited:hover {
    color: #fff;
}

/* ===== Visited — единый цвет #aeb7d3 ===== */
.nav__link:visited,
.sidebar__link:visited,
.footer__nav a:visited,
.footer__bottom-links a:visited,
.logo:visited,
.footer__logo:visited,
.tournament-card:visited,
.live-shorty__teams:visited,
.btn--outline:visited,
.broadcast-live__match:visited,
.broadcast-comments__nav a:visited,
.broadcast__action:visited,
.broadcast__complaint:visited,
.news-article__tags a:visited,
.news-comments .full-text a:not([class]):visited,
.news-comments .full-text a[class=""]:visited {
    color: var(--link-visited);
}

.widgets__live-teams:visited, .schedule__more:visited, .widgets__news-headline:visited, .news-shorty__headline:visited {
    color: var(--text);
}

.nav__link.active:visited,
.sidebar__link.active:visited {
    color: #fff;
}

.schedule__more:visited {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.schedule__more:visited:hover {
    border-color: rgba(198, 255, 0, 0.35);
    background: rgba(198, 255, 0, 0.08);
    color: var(--accent);
}

.widgets__link-top:visited:hover,
.widgets__link-all:visited:hover {
    opacity: 0.85;
}

.live-shorty__teams:visited:hover,
.widgets__live-teams:visited:hover,
.widgets__news-headline:visited:hover,
.news-shorty__headline:visited:hover,
.broadcast-live__match:visited:hover {
    color: var(--accent);
}

.btn--outline:visited:hover {
    border-color: rgba(198, 255, 0, 0.45);
    color: var(--accent);
}

.broadcast-comments__nav a:visited:hover,
.news-article__tags a:visited:hover {
    text-decoration: underline;
}

.broadcast__action:visited:hover,
.broadcast__complaint:visited:hover {
    border-color: rgba(198, 255, 0, 0.35);
    color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {

    .footer__wrapper {
        grid-template-columns:
      1fr
      1fr;

        gap: 40px;
    }

}

@media (max-width: 640px) {

    .footer__wrapper {
        grid-template-columns: 1fr;

        padding:
                50px 0
                40px;
    }

    .footer__bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ===== Broadcast page (fullstory) ===== */
.content--broadcast {
    gap: 20px;
}

.broadcast-aside,
.broadcast-widgets {
    position: sticky;
    top: 110px;
    width: 100%;
    padding: 22px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 14, 30, 0.78);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.broadcast-aside__title,
.broadcast-widgets__title {
    margin: 0 0 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f89ad;
}

.broadcast-live__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.broadcast-live__item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.broadcast-live__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(198, 255, 0, 0.08);
    color: var(--accent);
    font-size: 1rem;
}

.broadcast-live__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.broadcast-live__sport {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.broadcast-live__match {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.broadcast-live__match:hover {
    color: var(--accent);
}

.broadcast-live__league {
    font-size: 0.76rem;
    color: var(--muted);
}

.broadcast-live__badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(239, 68, 68, 0.95);
}

.broadcast-aside__all {
    margin-bottom: 18px;
}

.broadcast-aside__banner {
    margin-top: 4px;
}

.broadcast-widgets {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.broadcast-widgets__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.broadcast-widgets__head .broadcast-widgets__title {
    margin-bottom: 0;
}

.broadcast-comments__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0b1020;
    background: var(--accent);
}

.broadcast-comments__note {
    margin: -6px 0 12px;
    font-size: 0.76rem;
    color: var(--muted);
}

.broadcast-comments__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 12px;
    padding-right: 4px;
}

.broadcast-comments__nav {
    margin-bottom: 14px;
    font-size: 0.82rem;
}

.broadcast-comments__nav a {
    color: var(--accent);
    text-decoration: none;
}

.broadcast-comments__nav a:hover {
    text-decoration: underline;
}

.broadcast-comments__form-wrap {
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.broadcast-comments--page {
    margin-top: 28px;
    padding: 24px 22px;
    border-radius: 28px;
}

.broadcast-comments--page .broadcast-comments__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px 16px;
    margin-bottom: 16px;
}

.broadcast-comments--page .broadcast-comments__note {
    margin: 0;
    width: 100%;
}

.broadcast-comments--page .broadcast-comments__list {
    max-height: none;
    overflow: visible;
}

.broadcast-comm {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.broadcast-comm__avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 255, 0, 0.12);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
}

.broadcast-comm__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.broadcast-comm__bubble {
    min-width: 0;
    flex: 1;
}

.broadcast-comm__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    margin-bottom: 4px;
}

.broadcast-comm__user {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.broadcast-comm__time {
    font-size: 0.72rem;
    color: var(--muted);
}

.broadcast-comm__text {
    font-size: 0.84rem;
    line-height: 1.45;
    color: #c5cce8;
}

.broadcast-comm__text p {
    margin: 0 0 6px;
}

.broadcast-comm__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 8px;
}

.broadcast-comm__action {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}

.broadcast-comm__action:hover {
    color: var(--accent);
}

.broadcast-comm__ctrl {
    display: inline-flex;
    gap: 6px;
    margin-left: auto;
}

.broadcast-comm__ctrl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.broadcast-comm__ctrl-btn:hover {
    color: var(--accent);
    background: rgba(198, 255, 0, 0.08);
}

.broadcast-comm--admin .broadcast-comm__user {
    color: var(--accent);
}

.broadcast-ac-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.broadcast-ac-form__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.broadcast-ac-form__input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 8, 22, 0.8);
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
}

.broadcast-ac-form__input:focus {
    outline: none;
    border-color: rgba(198, 255, 0, 0.4);
}

.broadcast-ac-form__editor textarea,
.broadcast-ac-form__editor .bb-editor {
    width: 100% !important;
    min-height: 88px;
    padding: 12px 14px;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(5, 8, 22, 0.8) !important;
    color: var(--text) !important;
    font-family: inherit !important;
    font-size: 0.88rem !important;
}

.broadcast-ac-form__editor textarea:focus {
    outline: none;
    border-color: rgba(198, 255, 0, 0.4) !important;
}

.broadcast-ac-form__protect {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.broadcast-ac-form__protect.d-none {
    display: none;
}

.broadcast-ac-form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.broadcast-ac-form__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

.broadcast-ac-form__sec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.broadcast-ac-form__sec .form__input {
    flex: 1;
}

.broadcast-ac-form__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.broadcast-ac-form__btn {
    padding: 12px 20px;
    border: none;
    border-radius: 14px;
    background: var(--accent);
    color: #0b1020;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.broadcast-ac-form__btn:hover {
    box-shadow: 0 8px 24px rgba(198, 255, 0, 0.25);
}

.broadcast-ac-form__subscribe {
    font-size: 0.82rem;
    color: var(--muted);
}

.broadcast-ac-form__subscribe label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.broadcast-match-stats__scoreboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.broadcast-match-stats__team {
    flex: 1;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.broadcast-match-stats__team:last-child {
    text-align: right;
}

.broadcast-match-stats__score {
    font-size: 1.5rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
}

.broadcast-match-stats__bars {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.broadcast-stat__label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    color: var(--muted);
}

.broadcast-stat__values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.broadcast-stat__bar,
.broadcast-stat__bar--possession {
    display: flex;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.broadcast-stat__bar span:first-child,
.broadcast-stat__bar--possession span:first-child {
    width: var(--home, 50%);
    background: var(--accent);
    transition: width 0.35s ease;
}

.broadcast-stat__bar span:last-child,
.broadcast-stat__bar--possession span:last-child {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
}

.broadcast__stats-fallback {
    margin-top: 4px;
}

.broadcast__stats-fallback .broadcast-match-stats__bars {
    margin-bottom: 0;
}

.broadcast {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.broadcast__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.broadcast__head-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.broadcast__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

.broadcast__status--live {
    color: #fff;
    background: rgba(239, 68, 68, 0.9);
}

.broadcast__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: broadcast-pulse 1.4s ease-in-out infinite;
}

@keyframes broadcast-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.broadcast__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--muted);
}

.broadcast__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.broadcast__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.broadcast__subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.broadcast__player {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.broadcast__player-frame {
    position: relative;
}

.video-responsive {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.broadcast__player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.45) 100%);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.broadcast__player-overlay:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -4px;
}

.broadcast__player-overlay.is-dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.broadcast__player-overlay-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.broadcast__overlay-live {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    background: rgba(239, 68, 68, 0.95);
}

.broadcast__overlay-time {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.broadcast__player-overlay-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.broadcast__overlay-team {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.broadcast__overlay-result {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.broadcast__overlay-sep {
    margin: 0 4px;
    opacity: 0.7;
}

.broadcast__overlay-agg {
    align-self: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.broadcast__player-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    aspect-ratio: 16 / 9;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.35);
}

.broadcast__player-empty i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.broadcast__player-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 8, 22, 0.5);
}

.broadcast__player-actions-left,
.broadcast__player-actions-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.broadcast__action,
.broadcast__complaint,
.broadcast__edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.broadcast__action:hover,
.broadcast__complaint:hover {
    border-color: rgba(198, 255, 0, 0.35);
    color: var(--accent);
}

.broadcast__tabs {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.broadcast__tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
}

.broadcast__tab {
    padding: 12px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.broadcast__tab:hover {
    color: var(--text);
}

.broadcast__tab--active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.broadcast__tabs-panels {
    padding: 20px;
}

.broadcast__tabs-panels > .broadcast__tab-panel {
    display: none;
}

.broadcast__tabs-panels > .broadcast__tab-panel.is-active {
    display: block;
}

.broadcast__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #c5cce8;
}

.broadcast__text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.broadcast__tab-empty {
    margin: 0;
    padding: 24px 12px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.broadcast__lede {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.broadcast__stats-mini {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.broadcast__stats-mini li {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.broadcast__lineups {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .broadcast__lineups {
        grid-template-columns: 1fr 1fr;
    }
}

.broadcast__lineup-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
}

.broadcast__lineup-meta {
    margin: 0 0 12px;
    font-size: 0.82rem;
    color: var(--muted);
}

.broadcast__lineup-subtitle {
    margin: 16px 0 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.broadcast__h2h-summary {
    margin: 0 0 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.broadcast-match-stats__minute {
    margin: 0 0 12px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}

.broadcast__info {
    padding: 20px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.broadcast__info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.broadcast__info-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.9rem;
}

.broadcast__info-list span {
    color: var(--muted);
    font-weight: 600;
    min-width: 100px;
}

.broadcast__tags {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
}

.broadcast__section-title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
}

.broadcast__related .schedule__list {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 30, 0.45);
    padding: 4px 12px;
}

@media (max-width: 1100px) {
    .broadcast-aside,
    .broadcast-widgets {
        position: relative;
        top: 0;
    }

}

/* ===== News fullstory ===== */
.content--news {
    gap: 20px;
}

.news-article {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.news-article__head,
.news-article__body,
.news-comments {
    background: rgba(10, 14, 30, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.news-article__head {
    padding: 24px 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__head.glass,
.news-article__body.glass,
.news-comments.glass {
    border-bottom: none;
}

.news-article__title {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 14px;
}

.news-article__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.news-article__meta-item i {
    font-size: 1rem;
    color: var(--muted);
}


.news-article__meta-item a, .news-article__meta-item a:visited {
    color: var(--muted);
}

.news-article__meta-item a:hover, .news-article__meta-item a:visited:hover {
    color: var(--accent);
}

.news-article__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-article__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.news-article__action:hover {
    border-color: rgba(198, 255, 0, 0.35);
    background: rgba(198, 255, 0, 0.08);
}

.news-article__action--muted {
    opacity: 0.7;
}

.news-article__body {
    padding: 22px 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-article__text {
    font-size: 0.98rem;
}

.news-article__tags {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
    color: var(--muted);
}

.news-article__tags a {
    color: var(--accent);
    text-decoration: none;
}

.news-article__tags a:hover {
    text-decoration: underline;
}

.news-article__tags-sep {
    opacity: 0.5;
}

.news-comments {
    padding: 22px 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-comments .full-text a:not([class]),
.news-comments .full-text a[class=""] {
    color: var(--accent);
}

.news-comments__head {
    margin-bottom: 18px;
}

.news-comments__title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
}

.news-comments__count {
    font-weight: 600;
    color: var(--muted);
}

.news-comments__note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.news-comments__form {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.news-comments__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-comments__empty {
    margin: 0;
    padding: 20px 12px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.news-comments__nav {
    margin-top: 16px;
}

@media (max-width: 640px) {
    .news-article__head,
    .news-article__body,
    .news-comments {
        padding: 18px;
        border-radius: 20px;
    }

    .broadcast__tabs-nav {
        padding-inline: 8px;
    }

    .broadcast__tab {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .broadcast-live__item {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .broadcast-live__badge {
        grid-column: 2;
        justify-self: start;
    }
}