:root {
    --bg: #eef3f8;
    --bg-alt: #dfe7f1;
    --surface: #ffffff;
    --surface-2: #f5f8fc;
    --surface-3: #0c1b2a;
    --surface-4: #10243a;
    --text: #122033;
    --text-soft: #5f6f83;
    --text-invert: #f3f7fb;
    --line: rgba(18, 32, 51, 0.1);
    --line-strong: rgba(18, 32, 51, 0.18);
    --brand: #d61f2c;
    --brand-dark: #ab1020;
    --brand-2: #0f62fe;
    --brand-3: #ffd447;
    --success: #0ea66b;
    --warning: #f59e0b;
    --shadow-sm: 0 12px 24px rgba(18, 32, 51, 0.08);
    --shadow-md: 0 24px 60px rgba(18, 32, 51, 0.12);
    --shadow-lg: 0 32px 90px rgba(7, 17, 29, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --page-width: 1360px;
    --header-height: 82px;
}

html {
    background: linear-gradient(180deg, #f3f6fb 0%, #e7eef7 50%, #eef3f8 100%);
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 98, 254, 0.1), transparent 32%),
        radial-gradient(circle at top right, rgba(214, 31, 44, 0.08), transparent 28%),
        linear-gradient(180deg, #f4f7fb 0%, #edf2f8 100%);
    font-family: 'IBM Plex Sans', sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.display-font,
.section-kicker,
.scheduled-events,
.sunday-heading,
#event-title,
.site-brand-wordmark,
.page-title {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.01em;
}

.container {
    width: min(calc(100% - 32px), var(--page-width));
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

.site-shell {
    position: relative;
}

.site-shell::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 35%);
    opacity: 0.35;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 29, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(7, 17, 29, 0.28);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-height);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.site-brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(214, 31, 44, 0.98), rgba(127, 7, 23, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 20px rgba(214, 31, 44, 0.28);
}

.site-brand__text {
    display: grid;
    gap: 2px;
}

.site-brand-wordmark {
    color: var(--text-invert);
    font-size: 2.15rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.site-brand-tagline {
    color: rgba(243, 247, 251, 0.74);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-beta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--brand-3), #ffb11f);
    color: #231603;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    color: rgba(243, 247, 251, 0.84);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-invert);
    transform: translateY(-1px);
}

.site-nav__link--accent {
    background: linear-gradient(135deg, rgba(214, 31, 44, 0.95), rgba(145, 14, 27, 0.95));
    color: #fff7f7;
    box-shadow: 0 12px 22px rgba(214, 31, 44, 0.22);
}

.site-nav__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(243, 247, 251, 0.84);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-social-link__icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.site-social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-toggle__icon {
    width: 24px;
    height: 24px;
}

.site-mobile-menu {
    padding: 0 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-mobile-menu__inner {
    display: grid;
    gap: 8px;
    padding-top: 16px;
}

.site-mobile-menu__link {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(243, 247, 251, 0.9);
    text-decoration: none;
    font-weight: 600;
}

.site-mobile-menu__link.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.site-mobile-menu__link--accent {
    background: linear-gradient(135deg, rgba(214, 31, 44, 0.95), rgba(145, 14, 27, 0.95));
    color: #fff7f7;
}

.site-mobile-socials {
    display: flex;
    gap: 10px;
}

.push-banner-link {
    display: block;
    text-decoration: none;
}

.push-banner {
    position: relative;
    overflow: hidden;
    margin: 14px auto 0;
    width: min(calc(100% - 32px), var(--page-width));
    border-radius: 22px;
    background: linear-gradient(135deg, #08121f, #163455 58%, #114f8d);
    color: #f2f7ff;
    box-shadow: var(--shadow-md);
}

.push-banner::before,
.push-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.push-banner::before {
    width: 240px;
    height: 240px;
    top: -120px;
    right: -40px;
}

.push-banner::after {
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -20px;
}

.push-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
}

.push-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.6rem;
}

.push-banner__eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.push-banner__title {
    display: block;
    margin-top: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.push-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #0d2238;
    font-weight: 700;
    white-space: nowrap;
}

.scrolling-list {
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.98));
    border-bottom: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: none;
    position: sticky;
    top: var(--header-height);
    z-index: 99;
}

.scrolling-list-content {
    display: flex;
    gap: 28px;
    min-height: 56px;
    align-items: center;
    animation: SPORTING77-scroll-left 48s linear infinite;
    white-space: nowrap;
    padding: 0 14px;
}

.scrolling-list-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text);
}

.scrolling-list-content a {
    color: var(--brand-2) !important;
    font-weight: 700;
    text-decoration: none;
}

