:root {
    --lx-black: #050505;
    --lx-black-soft: #0b0b0d;
    --lx-surface: #111114;
    --lx-surface-2: #17171b;
    --lx-border: rgba(255, 255, 255, 0.1);
    --lx-text: #ffffff;
    --lx-muted: #a7a7b1;
    --lx-blue: #0666ff;
    --lx-live: #ff2b07;
    --lx-replay: #ff8800;
    --lx-sports: #18d900;
    --lx-news: #ff008f;
    --lx-events: #aa00d4;
    --lx-studio: #13d5e7;
    --lx-radius-sm: 10px;
    --lx-radius: 18px;
    --lx-radius-lg: 28px;
    --lx-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --lx-header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--lx-black);
    color: var(--lx-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: var(--lx-blue);
    color: #fff;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: #fff;
    color: #000;
    border-radius: 8px;
}

.container-wide,
.container-content {
    width: min(100% - 40px, 1440px);
    margin-inline: auto;
}

.container-content {
    width: min(100% - 40px, 920px);
}

.site-shell {
    min-height: 100vh;
}

.site-main {
    min-height: 60vh;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--lx-header-height);
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.45), transparent);
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--lx-border);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(170px, 260px) 1fr auto;
    align-items: center;
    gap: 28px;
    height: 100%;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    width: min(100%, 240px);
}

.site-brand > a,
.site-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.site-brand img,
.site-brand .custom-logo {
    width: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

.primary-nav {
    justify-self: center;
}

.primary-nav__list,
.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--lx-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a {
    color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-parent > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-item--live a::after { background: var(--lx-live); }
.menu-item--replay a::after { background: var(--lx-replay); }
.menu-item--sports a::after { background: var(--lx-sports); }
.menu-item--news a::after { background: var(--lx-news); }
.menu-item--events a::after { background: var(--lx-events); }

.header-live-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-live-button {
    min-height: 42px;
    padding-inline: 17px;
    background: #fff;
    color: #070707;
}

.header-live-button:hover,
.button:hover {
    transform: translateY(-2px);
}

.header-live-button:hover {
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.14);
}

.button--primary {
    background: var(--lx-blue);
    color: #fff;
    box-shadow: 0 16px 36px rgba(6, 102, 255, 0.28);
}

.button--primary:hover {
    box-shadow: 0 20px 46px rgba(6, 102, 255, 0.4);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.button--light {
    background: #fff;
    color: #080808;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lx-live);
    box-shadow: 0 0 0 0 rgba(255, 43, 7, 0.55);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 43, 7, 0.55); }
    65% { box-shadow: 0 0 0 9px rgba(255, 43, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 43, 7, 0); }
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--lx-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: min(920px, 100svh);
    overflow: hidden;
    background: var(--lx-black);
}

.hero__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(920px, 100svh);
    padding-top: calc(var(--lx-header-height) + 74px);
    padding-bottom: 90px;
}

.hero--brand {
    background:
        radial-gradient(circle at 75% 30%, rgba(6, 102, 255, 0.24), transparent 34%),
        radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.06), transparent 25%),
        linear-gradient(145deg, #050505 0%, #09090c 56%, #050505 100%);
}

.hero--event {
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.18) 78%, rgba(5, 5, 5, 0.46) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--lx-black), transparent 35%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent 0%, #000 25%, #000 70%, transparent 100%);
}

.hero__glow {
    position: absolute;
    top: 18%;
    right: 14%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(6, 102, 255, 0.24);
    filter: blur(100px);
}

.hero__brand-mark {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: clamp(-80px, 2vw, 4vw);
    width: min(55vw, 880px);
    opacity: 0.18;
    transform: translateY(-44%);
    filter: drop-shadow(0 0 60px rgba(6, 102, 255, 0.24));
}

.hero__eyebrow,
.single-event__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3.8rem, 8.2vw, 8.8rem);
    font-weight: 850;
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.hero h1 span {
    color: rgba(255, 255, 255, 0.54);
}

.hero__lead {
    max-width: 720px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.08rem, 1.65vw, 1.42rem);
    line-height: 1.65;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

.hero__meta span {
    position: relative;
}