.scrolling-list-content a:hover {
    text-decoration: underline;
}

@keyframes SPORTING77-scroll-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.page-frame {
    width: min(calc(100% - 32px), var(--page-width));
    margin: 28px auto 0;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.78fr);
    gap: 24px;
}

.panel,
.event-card,
.channel-card,
.country-card,
.suggest-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.panel {
    padding: 24px;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 42px 36px;
    color: #f8fbff;
    background: linear-gradient(125deg, rgba(7, 17, 29, 0.96), rgba(15, 37, 64, 0.88) 48%, rgba(214, 31, 44, 0.88));
    box-shadow: var(--shadow-lg);
}

.hero-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(255, 212, 71, 0.32), transparent 28%), radial-gradient(circle at left top, rgba(15, 98, 254, 0.34), transparent 26%);
}

.hero-surface > * {
    position: relative;
}

.hero-surface__eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-surface h1,
.page-title {
    margin-top: 18px;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.hero-surface p,
.lead-copy {
    max-width: 760px;
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(244, 248, 252, 0.88);
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.hero-meta-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta-card strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    text-transform: uppercase;
}

.hero-meta-card span {
    display: block;
    margin-top: 5px;
    font-size: 0.84rem;
    color: rgba(244, 248, 252, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.72fr);
    gap: 20px;
    align-items: end;
}

.hero-editorial-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-editorial-card h2 {
    font-size: 1.9rem;
    text-transform: uppercase;
}

.hero-editorial-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.hero-editorial-list div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(8, 18, 31, 0.28);
}

.hero-editorial-list strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.hero-editorial-list span {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
}

.current-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
    color: var(--text-soft);
}

.dashboard-stack {
    display: grid;
    gap: 24px;
}

.dashboard-card,
.surface-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}

.dashboard-card {
    padding: 24px;
}

.dashboard-card__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-card__title {
    font-size: 2rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.dashboard-card__subtext {
    color: var(--text-soft);
    max-width: 540px;
}

.dashboard-card__subtext strong {
    color: var(--text);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.featured-event-card,
.event-tile {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.featured-event-card {
    padding: 22px;
    background: linear-gradient(145deg, rgba(8, 18, 31, 0.98), rgba(18, 43, 69, 0.96) 62%, rgba(214, 31, 44, 0.92));
    color: #f5f9ff;
}

.featured-event-card::before,
.event-tile::before {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.featured-event-card > *,
.event-tile > * {
    position: relative;
}

.featured-event-top,
.event-tile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.featured-event-time,
.event-tile-time {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}

.featured-event-time strong,
.event-tile-time strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.featured-event-meta,
.event-tile-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.event-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-chip img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.event-chip--light {
    background: rgba(15, 98, 254, 0.08);
    color: var(--brand-2);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-pill--live {
    background: rgba(214, 31, 44, 0.14);
    color: #ff8090;
}

.status-pill--upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(243, 247, 251, 0.84);
}

.status-pill--light-live {
    background: rgba(214, 31, 44, 0.1);
    color: var(--brand);
}

.status-pill--light-upcoming {
    background: rgba(15, 98, 254, 0.08);
    color: var(--brand-2);
}

.featured-event-title,
.event-tile-title {
    margin-top: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 0.94;
    text-transform: uppercase;
}

.featured-event-subtitle,
.event-tile-subtitle {
    margin-top: 12px;
    line-height: 1.75;
}

.featured-event-subtitle {
    color: rgba(243, 247, 251, 0.8);
}

.event-tile-subtitle {
    color: var(--text-soft);
}

.featured-event-actions,
.event-tile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.featured-event-actions {
    color: rgba(243, 247, 251, 0.72);
}

.schedule-day-stack {
    display: grid;
    gap: 18px;
}

.schedule-day {
    display: grid;
    gap: 16px;
}

.schedule-day__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.schedule-day__meta {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.sport-board {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.sport-board__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #08121f, #173b61);
    color: #f5f9ff;
}

.sport-board__header-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sport-board__header-main img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px;
}

.sport-board__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.sport-board__count {
    margin-top: 4px;
    color: rgba(243, 247, 251, 0.74);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sport-board__controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-filter-link,
.sport-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #f7fbff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sport-toggle-button svg {
    transition: transform 0.2s ease;
}

.sport-board__body {
    padding: 18px;
}

.event-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.event-tile {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 251, 0.98));
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.event-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 98, 254, 0.18);
}

.matchup-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.matchup-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.matchup-team img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(15, 98, 254, 0.08);
}

.matchup-versus {
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-empty,
.schedule-empty {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-soft);
    text-align: center;
}

.banner-frame {
    overflow: hidden;
    padding: 8px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8, 18, 31, 0.96), rgba(21, 49, 78, 0.96));
    box-shadow: var(--shadow-md);
}

.banner-frame iframe {
    display: block;
    width: 100%;
    min-height: 90px;
    border: none;
    border-radius: 18px;
    background: #ffffff;
}

.utility-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.utility-card h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.utility-card p {
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.75;
}

.utility-link-grid {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.utility-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 98, 254, 0.06);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.utility-link small {
    color: var(--text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-accent-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.85rem;
}

.section-accent-note::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.search-shell {
    position: relative;
}

.search-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(214, 31, 44, 0.1), rgba(15, 98, 254, 0.06));
    transform: rotate(-1.2deg);
}

.search-shell__inner {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

#search-input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(18, 32, 51, 0.1);
    border-radius: 16px;
    background: #f7fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

#search-input:focus {
    outline: none;
    border-color: rgba(15, 98, 254, 0.42);
    box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.12);
}

#search-dropdown {
    top: calc(100% + 8px);
    border: 1px solid rgba(18, 32, 51, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 20px 45px rgba(18, 32, 51, 0.18) !important;
}

.search-result-item {
    padding: 14px 16px !important;
}

.search-result-item:hover {
    background: #eef5ff !important;
}

.search-result-sport {
    background-color: rgba(15, 98, 254, 0.1) !important;
    color: #0f62fe !important;
}

.filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.filter-toolbar__label {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.day-button,
.action-button,
.watch-button,
.btn-primary,
#theatre-mode-button,
#popup-player-button,
.copy-button,
.back-button,
.channel-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px !important;
    border: 1px solid transparent !important;
    border-radius: var(--radius-pill) !important;
    background: #ffffff !important;
    color: var(--text) !important;
    box-shadow: 0 10px 20px rgba(18, 32, 51, 0.08) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.day-button:hover,
.action-button:hover,
.watch-button:hover,
.btn-primary:hover,
#theatre-mode-button:hover,
#popup-player-button:hover,
.copy-button:hover,
.back-button:hover,
.channel-card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(18, 32, 51, 0.12) !important;
}

.day-button.is-selected,
.watch-button,
.btn-primary,
.action-button--primary,
.back-button,
.channel-card button,
#theatre-mode-button,
#popup-player-button,
.copy-button {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark)) !important;
    color: #ffffff !important;
}

.day-button[data-days='0'] {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #ffffff;
}

.section-grid,
.country-grid,
.channels-grid {
    display: grid;
    gap: 18px;
}

.section-grid,
.country-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.country-card,
.channel-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-card:hover,
.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 98, 254, 0.22);
}

.country-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 253, 0.98));
}

.country-card::before {
    content: '';
    position: absolute;
    inset: auto -40px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 98, 254, 0.1), transparent 68%);
}

.country-name,
.channel-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem !important;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text) !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.country-meta,
.channel-meta {
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.5;
}

.channel-cta {
    margin-top: 16px;
    width: 100%;
}

.channel-cta button {
    width: 100%;
}

.country-card__flag-wrap {
    margin-bottom: 16px;
}

.flag-icon {
    width: 72px;
    height: 52px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(18, 32, 51, 0.12);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(214, 31, 44, 0.1);
    color: var(--brand) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.sport-section-head {
    background: linear-gradient(135deg, #09203a, #16395e) !important;
    padding: 16px 20px !important;
}

.sport-section-head span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.sport-section-body {
    padding: 14px 18px 18px !important;
}

.seo-sport-filter td {
    background: linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(15, 98, 254, 0.03)) !important;
    color: #0f62fe !important;
}

.sidebar-stack {
    display: grid;
    gap: 20px;
}

.chat-card iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 18px;
    background: #dce8f5;
}

.guideline-card {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 27, 42, 0.96), rgba(21, 49, 78, 0.96));
    color: rgba(243, 247, 251, 0.86);
}

.guideline-card h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
}

.guideline-card ul {
    margin-top: 12px;
    padding-left: 18px;
    list-style: disc;
}

.guideline-card li + li {
    margin-top: 8px;
}

.player-shell {
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #08121f, #0f1f33);
    color: #f4f8fc;
    box-shadow: var(--shadow-lg);
}

.player-shell__header {
    padding: 26px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-shell__body {
    padding: 0 28px 28px;
}

.event-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    text-transform: uppercase;
    line-height: 0.92;
}

.event-description {
    color: rgba(243, 247, 251, 0.72) !important;
    font-size: 1rem;
}