.hero__meta span + span::before {
    position: absolute;
    top: 50%;
    left: -16px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    content: "";
    background: currentColor;
    transform: translateY(-50%);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__signal {
    position: absolute;
    z-index: 5;
    right: 40px;
    bottom: 38px;
    display: flex;
    align-items: end;
    gap: 5px;
    height: 30px;
}

.hero__signal span {
    width: 4px;
    border-radius: 2px;
    background: var(--lx-blue);
    animation: signal 1.2s ease-in-out infinite alternate;
}

.hero__signal span:nth-child(1) { height: 10px; animation-delay: 0s; }
.hero__signal span:nth-child(2) { height: 19px; animation-delay: 0.2s; }
.hero__signal span:nth-child(3) { height: 28px; animation-delay: 0.4s; }

@keyframes signal {
    from { opacity: 0.3; transform: scaleY(0.68); }
    to { opacity: 1; transform: scaleY(1); }
}

.status-pill,
.channel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(10, 10, 12, 0.74);
    backdrop-filter: blur(10px);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.status-pill--live {
    border-color: rgba(255, 43, 7, 0.38);
}

.status-pill--replay {
    border-color: rgba(255, 136, 0, 0.42);
    color: #ffc36b;
}

.status-pill--scheduled {
    color: #c6d7ff;
}

.channel-label--live { color: var(--lx-live); }
.channel-label--replay { color: var(--lx-replay); }
.channel-label--sports { color: var(--lx-sports); }
.channel-label--news { color: var(--lx-news); }
.channel-label--events { color: #ca58ef; }
.channel-label--studio { color: var(--lx-studio); }

.section {
    position: relative;
    padding: clamp(76px, 8vw, 132px) 0;
    background: var(--lx-black);
}

.section--dark {
    background: var(--lx-black-soft);
}

.section--replay {
    background:
        radial-gradient(circle at 88% 15%, rgba(255, 136, 0, 0.1), transparent 32%),
        var(--lx-black);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: 40px;
    margin-bottom: 44px;
}

.section-heading--compact {
    grid-template-columns: 1fr auto;
}

.section-heading h2,
.partner-panel h2,
.archive-header h1,
.single-event__hero h1,
.standard-page__header h1,
.error-page h1 {
    margin: 8px 0 0;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    font-weight: 840;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.section-heading > p,
.archive-header > p,
.archive-description,
.partner-panel p {
    margin: 0;
    color: var(--lx-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8fb7ff;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-kicker--live { color: #ff6d52; }
.section-kicker--replay { color: #ffb153; }

.text-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 750;
    transition: color 160ms ease;
}

.text-link:hover {
    color: #fff;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.channel-card {
    --channel: var(--lx-blue);
    position: relative;
    display: flex;
    min-height: 290px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.channel-card::after {
    position: absolute;
    right: -40px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    content: "";
    background: var(--channel);
    opacity: 0.12;
    filter: blur(38px);
}

.channel-card:hover {
    border-color: color-mix(in srgb, var(--channel) 48%, transparent);
    background: linear-gradient(155deg, color-mix(in srgb, var(--channel) 10%, transparent), rgba(255, 255, 255, 0.02));
    transform: translateY(-7px);
}

.channel-card--live { --channel: var(--lx-live); }
.channel-card--replay { --channel: var(--lx-replay); }
.channel-card--sports { --channel: var(--lx-sports); }
.channel-card--news { --channel: var(--lx-news); }
.channel-card--events { --channel: var(--lx-events); }

.channel-card__topline {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--channel), transparent);
}

.channel-card img {
    width: 100%;
    height: 48px;
    margin-bottom: 26px;
    object-fit: contain;
    object-position: left center;
}

.channel-card p {
    margin: 0;
    color: var(--lx-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.channel-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 26px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
}

.event-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card {
    --channel: var(--lx-blue);
    min-width: 0;
}

.event-card--live { --channel: var(--lx-live); }
.event-card--replay { --channel: var(--lx-replay); }
.event-card--sports { --channel: var(--lx-sports); }
.event-card--news { --channel: var(--lx-news); }
.event-card--events { --channel: var(--lx-events); }

.event-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius);
    background: var(--lx-surface);
}

.event-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.56), transparent 48%);
    opacity: 0.7;
    transition: opacity 180ms ease;
}

.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.event-card:hover .event-card__media > img {
    transform: scale(1.035);
}

.event-card:hover .event-card__media::after {
    opacity: 1;
}

.event-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: 38px;
    background:
        radial-gradient(circle at 75% 20%, color-mix(in srgb, var(--channel) 22%, transparent), transparent 40%),
        linear-gradient(145deg, #101014, #070708);
}

.event-card__placeholder img {
    width: 82%;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

.event-card__media .status-pill {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
}

.event-card__play {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(6, 6, 8, 0.56);
    color: #fff;
    font-size: 0.84rem;
    backdrop-filter: blur(12px);
    transition: background 160ms ease, transform 160ms ease;
}

.event-card:hover .event-card__play {
    background: var(--channel);
    transform: scale(1.06);
}

.event-card__body {
    padding: 18px 4px 0;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 14px;
    color: #8b8b95;
    font-size: 0.79rem;
}

.event-card__meta .channel-label {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 0.65rem;
}

.event-card h3 {
    margin: 13px 0 8px;
    font-size: clamp(1.2rem, 1.6vw, 1.55rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.event-card h3 a:hover {
    color: color-mix(in srgb, var(--channel) 76%, #fff);
}

.event-card p {
    margin: 0;
    color: var(--lx-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.empty-state,
.schedule-placeholder,
.replay-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 180px;
    padding: 34px;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.empty-state h3,
.schedule-placeholder h3,
.replay-placeholder h3 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    letter-spacing: -0.03em;
}

.empty-state p,
.schedule-placeholder p,
.replay-placeholder p {
    margin: 0;
    color: var(--lx-muted);
}

.empty-state__signal {
    display: inline-flex;
    align-items: end;
    gap: 4px;
    height: 22px;
    margin-bottom: 18px;
}

.empty-state__signal i {
    width: 4px;
    border-radius: 2px;
    background: var(--lx-live);
}

.empty-state__signal i:nth-child(1) { height: 7px; }
.empty-state__signal i:nth-child(2) { height: 14px; }
.empty-state__signal i:nth-child(3) { height: 22px; }

.schedule-placeholder {
    justify-content: flex-start;
}

.schedule-placeholder__date {
    display: grid;
    min-width: 90px;
    min-height: 90px;
    place-items: center;
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.schedule-placeholder__date span {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.schedule-placeholder__badge {
    margin-left: auto;
    padding: 9px 13px;
    border: 1px solid rgba(6, 102, 255, 0.32);
    border-radius: 999px;
    color: #9bbcff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.replay-placeholder {
    justify-content: flex-start;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 136, 0, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.replay-placeholder > img {
    width: min(34vw, 330px);
    flex: 0 0 auto;
}

.section--partner {
    padding-top: 30px;
}

.partner-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    min-height: 340px;
    padding: clamp(36px, 6vw, 76px);
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 25%, rgba(6, 102, 255, 0.48), transparent 27%),
        linear-gradient(135deg, #0f58da, #0666ff 45%, #064bc1);
    box-shadow: 0 40px 90px rgba(6, 102, 255, 0.22);
}

.partner-panel__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.partner-panel .section-kicker,
.partner-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.partner-panel__mark {
    position: absolute;
    right: 18%;
    bottom: -180px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 36rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-8deg);
}

.site-footer {
    padding: 78px 0 28px;
    border-top: 1px solid var(--lx-border);
    background: #030303;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) 0.65fr 0.85fr;
    gap: 70px;
}

.site-footer__brand img {
    width: min(100%, 330px);
    margin-bottom: 24px;
}

.site-footer__brand p {
    max-width: 420px;
    margin: 0;
    color: var(--lx-muted);
    line-height: 1.7;
}

.site-footer h2 {
    margin: 0 0 20px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: var(--lx-muted);
    transition: color 150ms ease;
}

.site-footer a:hover {
    color: #fff;
}

.footer-contact {
    display: inline-block;
    margin-top: 22px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    margin-top: 54px;
    border-top: 1px solid var(--lx-border);
    color: #74747d;
    font-size: 0.78rem;
}

.site-footer__bottom p {
    margin: 0;
}

.page-shell {
    padding: calc(var(--lx-header-height) + 84px) 0 110px;
    background:
        radial-gradient(circle at 80% 5%, rgba(6, 102, 255, 0.12), transparent 24%),
        var(--lx-black);
}

.archive-header,
.standard-page__header {
    max-width: 920px;
    margin-bottom: 56px;
}

.archive-description {
    margin-top: 20px;
}

.channel-archive {
    position: relative;
    overflow: hidden;
}

.channel-archive__glow {
    position: absolute;
    top: -180px;
    right: -100px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: var(--lx-blue);
    opacity: 0.1;
    filter: blur(110px);
}

.channel-archive--live .channel-archive__glow { background: var(--lx-live); }
.channel-archive--replay .channel-archive__glow { background: var(--lx-replay); }
.channel-archive--sports .channel-archive__glow { background: var(--lx-sports); }
.channel-archive--news .channel-archive__glow { background: var(--lx-news); }
.channel-archive--events .channel-archive__glow { background: var(--lx-events); }

.channel-archive__header {
    position: relative;
    z-index: 2;
}

.channel-archive__header img {
    width: min(100%, 680px);
    max-height: 160px;
    object-fit: contain;
    object-position: left center;
}

.channel-archive__header p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--lx-muted);
    font-size: 1.05rem;
}

.single-event__hero {
    position: relative;
    padding: calc(var(--lx-header-height) + 80px) 0 52px;
    overflow: hidden;
    border-bottom: 1px solid var(--lx-border);
    background:
        radial-gradient(circle at 85% 0%, rgba(6, 102, 255, 0.16), transparent 32%),
        var(--lx-black);
}

.single-event__hero--live { background: radial-gradient(circle at 85% 0%, rgba(255, 43, 7, 0.15), transparent 32%), var(--lx-black); }
.single-event__hero--replay { background: radial-gradient(circle at 85% 0%, rgba(255, 136, 0, 0.15), transparent 32%), var(--lx-black); }
.single-event__hero--sports { background: radial-gradient(circle at 85% 0%, rgba(24, 217, 0, 0.13), transparent 32%), var(--lx-black); }
.single-event__hero--news { background: radial-gradient(circle at 85% 0%, rgba(255, 0, 143, 0.14), transparent 32%), var(--lx-black); }
.single-event__hero--events { background: radial-gradient(circle at 85% 0%, rgba(170, 0, 212, 0.15), transparent 32%), var(--lx-black); }

.single-event__hero h1 {
    max-width: 1050px;
}

.single-event__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 24px;
    color: var(--lx-muted);
}

.single-event__player-section {
    padding: 34px 0;
    background: #000;
}

.event-player {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    background: #050505;
    box-shadow: var(--lx-shadow);
}

.event-player iframe,
.event-player video,
.event-player__poster {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.event-player__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    align-content: center;
    gap: 24px;
    background:
        radial-gradient(circle at 50% 45%, rgba(6, 102, 255, 0.14), transparent 34%),
        linear-gradient(145deg, #101014, #050505);
}

.event-player__placeholder img {
    width: min(72%, 760px);
}

.event-player__placeholder p,
.event-player__message p {
    margin: 0;
    color: var(--lx-muted);
}

.event-player__message {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
}

.event-player__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.single-event__content-section {
    padding: 70px 0 120px;
}

.single-event__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 70px;
}

.entry-content {
    color: #d9d9df;
    font-size: 1.04rem;
    line-height: 1.82;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.entry-content h2 { margin-top: 2.1em; font-size: 2rem; }
.entry-content h3 { margin-top: 1.8em; font-size: 1.5rem; }
.entry-content a { color: #8fb7ff; text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote { padding: 8px 0 8px 24px; margin: 32px 0; border-left: 3px solid var(--lx-blue); color: #fff; font-size: 1.2rem; }

.info-panel {
    position: sticky;
    top: calc(var(--lx-header-height) + 28px);
    padding: 28px;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius);
    background: var(--lx-surface);
}

.info-panel h2 {
    margin: 0 0 20px;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.info-panel dl,
.info-panel dl div {
    margin: 0;
}

.info-panel dl div {
    padding: 14px 0;
    border-top: 1px solid var(--lx-border);
}

.info-panel dt {
    margin-bottom: 5px;
    color: #777781;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.info-panel dd {
    margin: 0;
    color: #fff;
}

.standard-page {
    padding-top: 24px;
}

.error-page {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: calc(var(--lx-header-height) + 40px) 0 80px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(6, 102, 255, 0.17), transparent 30%),
        var(--lx-black);
}

.error-page__code {
    display: block;
    color: rgba(255, 255, 255, 0.07);
    font-size: clamp(7rem, 24vw, 18rem);
    font-weight: 900;
    line-height: 0.72;
    letter-spacing: -0.08em;
}

.error-page p {
    max-width: 620px;
    margin: 22px auto 32px;
    color: var(--lx-muted);
}

.content-none {
    display: grid;
    min-height: 360px;
    place-items: center;
    align-content: center;
    padding: 50px;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    background: var(--lx-surface);
    text-align: center;
}

.content-none__mark {
    color: rgba(255, 255, 255, 0.08);
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.8;
}

.content-none h2 {
    margin: 24px 0 8px;
}

.content-none p {
    margin: 0 0 26px;
    color: var(--lx-muted);
}

.navigation.pagination {
    margin-top: 54px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-numbers {
    display: grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    padding: 8px 12px;
    border: 1px solid var(--lx-border);
    border-radius: 10px;
    background: var(--lx-surface);
}

.page-numbers.current,
.page-numbers:hover {
    border-color: var(--lx-blue);
    background: var(--lx-blue);
}

@media (max-width: 1180px) {
    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header__inner {
        grid-template-columns: minmax(150px, 220px) 1fr auto;
        gap: 18px;
    }

    .primary-nav__list,
    .primary-nav .menu {
        gap: 18px;
    }
}

@media (max-width: 960px) {
    :root {
        --lx-header-height: 72px;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-brand {
        width: 210px;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: 999;
        top: var(--lx-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        padding: 30px 20px;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(18px);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list,
    .primary-nav .menu {
        display: grid;
        gap: 0;
    }

    .primary-nav li {
        border-bottom: 1px solid var(--lx-border);
    }

    .primary-nav a {
        min-height: 64px;
        font-size: 1.05rem;
    }

    .primary-nav a::after {
        bottom: 0;
    }

    .header-live-button {
        display: none;
    }

    .hero__brand-mark {
        right: -28%;
        width: 95vw;
        opacity: 0.12;
    }

    .section-heading,
    .section-heading--compact {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .channel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-event__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-panel {
        position: static;
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr;
    }

    .site-footer__menu {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container-wide,
    .container-content {
        width: min(100% - 28px, 1440px);
    }

    .site-brand {
        width: 184px;
    }

    .hero,
    .hero__content {
        min-height: 760px;
    }

    .hero__content {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5.2rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__signal {
        right: 18px;
        bottom: 20px;
    }

    .section {
        padding: 72px 0;
    }

    .channel-grid,
    .event-grid,
    .event-grid--featured {
        grid-template-columns: 1fr;
    }

    .channel-card {
        min-height: 245px;
    }

    .empty-state,
    .schedule-placeholder,
    .replay-placeholder {
        align-items: flex-start;
        flex-direction: column;
    }

    .schedule-placeholder__badge {
        margin-left: 0;
    }

    .replay-placeholder > img {
        width: min(100%, 300px);
    }

    .partner-panel {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 430px;
        border-radius: 24px;
    }

    .partner-panel .button {
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .site-footer__menu {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .channel-archive__header img {
        max-height: 110px;
    }

    .single-event__hero {
        padding-top: calc(var(--lx-header-height) + 54px);
    }

    .event-player {
        border-radius: 14px;
    }

    .single-event__content-section {
        padding-bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* LIVEONIX v1.1.0 additions */
.menu-item--schedule a::after { background: var(--lx-blue); }

.status-pill--processing {
    border-color: rgba(170, 0, 212, 0.45);
    background: rgba(170, 0, 212, 0.18);
    color: #df8cff;
}

.status-pill--archived {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #d0d0d5;
}

.hero-countdown,
.single-event__countdown {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(5, 5, 5, 0.52);
    backdrop-filter: blur(12px);
}

.hero-countdown__label,
.single-event__countdown > span {
    color: var(--lx-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-countdown strong,
.single-event__countdown strong {
    font-variant-numeric: tabular-nums;
    font-size: 1.08rem;
}

.event-card__duration {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.84);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.event-card__countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--lx-border);
}

.event-card__countdown span {
    color: var(--lx-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-card__countdown strong {
    color: #fff;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}

.event-player__placeholder--processing {
    text-align: center;
}

.event-player__placeholder--processing h2 {
    margin: 22px 0 7px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.event-player__processing {
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
    height: 54px;
}

.event-player__processing i {
    width: 10px;
    border-radius: 99px;
    background: var(--lx-events);
    animation: signal 0.9s ease-in-out infinite alternate;
}

.event-player__processing i:nth-child(1) { height: 18px; }
.event-player__processing i:nth-child(2) { height: 36px; animation-delay: 0.18s; }
.event-player__processing i:nth-child(3) { height: 54px; animation-delay: 0.36s; }

.info-panel__button {
    width: 100%;
    margin-top: 22px;
}

.single-event__share {
    display: grid;
    gap: 14px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--lx-border);
}

.single-event__share > span {
    color: var(--lx-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-event__share > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.single-event__share a,
.single-event__share button {
    display: inline-flex;
    align-items: center;
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid var(--lx-border);
    border-radius: 8px;
    background: var(--lx-surface);
    color: #fff;
    cursor: pointer;
}

.single-event__share a:hover,
.single-event__share button:hover {
    border-color: var(--lx-blue);
    background: rgba(6, 102, 255, 0.13);
}

.single-event__related {
    border-top: 1px solid var(--lx-border);
    background: var(--lx-black-soft);
}

.schedule-page {
    position: relative;
    overflow: hidden;
}

.schedule-page__glow {
    position: absolute;
    top: 0;
    right: -10%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: var(--lx-blue);
    filter: blur(160px);
    opacity: 0.11;
    pointer-events: none;
}

.schedule-page__header,
.schedule-page__content {
    position: relative;
    z-index: 1;
}

.schedule-page__content {
    max-width: none;
}

.liveonix-schedule {
    display: grid;
    gap: 34px;
}

.liveonix-schedule-day {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
}

.liveonix-schedule-day__header {
    position: sticky;
    top: calc(var(--lx-header-height) + 24px);
    align-self: start;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 15px;
    border: 1px solid var(--lx-border);
    border-radius: 16px;
    background: var(--lx-surface);
}

.liveonix-schedule-day__number {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.liveonix-schedule-day__header b,
.liveonix-schedule-day__header small {
    display: block;
}

.liveonix-schedule-day__header b {
    font-size: 0.95rem;
}

.liveonix-schedule-day__header small {
    margin-top: 3px;
    color: var(--lx-muted);
    font-size: 0.75rem;
}

.liveonix-schedule-day__items {
    display: grid;
    gap: 12px;
}

.liveonix-schedule-item {
    --channel: var(--lx-events);
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 118px;
    padding: 22px 24px;
    overflow: hidden;
    border: 1px solid var(--lx-border);
    border-radius: 16px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--channel) 8%, var(--lx-surface)), var(--lx-surface));
}

.liveonix-schedule-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--channel);
}

.liveonix-schedule-item--live { --channel: var(--lx-live); }
.liveonix-schedule-item--replay { --channel: var(--lx-replay); }
.liveonix-schedule-item--sports { --channel: var(--lx-sports); }
.liveonix-schedule-item--news { --channel: var(--lx-news); }
.liveonix-schedule-item--events { --channel: var(--lx-events); }

.liveonix-schedule-item > time {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.liveonix-schedule-item__channel {
    color: var(--channel);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.liveonix-schedule-item h3 {
    margin: 5px 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.liveonix-schedule-item h3 a:hover {
    color: var(--channel);
}

.liveonix-schedule-item p {
    margin: 0;
    color: var(--lx-muted);
    font-size: 0.9rem;
}

.liveonix-schedule-item__status {
    display: grid;
    justify-items: end;
    gap: 10px;
    min-width: 150px;
}

.liveonix-schedule-item__status > a {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.liveonix-schedule-live,
.liveonix-countdown {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid var(--lx-border);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.42);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.liveonix-schedule-live {
    border-color: rgba(255, 43, 7, 0.35);
    color: #ff6d52;
}

.liveonix-schedule-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lx-live);
    box-shadow: 0 0 0 5px rgba(255, 43, 7, 0.16);
}

.liveonix-schedule__empty {
    padding: 42px;
    border: 1px solid var(--lx-border);
    border-radius: 18px;
    background: var(--lx-surface);
    text-align: center;
}

.liveonix-schedule__empty h2 {
    margin: 0 0 9px;
}

.liveonix-schedule__empty p {
    margin: 0;
    color: var(--lx-muted);
}

@media (max-width: 900px) {
    .liveonix-schedule-day {
        grid-template-columns: 1fr;
    }

    .liveonix-schedule-day__header {
        position: static;
        width: fit-content;
        min-width: 180px;
    }
}

@media (max-width: 680px) {
    .hero-countdown,
    .single-event__countdown {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .liveonix-schedule-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .liveonix-schedule-item__status {
        justify-items: start;
        min-width: 0;
    }
}

/* LIVEONIX v1.2.0 additions */
.button--outline {
    border-color: rgba(255, 255, 255, 0.32);
    background: transparent;
    color: #fff;
}

.button--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.event-player__embed {
    width: 100%;
    height: 100%;
}

.event-player__embed > * {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.event-player__live-label,
.event-player__replay-label {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.76);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.event-player__replay-label {
    border-color: rgba(255, 136, 0, 0.38);
    color: #ffb45c;
}

.event-player__compatibility {
    position: absolute;
    z-index: 6;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 136, 0, 0.42);
    border-radius: 12px;
    background: rgba(12, 12, 14, 0.92);
    color: #fff;
    backdrop-filter: blur(12px);
}

.event-player__compatibility p {
    margin: 0 0 7px;
    color: #d8d8de;
}

.event-player__compatibility a {
    color: #ffb45c;
    font-weight: 800;
}

.single-event__reminders {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.single-event__reminders .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.76rem;
}

.info-panel__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.info-panel__actions .info-panel__button {
    margin-top: 0;
}

.archive-filters {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -34px 0 38px;
}

.archive-filter {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--lx-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--lx-muted);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.archive-filter:hover,
.archive-filter.is-active {
    border-color: var(--lx-blue);
    background: rgba(6, 102, 255, 0.16);
    color: #fff;
}

.channel-archive--live .archive-filter:hover,
.channel-archive--live .archive-filter.is-active { border-color: var(--lx-live); background: rgba(255, 43, 7, 0.14); }
.channel-archive--replay .archive-filter:hover,
.channel-archive--replay .archive-filter.is-active { border-color: var(--lx-replay); background: rgba(255, 136, 0, 0.14); }
.channel-archive--sports .archive-filter:hover,
.channel-archive--sports .archive-filter.is-active { border-color: var(--lx-sports); background: rgba(24, 217, 0, 0.12); }
.channel-archive--news .archive-filter:hover,
.channel-archive--news .archive-filter.is-active { border-color: var(--lx-news); background: rgba(255, 0, 143, 0.13); }
.channel-archive--events .archive-filter:hover,
.channel-archive--events .archive-filter.is-active { border-color: var(--lx-events); background: rgba(170, 0, 212, 0.14); }

@media (max-width: 680px) {
    .event-player__live-label,
    .event-player__replay-label {
        top: 10px;
        left: 10px;
    }

    .event-player__compatibility {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 12px;
        font-size: 0.78rem;
    }

    .single-event__reminders {
        align-items: stretch;
        flex-direction: column;
    }

    .archive-filters {
        margin-top: -18px;
    }
}