.aspect-video {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #02060b;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

#countdown-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 10;
    text-align: center;
    background: linear-gradient(135deg, rgba(4, 10, 18, 0.96), rgba(16, 36, 58, 0.9)) !important;
}

#countdown {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: clamp(3rem, 10vw, 5rem) !important;
}

.stream-picker {
    gap: 10px !important;
}

.stream-button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(243, 247, 251, 0.86);
    box-shadow: none;
}

.stream-button.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-color: transparent;
    color: #ffffff;
}

.player-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.detail-grid {
    display: grid;
    gap: 16px;
}

.embed-code-box {
    margin-top: 22px !important;
}

.embed-code-box label {
    color: rgba(243, 247, 251, 0.78) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem !important;
}

.embed-code-box pre {
    margin: 0;
    padding: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    background: rgba(3, 10, 18, 0.64) !important;
    color: #dbe9f5 !important;
}

.copy-button {
    position: absolute;
    top: 42px;
    right: 12px;
}

#toast {
    background: linear-gradient(135deg, #0ea66b, #087a4f) !important;
}

.watch-meta-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.watch-meta-card p + p {
    margin-top: 10px;
}

.watch-meta-card strong {
    color: #ffffff;
}

.watch-meta-grid {
    display: grid;
    gap: 14px;
}

.team-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 0 16px;
}

.team-slot {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.team-slot img {
    width: 84px !important;
    height: 84px !important;
    object-fit: contain;
}

.team-slot__name {
    font-weight: 700;
}

.team-versus {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.58);
}

.seo-content {
    width: min(calc(100% - 32px), var(--page-width));
    margin: 32px auto 0;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.seo-content h2,
.seo-content h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.seo-content p,
.seo-content li {
    color: var(--text-soft) !important;
    line-height: 1.8;
}

.seo-content ul {
    padding-left: 18px;
    list-style: disc;
}

.site-footer {
    width: min(calc(100% - 32px), var(--page-width));
    margin: 40px auto 28px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #09111c, #10243a 45%, #122c47);
    color: rgba(243, 247, 251, 0.82);
    box-shadow: var(--shadow-lg);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 22px;
    align-items: start;
}

.site-footer__brand h2 {
    font-size: 2.3rem;
    text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__links p,
.site-footer__disclaimer {
    color: rgba(243, 247, 251, 0.68);
    line-height: 1.8;
}

.site-footer__socials,
.site-footer__link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.site-footer__pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: #f5f9ff;
    text-decoration: none;
    font-weight: 600;
}

.site-footer__bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.loading {
    display: none;
    padding: 22px;
    text-align: center;
    color: var(--text-soft);
}

.loading.active,
.loading:not(.hidden) {
    display: block;
}

.loading-billboard {
    padding: 30px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.tv-shell,
.donate-shell {
    width: min(calc(100% - 32px), var(--page-width));
    margin: 28px auto 0;
}

.directory-hero,
.donate-hero {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #08121f, #17395f 58%, #0f62fe);
    color: #f6faff;
    box-shadow: var(--shadow-lg);
}

.directory-hero h1,
.donate-hero h1 {
    margin-top: 14px;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.directory-hero p,
.donate-hero p {
    max-width: 720px;
    margin-top: 12px;
    color: rgba(243, 247, 251, 0.82);
    line-height: 1.8;
}

.directory-content,
.donate-content {
    margin-top: 24px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.donation {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.donation button {
    width: 100%;
}

.crypto-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
}

.address {
    margin: 16px 0 14px;
    padding: 16px;
    border-radius: 18px;
    background: #f4f8fc;
    border: 1px solid rgba(18, 32, 51, 0.08);
    color: var(--text);
    font-family: 'IBM Plex Mono', monospace;
    overflow-wrap: anywhere;
}

.donation-note {
    color: var(--text-soft);
    line-height: 1.7;
}

.donate-footer-note {
    margin-top: 24px;
    color: var(--text-soft);
    text-align: center;
}

#donate-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #0ea66b, #087a4f);
    color: #ffffff;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#donate-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.empty-state {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-soft);
    text-align: center;
}

#watch-content.theatre-mode {
    grid-template-columns: minmax(0, 1fr);
}

#watch-content.theatre-mode .sidebar {
    display: none !important;
}

.watch-page-frame {
    width: min(calc(100% - 16px), 1680px);
}

.watch-layout {
    grid-template-columns: minmax(0, 2.35fr) minmax(300px, 0.65fr);
    gap: 14px;
}

.watch-layout .player-shell__header,
.watch-layout .player-shell__body {
    padding-left: 18px;
    padding-right: 18px;
}

@media (max-width: 1120px) {
    .page-grid,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .chat-card iframe {
        height: 520px;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        gap: 14px;
    }

    .site-header__actions {
        gap: 12px;
    }

    .site-nav {
        display: none;
    }

    .site-nav__socials--desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .push-banner__inner,
    .hero-meta-grid,
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-surface,
    .directory-hero,
    .donate-hero,
    .site-footer,
    .seo-content,
    .dashboard-card,
    .panel,
    .player-shell__header,
    .player-shell__body {
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 768px) {
    .container,
    .page-frame,
    .tv-shell,
    .donate-shell,
    .seo-content,
    .site-footer,
    .push-banner {
        width: min(calc(100% - 20px), var(--page-width));
    }

    .hero-surface,
    .directory-hero,
    .donate-hero {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .hero-surface h1,
    .page-title,
    .directory-hero h1,
    .donate-hero h1,
    .event-title {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

    .chat-card iframe {
        height: 420px;
    }

    .team-comparison {
        gap: 16px;
    }

    .site-brand {
        gap: 10px;
    }

    .site-brand__mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .site-brand-wordmark {
        font-size: 1.7rem;
    }

    .site-beta-badge,
    .site-brand-tagline {
        display: none;
    }

    .country-card,
    .channel-card {
        padding: 18px;
    }

    .team-slot img {
        width: 64px !important;
        height: 64px !important;
    }

    .player-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .player-actions > * {
        flex: 1 1 100%;
    }

    .featured-grid,
    .event-feed {
        grid-template-columns: 1fr;
    }

    .sport-board__header,
    .schedule-day__header,
    .featured-event-actions,
    .event-tile-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .sport-board__controls {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Dense schedule overrides for high-event days */
.home-dense-hero {
    margin-top: 12px;
}

.hero-surface--compact {
    border-radius: 14px;
    padding: 14px 16px;
}

.hero-surface--compact h1 {
    margin-top: 6px;
    font-size: clamp(1.9rem, 4.3vw, 2.7rem);
    line-height: 0.95;
}

.hero-surface--compact .description {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.home-hero-grid--compact {
    grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.7fr);
    gap: 10px;
    align-items: center;
}

.home-quick-stats {
    display: grid;
    gap: 6px;
}

.home-quick-stats .hero-summary-stat {
    margin-top: 0;
    padding: 8px 10px;
    font-size: 0.8rem;
}

.home-density-grid {
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.65fr);
    gap: 10px;
    align-items: start;
}

.home-density-grid .sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.home-density-grid .sidebar .panel,
.home-density-grid .sidebar .utility-card,
.home-density-grid .sidebar .guideline-card {
    padding: 12px;
    border-radius: 12px;
}

.home-density-grid .homepage-sidebar .chat-card h2 {
    margin: 0;
    font-size: 1.05rem;
}

.home-density-grid .homepage-sidebar .chat-card {
    position: sticky;
    top: 84px;
}

.home-density-grid .homepage-sidebar .chat-card p {
    margin-top: 4px;
    font-size: 0.74rem;
    line-height: 1.35;
    color: var(--text-soft);
}

.schedule-day {
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(18, 32, 51, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 252, 0.92));
}

.schedule-day__header {
    padding: 0 2px 8px;
    border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.schedule-day__meta {
    margin-top: 2px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.sunday-heading {
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
}

.page-frame {
    margin-top: 12px;
}

.dashboard-stack {
    gap: 10px;
}

.dashboard-card,
.surface-card {
    border-radius: 12px;
}

.dashboard-card {
    padding: 12px;
}

.dashboard-card__header {
    margin-bottom: 8px;
}

.dashboard-card__title,
.scheduled-events,
.sunday-heading {
    font-size: 1.25rem;
    line-height: 1;
}

.dashboard-card__subtext,
.section-accent-note {
    font-size: 0.76rem;
}

.banner-frame {
    padding: 3px;
    border-radius: 10px;
}

.banner-frame iframe {
    min-height: 76px;
    border-radius: 7px;
}

.search-shell::before {
    transform: none;
}

.search-shell__inner {
    padding: 8px;
    border-radius: 12px;
}

#search-input {
    min-height: 40px;
    border-radius: 8px;
    font-size: 0.88rem;
}

.filter-toolbar {
    gap: 8px;
}

.filter-toolbar__label {
    font-size: 0.78rem;
}

.quick-access-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.quick-access-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 51, 0.1);
    background: rgba(18, 32, 51, 0.04);
    color: var(--text);
    text-decoration: none;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quick-access-pill:hover {
    background: rgba(15, 98, 254, 0.1);
    border-color: rgba(15, 98, 254, 0.22);
}

.day-button,
.action-button,
.watch-button,
.btn-primary,
#theatre-mode-button,
#popup-player-button,
.copy-button,
.back-button,
.channel-card button {
    min-height: 30px;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
}

.featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 8px;
}

.featured-event-card,
.event-tile {
    border-radius: 10px;
}

.featured-event-card {
    padding: 10px;
}

.featured-event-time,
.event-tile-time {
    gap: 4px;
}

.featured-event-time strong,
.event-tile-time strong {
    font-size: 1.05rem;
}

.featured-event-meta,
.event-tile-meta {
    gap: 5px;
}

.event-chip {
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.58rem;
}

.status-pill {
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.58rem;
}

.status-pill::before {
    width: 6px;
    height: 6px;
}

.featured-event-title,
.event-tile-title {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.2;
}

.featured-event-subtitle,
.event-tile-subtitle {
    margin-top: 3px;
    font-size: 0.73rem;
    line-height: 1.3;
}

.featured-event-actions,
.event-tile-actions {
    margin-top: 6px;
    gap: 8px;
    font-size: 0.66rem;
}

.schedule-day {
    gap: 6px;
}

.schedule-day__meta {
    font-size: 0.66rem;
}

.schedule-day-stack {
    gap: 8px;
}

.sport-board {
    border-radius: 10px;
}

.sport-board__header {
    gap: 8px;
    padding: 7px 8px;
}

.sport-board__header-main {
    gap: 6px;
}

.sport-board__header-main img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    padding: 3px;
}

.sport-board__title {
    font-size: 0.98rem;
}

.sport-board__count {
    margin-top: 1px;
    font-size: 0.56rem;
}

.sport-board__controls {
    gap: 5px;
}

.sport-filter-link,
.sport-toggle-button {
    min-height: 24px;
    padding: 0 7px;
    font-size: 0.56rem;
}

.sport-board__body {
    padding: 8px;
}

.event-feed {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px;
}

.bet-group {
    margin-top: 8px;
    border-top: 1px dashed rgba(18, 32, 51, 0.16);
    padding-top: 8px;
}

.bet-group__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(18, 32, 51, 0.1);
    background: rgba(18, 32, 51, 0.04);
    color: var(--text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}

.bet-group__toggle span {
    color: var(--text-soft);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
}

.bet-group__content {
    margin-top: 8px;
}

.event-tile {
    padding: 8px;
}

.event-tile:hover,
.featured-event-card:hover {
    transform: translateY(-1px);
}

.matchup-line {
    gap: 5px;
}

.matchup-team {
    gap: 4px;
}

.matchup-team img {
    width: 16px;
    height: 16px;
}

.matchup-versus {
    font-size: 0.56rem;
}

.featured-empty,
.schedule-empty,
.loading-billboard {
    padding: 10px;
    border-radius: 10px;
    font-size: 0.78rem;
}

@media (max-width: 1120px) {
    .watch-layout {
        grid-template-columns: 1fr;
    }

    .home-density-grid {
        grid-template-columns: 1fr;
    }

    .home-density-grid .sidebar {
        grid-template-columns: 1fr;
    }

    .home-density-grid .homepage-sidebar .chat-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .watch-page-frame {
        width: min(calc(100% - 12px), 1680px);
    }

    .home-density-grid .sidebar {
        display: none;
    }

    .hero-surface--compact {
        padding: 10px;
    }

    .hero-surface--compact h1 {
        font-size: 1.45rem;
    }
}

/* Final production consistency pass */
.section-block-lg {
    margin-bottom: 1.25rem;
}

.selected-country-flag {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 14px;
}

.tv-section-card {
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.tv-section-card h1,
.tv-section-card h2 {
    font-size: 1.35rem;
    line-height: 1;
    text-transform: uppercase;
}

.tv-section-card p {
    color: var(--text-soft);
    line-height: 1.55;
}

.channel-country-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.watch-layout .sidebar {
    display: grid;
}

.watch-layout .chat-card p,
.homepage-sidebar .chat-card p {
    margin-top: 4px;
    line-height: 1.4;
}

.schedule-hub-card {
    display: grid;
    gap: 12px;
}

.schedule-hub-card__block {
    display: grid;
    gap: 8px;
}

.schedule-hub-card__divider {
    height: 1px;
    background: rgba(18, 32, 51, 0.1);
    margin: 2px 0;
}

.schedule-hub-card .dashboard-card__header {
    margin-bottom: 4px;
}

.section-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.section-collapse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 51, 0.12);
    background: rgba(18, 32, 51, 0.04);
    color: var(--text);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-collapse-btn:hover {
    background: rgba(15, 98, 254, 0.1);
    border-color: rgba(15, 98, 254, 0.22);
}

.section-collapsible.is-collapsed {
    display: none;
}

.site-footer {
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 14px;
}

.site-footer__brand h2 {
    font-size: 1.6rem;
    line-height: 1.05;
}

.site-footer__brand p,
.site-footer__links p,
.site-footer__disclaimer {
    line-height: 1.55;
}

.seo-content {
    margin-top: 10px;
    border-radius: 12px;
    padding: 12px;
}

@media (max-width: 768px) {
    .channel-country-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-layout .sidebar iframe,
    .homepage-sidebar .chat-card iframe {
        height: 460px;
    }
}

/* Home + Watch unification (phase 1 implementation) */
.home-full-width,
.watch-page-frame {
    width: calc(100% - 16px);
    max-width: 1920px;
}

.watch-page-frame {
    margin-top: 12px;
}

.watch-layout,
.home-density-grid {
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.65fr);
    gap: 10px;
    align-items: start;
}

.player-shell {
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
    color: var(--text);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow-sm);
}

.player-shell__header {
    padding: 12px;
    border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.player-shell__body {
    padding: 12px;
}

.event-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 0.96;
}

.event-description {
    color: var(--text-soft) !important;
}

.aspect-video {
    border: 1px solid rgba(18, 32, 51, 0.14);
    border-radius: 12px;
    background: #050a10;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

#countdown-overlay {
    background: linear-gradient(135deg, rgba(10, 18, 29, 0.9), rgba(14, 37, 63, 0.82)) !important;
}

.stream-button {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 51, 0.1);
    background: rgba(18, 32, 51, 0.04);
    color: var(--text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stream-button.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-color: transparent;
    color: #ffffff;
}

.embed-code-box {
    margin-top: 10px !important;
}

.embed-code-box label {
    color: var(--text-soft) !important;
}

.embed-code-box pre {
    margin: 0;
    padding: 10px !important;
    border: 1px solid rgba(18, 32, 51, 0.1) !important;
    border-radius: 10px !important;
    background: #f4f8fc !important;
    color: #233549 !important;
}

.guideline-card {
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
    border: 1px solid rgba(18, 32, 51, 0.08);
    color: var(--text);
}

.guideline-card h3 {
    font-size: 1.05rem;
}

.guideline-card ul {
    margin-top: 8px;
}

.seo-content--collapsible {
    margin-top: 8px;
    padding: 12px;
}

.seo-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.seo-content__header h2 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.seo-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 51, 0.1);
    background: rgba(18, 32, 51, 0.04);
    color: var(--text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.seo-content__body {
    margin-top: 10px;
}

.seo-content__body.is-collapsed {
    display: none;
}

#search-dropdown {
    background: #ffffff;
    border: 1px solid rgba(18, 32, 51, 0.12);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-time {
    font-size: 0.78rem;
    color: var(--text-soft);
    min-width: 80px;
    font-weight: 600;
}

.search-result-title {
    flex: 1;
    font-weight: 600;
    color: var(--text);
}

.search-result-live {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.72rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.search-no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-soft);
}

.search-dropdown-header {
    padding: 8px 12px;
    background-color: #f4f8fc;
    border-bottom: 1px solid rgba(18, 32, 51, 0.08);
    font-size: 0.66rem;
    color: var(--text-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-close-btn {
    background: none;
    border: none;
    color: #7a899b;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-close-btn:hover {
    color: #2a3b4f;
}

@media (max-width: 1120px) {
    .watch-layout,
    .home-density-grid {
        grid-template-columns: 1fr;
    }
}

/* Final polish: watch lower section + home filter/search controls */
.home-tools-stack {
    display: grid;
    gap: 6px;
}

.home-tools-stack .search-shell {
    margin-bottom: 0;
}

.home-tools-stack .search-shell::before {
    border-radius: 12px;
    transform: none;
    background: linear-gradient(135deg, rgba(15, 98, 254, 0.08), rgba(214, 31, 44, 0.07));
}

.home-tools-stack .search-shell__inner {
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
}

.home-tools-stack #search-input {
    min-height: 42px;
    border-radius: 10px;
    font-size: 0.9rem;
}

#day-selector {
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(18, 32, 51, 0.08);
    background: rgba(244, 248, 252, 0.9);
}

#day-selector .filter-toolbar__label {
    width: 100%;
    font-size: 0.72rem;
    line-height: 1.35;
}

.day-button {
    min-height: 30px;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
    box-shadow: none !important;
}

.quick-access-row {
    margin-top: 2px;
}

.quick-access-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.65rem;
}

.home-density-grid .schedule-hub-card {
    gap: 8px;
}

.home-density-grid .schedule-hub-card__block {
    gap: 6px;
}

.home-density-grid .schedule-hub-card__divider {
    margin: 0;
}

.home-density-grid .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 6px;
}

.home-density-grid .schedule-day-stack {
    gap: 6px;
}

.home-density-grid .schedule-day {
    padding: 8px;
}

.home-density-grid .event-feed {
    gap: 5px;
}

.search-result-item {
    display: grid;
    grid-template-columns: minmax(82px, auto) minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.search-result-sport {
    border-radius: 999px;
    border: 1px solid rgba(15, 98, 254, 0.2);
    background: rgba(15, 98, 254, 0.08);
    color: #0f62fe;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.watch-streams-slot .mt-4 {
    margin-top: 6px !important;
}

.watch-streams-slot .section-kicker {
    margin-bottom: 4px;
}

.watch-streams-slot .stream-picker {
    margin-top: 6px !important;
}

.watch-stream-panel {
    margin-top: 6px;
}

.watch-stream-panel .watch-panel-head {
    margin-bottom: 6px;
}

.watch-stream-panel .stream-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.watch-lower-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
}

.watch-info-panel {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(18, 32, 51, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.watch-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.watch-panel-head h3 {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
}

.embed-code-box {
    margin-top: 0 !important;
}

.embed-code-box .copy-button {
    position: static;
    min-height: 28px;
    padding: 0 10px !important;
    font-size: 0.64rem !important;
}

.embed-code-box label {
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.62rem !important;
}

.embed-code-box pre {
    max-height: 190px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.detail-grid {
    gap: 10px;
}

.watch-meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.watch-meta-card {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(18, 32, 51, 0.08);
    background: rgba(244, 248, 252, 0.9);
}

.watch-meta-card strong {
    color: var(--text);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.watch-meta-card p {
    margin: 0;
    line-height: 1.35;
}

.watch-meta-card p + p {
    margin-top: 8px;
}

.watch-league-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: text-bottom;
    margin-right: 6px;
}

.watch-event-inline {
    display: inline-block;
}

@media (max-width: 768px) {
    .search-result-item {
        grid-template-columns: 1fr;
        gap: 5px;
        align-items: flex-start;
    }

    .watch-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Contrast hardening and footer redesign */
.watch-info-panel,
.watch-info-panel p,
.watch-info-panel label,
.watch-info-panel strong,
.watch-info-panel h3,
.watch-info-panel span,
.watch-meta-card,
.watch-meta-card p,
.watch-meta-card span {
    color: var(--text) !important;
}

.watch-meta-card {
    background: #f3f8fd;
    border: 1px solid rgba(18, 32, 51, 0.12);
}

.watch-meta-card strong {
    color: #1b3046 !important;
}

.watch-event-inline,
.watch-event-inline a {
    color: #1b3046 !important;
}

.embed-code-box pre {
    background: #eef4fa !important;
    color: #11263b !important;
    border: 1px solid rgba(18, 32, 51, 0.16) !important;
}

.search-shell__inner,
#day-selector,
.quick-access-row {
    background-color: #f7fbff;
}

#day-selector {
    border-color: rgba(18, 32, 51, 0.12);
}

.filter-toolbar__label {
    color: #4f6176;
}

.quick-access-pill {
    color: #1b3046;
    border-color: rgba(18, 32, 51, 0.14);
}

.site-footer {
    width: min(calc(100% - 16px), 1920px);
    margin: 16px auto 14px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7fbff, #eaf2fb);
    border: 1px solid rgba(18, 32, 51, 0.12);
    color: #13283d;
    box-shadow: 0 10px 24px rgba(18, 32, 51, 0.08);
}

.site-footer .section-kicker {
    background: rgba(15, 98, 254, 0.1);
    color: #1c4f91;
}

.site-footer__top {
    gap: 14px;
}

.site-footer__brand h2 {
    color: #10263b;
    font-size: 1.25rem;
    line-height: 1.1;
}

.site-footer__brand p,
.site-footer__links p,
.site-footer__disclaimer,
.site-footer__bottom p {
    color: #4c6075;
}

.site-footer__pill {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(18, 32, 51, 0.14);
    background: #ffffff;
    color: #14314f;
    font-size: 0.68rem;
    font-weight: 700;
}

.site-footer__pill:hover {
    border-color: rgba(15, 98, 254, 0.34);
    background: #f2f7fe;
}

.site-footer__bottom {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(18, 32, 51, 0.12);
}