:root {
    --site-bg: #0f1113;
    --site-bg-soft: #151719;
    --site-surface: #1c1e20;
    --site-surface-strong: #242729;
    --site-surface-muted: #151719;
    --site-text: #f7f7f8;
    --site-text-muted: #a9adb4;
    --site-border: rgba(255, 255, 255, 0.08);
    --site-border-strong: rgba(255, 255, 255, 0.15);
    --site-primary: #c8ff2f;
    --site-primary-strong: #b4eb16;
    --site-primary-soft: rgba(200, 255, 47, 0.11);
    --site-secondary: #ff4fd8;
    --site-live: #ff3b6b;
    --site-warning: #ffc857;
    --site-success: #4ade80;
    --site-danger: #fb7185;
    --site-radius-sm: 12px;
    --site-radius: 16px;
    --site-radius-lg: 22px;
    --site-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --site-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--site-bg);
    color: var(--site-text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
    color: var(--site-primary);
    text-decoration: none;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(200, 255, 47, 0.46);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--site-primary);
    color: #101214;
    font-size: 13px;
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    color: #101214;
    transform: translateY(0);
}

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

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

.site-container {
    width: min(calc(100% - 32px), var(--site-container));
    margin-inline: auto;
}

.site-section {
    padding-block: clamp(56px, 7vw, 104px);
}

.site-section-sm {
    padding-block: clamp(32px, 5vw, 60px);
}

.site-stack {
    display: grid;
    gap: 24px;
}

.site-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.site-split {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.site-topbar {
    border-bottom: 1px solid var(--site-border);
    background: #0a0c0e;
}

.site-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--site-live);
    box-shadow: 0 0 0 5px rgba(255, 59, 107, 0.12);
}

.site-language-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-language-links a {
    padding: 4px 8px;
    border-radius: 999px;
}

.site-language-links a:hover {
    background: var(--site-primary-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--site-border);
    background: rgba(15, 17, 19, 0.9);
    backdrop-filter: blur(18px);
}

.site-nav {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.site-brand-copy {
    display: grid;
    line-height: 1.15;
}

.site-brand-name {
    color: var(--site-text);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.site-brand-tagline {
    color: var(--site-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #b9bdc3;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
    background: rgba(255, 255, 255, 0.055);
    color: var(--site-text);
}

.site-nav-links a.is-active {
    box-shadow: inset 0 0 0 1px var(--site-border);
}

.site-nav-links .site-nav-cta {
    background: var(--site-primary);
    color: #111315;
}

.site-nav-links .site-nav-cta:hover,
.site-nav-links .site-nav-cta.is-active {
    background: var(--site-primary-strong);
    color: #111315;
}

.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: var(--site-surface);
    color: var(--site-text);
    cursor: pointer;
}

.site-menu-toggle span,
.site-menu-toggle::before,
.site-menu-toggle::after {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu-toggle {
    flex-direction: column;
    gap: 4px;
}

.site-menu-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.site-menu-toggle[aria-expanded="true"]::before {
    transform: translateY(6px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-mobile-menu {
    display: none;
    position: fixed;
    inset: 117px 0 0;
    z-index: 990;
    overflow-y: auto;
    padding: 18px 16px 32px;
    background: rgba(7, 9, 15, 0.98);
}

.site-mobile-menu.is-open {
    display: block;
}

.site-mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    border-bottom: 1px solid var(--site-border);
    color: var(--site-text);
    font-weight: 700;
}

.site-mobile-menu a::after {
    content: "→";
    color: var(--site-text-muted);
}

[dir="rtl"] .site-mobile-menu a::after {
    content: "←";
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(58px, 8vw, 104px);
    border-bottom: 1px solid var(--site-border);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(200, 255, 47, 0.055), transparent 42%),
        radial-gradient(circle at 75% 45%, rgba(255, 79, 216, 0.055), transparent 24rem);
    content: "";
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: center;
}

.page-hero-copy {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
}

.page-title {
    max-width: 14ch;
    margin: 0;
    color: var(--site-text);
    font-size: clamp(38px, 7vw, 76px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.page-title,
.section-title,
.featured-story-copy h2,
.article-title,
.legal-card > header h1,
.legal-card > h1,
.seo-intro h2 {
    font-family: "Newsreader", Georgia, serif;
}

.page-title-sm {
    font-size: clamp(34px, 5vw, 58px);
}

.page-lead {
    max-width: 62ch;
    margin: 22px 0 0;
    color: var(--site-text-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
    background: var(--site-primary);
    color: #111315;
    box-shadow: 0 12px 28px rgba(200, 255, 47, 0.12);
}

.button-primary:hover {
    background: var(--site-primary-strong);
    color: #111315;
}

.button-secondary {
    border-color: var(--site-border-strong);
    background: rgba(255, 255, 255, 0.045);
    color: var(--site-text);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--site-text);
}

.button-dot {
    width: 7px;
    height: 7px;
    margin-inline-end: 9px;
    border-radius: 999px;
    background: var(--site-live);
    box-shadow: 0 0 0 4px rgba(255, 59, 107, 0.14);
}

.hero-visual {
    position: relative;
    min-height: 370px;
}

.hero-visual-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.hero-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-main {
    inset: 0 8% 8% 0;
}

.hero-visual-main::after {
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(7, 9, 15, 0.88));
    content: "";
}

.hero-visual-accent {
    right: 0;
    bottom: 0;
    width: 44%;
    height: 46%;
    padding: 18px;
    display: grid;
    align-content: end;
    background: linear-gradient(145deg, #1d2638, #111725);
}

.hero-visual-accent strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.hero-visual-accent span {
    margin-top: 8px;
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-floating-label {
    position: absolute;
    left: 22px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-heading-copy {
    min-width: 0;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.section-description {
    max-width: 62ch;
    margin: 10px 0 0;
    color: var(--site-text-muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--site-text);
    font-size: 13px;
    font-weight: 800;
}

.text-link::after {
    content: "→";
    color: var(--site-primary);
}

[dir="rtl"] .text-link::after {
    content: "←";
}

.panel,
.news-card,
.match-card,
.team-card,
.video-card,
.media-card,
.content-card {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 28%),
        var(--site-surface);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
}

.panel {
    padding: clamp(20px, 3vw, 28px);
}

.news-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
}

.news-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 255, 47, 0.28);
    box-shadow: var(--site-shadow);
}

.news-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--site-surface-muted);
}

.news-card-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(transparent, rgba(7, 9, 15, 0.7));
    content: "";
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.045);
}

.news-card-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--site-primary-soft);
    color: var(--site-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-card-title {
    margin: 14px 0 8px;
    color: var(--site-text);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.news-card-title a:hover {
    color: var(--site-primary);
}

.news-card-copy {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-card-footer {
    margin-top: auto;
    padding-top: 18px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-card-meta time,
.featured-story-copy time {
    color: var(--site-text-muted);
    font-size: 11px;
    font-weight: 700;
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.featured-story-media {
    min-height: 430px;
}

.featured-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-story-copy {
    padding: clamp(28px, 5vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-story-copy h2 {
    margin: 14px 0;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.featured-story-copy p {
    margin: 0;
    color: var(--site-text-muted);
}

.match-list {
    display: grid;
    gap: 14px;
}

.match-card {
    min-width: 0;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.match-team {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.match-team:last-child {
    justify-content: flex-end;
    text-align: end;
}

.match-team-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    padding: 7px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: white;
    object-fit: contain;
}

.match-team-name {
    min-width: 0;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.match-center {
    display: grid;
    justify-items: center;
    gap: 4px;
    text-align: center;
}

.match-score {
    color: var(--site-text);
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.match-meta {
    color: var(--site-text-muted);
    font-size: 11px;
    font-weight: 700;
}

.match-time {
    display: inline-flex;
    min-height: 24px;
    padding: 2px 9px;
    align-items: center;
    border-radius: 999px;
    background: var(--site-primary-soft);
    color: var(--site-primary);
    font-size: 10px;
    font-weight: 800;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
}

.filter-bar label {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-select,
.site-input {
    width: min(100%, 280px);
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--site-border-strong);
    border-radius: 13px;
    background: var(--site-surface);
    color: var(--site-text);
}

.site-select option {
    background: var(--site-surface);
}

.tabs-scroll {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.site-tabs {
    min-width: max-content;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-tabs .nav-link {
    display: inline-flex;
    min-height: 44px;
    padding: 0 16px;
    align-items: center;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: var(--site-surface);
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.site-tabs .nav-link.active,
.site-tabs .nav-link:hover {
    border-color: rgba(200, 255, 47, 0.3);
    background: var(--site-primary-soft);
    color: var(--site-text);
}

.team-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.team-card {
    overflow: hidden;
}

.team-card-cover {
    height: 170px;
    background: var(--site-surface-muted);
}

.team-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-body {
    position: relative;
    padding: 66px 22px 22px;
}

.team-card-logo {
    position: absolute;
    top: -48px;
    inset-inline-start: 22px;
    width: 92px;
    height: 92px;
    padding: 12px;
    border: 5px solid var(--site-surface);
    border-radius: 24px;
    background: white;
    object-fit: contain;
}

.team-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
}

.team-card p {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 14px;
}

.video-card,
.media-card {
    overflow: hidden;
}

.video-card-header,
.media-card-caption {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--site-border);
}

.video-card-badge {
    flex-shrink: 0;
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-card-title {
    min-width: 0;
    max-width: 70%;
    color: var(--site-text);
    font-size: 14px;
    font-weight: 800;
    text-align: end;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.video-card-player,
.responsive-video,
.youtube-facade {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020305;
}

.video-card-player iframe,
.video-card-player video,
.responsive-video iframe,
.responsive-video video,
.youtube-facade iframe,
.youtube-facade img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.youtube-facade {
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 66px;
    height: 66px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: var(--site-primary);
    color: white;
    font-size: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.play-button::after {
    margin-inline-start: 4px;
    display: inline-block;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-inline-start: 13px solid white;
    content: "";
}

.media-card img {
    width: 100%;
    display: block;
}

.media-card-caption > span:first-child {
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-wrap,
.legal-wrap {
    width: min(calc(100% - 32px), 900px);
    margin-inline: auto;
    padding-block: clamp(40px, 7vw, 84px);
}

.article-card,
.legal-card {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.article-cover {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.article-body,
.legal-card {
    padding: clamp(24px, 5vw, 54px);
}

.article-title,
.legal-card > header h1,
.legal-card > h1 {
    margin: 0 0 20px;
    color: var(--site-text);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.article-body p,
.article-body li,
.legal-card p,
.legal-card li {
    color: #b7c0ce;
    line-height: 1.85;
}

.article-body h2,
.article-body h3,
.legal-card h2,
.legal-card h3 {
    margin: 34px 0 12px;
    color: var(--site-text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.article-body a,
.legal-card a {
    color: var(--site-primary);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    margin-inline-start: 8px;
    color: #515b6b;
    content: "/";
}

.empty-state {
    padding: 42px 24px;
    border: 1px dashed var(--site-border-strong);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
    text-align: center;
}

.empty-state strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.empty-state p {
    margin: 0;
    color: var(--site-text-muted);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-border);
}

.stat-item {
    padding: 22px;
    background: var(--site-surface);
}

.stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.stat-item span {
    color: var(--site-text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pagination {
    margin: 30px 0 0;
    gap: 6px;
    flex-wrap: wrap;
}

.page-link {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border) !important;
    border-radius: 12px !important;
    background: var(--site-surface) !important;
    color: var(--site-text-muted) !important;
}

.page-item.active .page-link,
.page-link:hover {
    border-color: var(--site-primary) !important;
    background: var(--site-primary) !important;
    color: white !important;
}

.page-item.disabled .page-link {
    opacity: 0.45;
}

.site-footer {
    margin-top: clamp(56px, 8vw, 100px);
    border-top: 1px solid var(--site-border);
    background: #05070c;
}

.site-footer-grid {
    padding-block: 54px;
    display: grid;
    grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(150px, 0.65fr));
    gap: 42px;
}

.site-footer-brand {
    max-width: 440px;
}

.site-footer-brand p {
    margin: 16px 0 0;
    color: var(--site-text-muted);
    font-size: 14px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--site-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.site-footer-links a {
    color: var(--site-text-muted);
    font-size: 14px;
    font-weight: 600;
}

.site-footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--site-border);
    color: #737e90;
    font-size: 12px;
}

.site-footer-bottom p {
    margin: 0;
}

.gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    border-radius: var(--site-radius-sm);
}

.modal-content {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    color: var(--site-text);
}

.modal-header,
.modal-footer {
    border-color: var(--site-border);
}

.close {
    color: white;
    text-shadow: none;
}

.ad-slot {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.managed-ad {
    --managed-ad-min-height: 120px;
    padding-block: 18px;
}

.managed-ad-frame {
    position: relative;
    display: grid;
    min-height: var(--managed-ad-min-height);
    place-items: center;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.022), transparent 45%),
        #151719;
}

.managed-ad-frame::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.managed-ad-label {
    position: absolute;
    z-index: 2;
    top: 9px;
    inset-inline-start: 12px;
    color: #6f757b;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.managed-ad .adsbygoogle {
    z-index: 1;
    width: 100%;
    min-height: calc(var(--managed-ad-min-height) - 34px);
}

.managed-ad-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #858c92;
    text-align: left;
}

.managed-ad-placeholder div {
    display: grid;
    gap: 2px;
}

.managed-ad-placeholder strong {
    color: #aeb4b9;
    font-size: 12px;
    font-weight: 700;
}

.managed-ad-placeholder small {
    color: #626970;
    font-size: 9px;
}

.managed-ad-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #3b4045;
    border-radius: 9px;
    background: #1c1f22;
    color: var(--site-primary);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.managed-ad--rectangle .site-container {
    max-width: 760px;
}

.managed-ad--rectangle .managed-ad-frame {
    max-width: 580px;
    margin-inline: auto;
}

.managed-ad--compact {
    padding-block: 10px;
}

.managed-ad--compact .managed-ad-frame {
    border-radius: 10px;
}

@media (min-width: 769px) {
    .managed-ad-hide-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .managed-ad {
        padding-block: 12px;
    }

    .managed-ad-hide-mobile {
        display: none;
    }

    .managed-ad-frame {
        min-height: min(var(--managed-ad-min-height), 280px);
        padding-inline: 14px;
    }
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(42px, 6vw, 82px);
    border-bottom: 1px solid var(--site-border);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 18%, rgba(200, 255, 47, 0.1), transparent 25rem),
        linear-gradient(120deg, rgba(255, 79, 216, 0.035), transparent 38%);
    content: "";
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
}

.home-hero-copy {
    min-width: 0;
}

.home-title {
    max-width: 12ch;
    margin: 0;
    color: var(--site-text);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(56px, 7.8vw, 108px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.home-title span {
    display: block;
}

.home-title-muted {
    color: #777c82;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 26px;
    color: var(--site-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-row span::before {
    width: 4px;
    height: 4px;
    border-radius: 99px;
    background: var(--site-primary);
    content: "";
}

.home-media-stage {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.55fr);
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.home-media-main {
    position: relative;
    min-height: 500px;
    grid-row: 1 / 3;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: #090a0b;
}

.home-media-main::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(6, 7, 8, 0.94));
    content: "";
}

.home-media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-media-main figcaption {
    position: absolute;
    inset: auto 24px 22px;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.home-media-main figcaption strong {
    max-width: 16ch;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 9px;
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-media-tile {
    position: relative;
    min-height: 0;
    overflow: hidden;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: var(--site-surface);
    color: var(--site-text);
}

.home-media-tile:hover {
    border-color: rgba(200, 255, 47, 0.28);
    color: var(--site-text);
    transform: translateY(-2px);
}

.home-media-tile-news {
    background:
        linear-gradient(145deg, rgba(200, 255, 47, 0.11), transparent 58%),
        var(--site-surface);
}

.home-media-tile-news strong {
    max-width: 15ch;
    font-size: 17px;
    line-height: 1.35;
}

.media-tile-label,
.home-media-tile-championship small {
    color: var(--site-text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-tile-arrow,
.discovery-arrow {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    color: var(--site-primary);
    font-size: 17px;
}

.home-media-tile-championship {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 79, 216, 0.17), transparent 45%),
        var(--site-surface);
}

.home-media-tile-championship img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.home-media-tile-championship span {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.home-media-tile-championship small,
.home-media-tile-championship strong {
    overflow-wrap: anywhere;
}

.home-media-tile-championship strong {
    font-size: 17px;
}

.discovery-section {
    padding-block: clamp(54px, 6vw, 86px) 20px;
}

.section-heading-compact {
    margin-bottom: 22px;
}

.discovery-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 0.78fr));
    gap: 12px;
}

.discovery-card {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    color: var(--site-text);
}

.discovery-card:hover {
    border-color: rgba(200, 255, 47, 0.28);
    background: var(--site-surface-strong);
    color: var(--site-text);
    transform: translateY(-2px);
}

.discovery-card-wide {
    background:
        linear-gradient(135deg, rgba(200, 255, 47, 0.08), transparent 55%),
        var(--site-surface);
}

.discovery-card-accent {
    background: var(--site-primary);
    color: #111315;
}

.discovery-card-accent:hover {
    background: var(--site-primary-strong);
    color: #111315;
}

.discovery-card-accent .discovery-copy small,
.discovery-card-accent .discovery-arrow {
    color: rgba(17, 19, 21, 0.62);
}

.discovery-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.discovery-card-accent .discovery-icon {
    border-color: rgba(17, 19, 21, 0.15);
    background: rgba(17, 19, 21, 0.08);
}

.discovery-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.discovery-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.discovery-copy small {
    color: var(--site-text-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.discovery-copy strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.discovery-copy > span {
    color: var(--site-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.promo-panel {
    min-height: 245px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    color: var(--site-text);
}

.promo-panel:hover {
    color: var(--site-text);
    transform: translateY(-3px);
}

.promo-panel > strong {
    max-width: 12ch;
    font-family: "Newsreader", Georgia, serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.promo-panel > span:last-child {
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 700;
}

.promo-panel > span b {
    color: var(--site-primary);
}

.promo-panel-live {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 59, 107, 0.24), transparent 30%),
        linear-gradient(145deg, #25191e, var(--site-surface));
}

.promo-panel-championship {
    background:
        linear-gradient(rgba(15, 17, 19, 0.72), rgba(15, 17, 19, 0.92)),
        url("../MPL/slider.jpeg") center / cover;
}

.seo-intro {
    margin-top: clamp(60px, 8vw, 110px);
    padding-block: clamp(54px, 7vw, 90px);
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
    background: #0b0d0f;
}

.seo-intro-grid {
    display: grid;
    grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
    gap: 40px;
}

.seo-intro h2 {
    max-width: 19ch;
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.seo-intro p:not(.section-kicker) {
    max-width: 70ch;
    margin: 20px 0;
    color: var(--site-text-muted);
    font-size: 16px;
}

.empty-state .button {
    width: auto;
    margin-top: 20px;
}

.site-footer-note {
    color: #737881 !important;
    font-size: 12px !important;
}

@media (max-width: 1080px) {
    .site-nav-links {
        display: none;
    }

    .site-menu-toggle {
        display: flex;
    }

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

    .featured-story {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-title {
        max-width: 13ch;
    }

    .home-media-stage {
        min-height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
    }

    .home-media-main {
        height: clamp(400px, 58vw, 560px);
        min-height: 0;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .home-media-tile {
        min-height: 190px;
    }

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

    .featured-story-media {
        min-height: 360px;
    }
}

@media (max-width: 820px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-title {
        max-width: 16ch;
    }

    .hero-visual {
        min-height: 320px;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

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

    .site-footer-brand {
        grid-column: 1 / -1;
    }

    .home-media-main {
        height: 430px;
        min-height: 430px;
    }

    .seo-intro-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .site-container,
    .article-wrap,
    .legal-wrap {
        width: min(calc(100% - 24px), var(--site-container));
    }

    .site-topbar-inner {
        min-height: 36px;
    }

    .site-topbar-copy {
        display: none;
    }

    .site-nav {
        min-height: 70px;
    }

    .site-brand img {
        width: 46px;
        height: 46px;
    }

    .site-brand-tagline {
        display: none;
    }

    .site-mobile-menu {
        inset-block-start: 107px;
    }

    .page-hero {
        padding-block: 48px;
    }

    .home-hero {
        padding-block: 38px 52px;
    }

    .home-title {
        max-width: none;
        font-size: clamp(48px, 15vw, 68px);
        line-height: 0.92;
    }

    .home-media-stage {
        grid-template-columns: 1fr;
    }

    .home-media-main {
        height: 350px;
        min-height: 350px;
        grid-column: auto;
    }

    .home-media-tile {
        min-height: 170px;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
    }

    .discovery-card {
        min-height: 170px;
    }

    .hero-visual {
        min-height: 255px;
    }

    .hero-visual-main {
        inset: 0 0 12% 0;
    }

    .hero-visual-accent {
        width: 52%;
        height: 42%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .match-card {
        padding: 16px 12px;
        gap: 8px;
    }

    .match-team {
        flex-direction: column;
        gap: 7px;
        text-align: center;
    }

    .match-team:last-child {
        justify-content: center;
        text-align: center;
    }

    .match-team-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .match-team-name {
        font-size: 11px;
        line-height: 1.35;
    }

    .match-score {
        font-size: 14px;
    }

    .video-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-card-title {
        max-width: 100%;
        text-align: start;
    }

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

    .site-select,
    .site-input {
        width: 100%;
    }

    .featured-story-media {
        min-height: 240px;
    }

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

    .site-footer-brand {
        grid-column: auto;
    }

    .site-footer-bottom {
        padding-block: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .seo-intro {
        margin-top: 64px;
    }
}

.mlbb-ph-hero {
    background:
        radial-gradient(circle at 72% 20%, rgba(200, 255, 47, 0.12), transparent 24rem),
        radial-gradient(circle at 18% 82%, rgba(41, 121, 255, 0.16), transparent 26rem),
        var(--color-bg);
}

.mlbb-id-hero {
    background:
        radial-gradient(circle at 76% 24%, rgba(227, 3, 3, 0.18), transparent 24rem),
        radial-gradient(circle at 16% 78%, rgba(255, 255, 255, 0.1), transparent 26rem),
        var(--color-bg);
}

.mlbb-ph-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.mlbb-ph-live-status {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 0;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mlbb-ph-live-status small {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.mlbb-ph-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
}

.mlbb-ph-panel,
.mlbb-ph-prediction-card,
.mlbb-ph-cta {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        var(--color-surface);
    box-shadow: var(--shadow-card);
}

.mlbb-ph-panel {
    padding: clamp(20px, 3vw, 30px);
}

.mlbb-ph-panel-feature {
    min-height: 320px;
}

.mlbb-ph-panel h2,
.mlbb-ph-cta h2 {
    max-width: 780px;
    margin: 10px 0 14px;
    color: var(--color-text);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.mlbb-ph-panel p,
.mlbb-ph-cta p,
.mlbb-ph-prediction-card p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.mlbb-ph-panel code {
    padding: 2px 6px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.18);
    color: var(--color-primary);
    font-size: 0.92em;
}

.mlbb-ph-news-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.mlbb-ph-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mlbb-ph-news-card {
    overflow: hidden;
    display: grid;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    transition: border-color 180ms ease, transform 180ms ease;
}

.mlbb-ph-news-card:hover {
    border-color: rgba(200, 255, 47, 0.28);
    color: var(--color-text);
    transform: translateY(-2px);
}

.mlbb-ph-news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mlbb-ph-news-card span {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.mlbb-ph-news-card small {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mlbb-ph-news-card strong {
    font-size: 18px;
    line-height: 1.35;
}

.mlbb-ph-news-card em {
    color: var(--color-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mlbb-ph-news-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
    color: var(--color-text);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mlbb-ph-news-item:hover {
    border-color: rgba(200, 255, 47, 0.35);
    background: rgba(200, 255, 47, 0.055);
    transform: translateY(-2px);
}

.mlbb-ph-news-item img {
    width: 96px;
    height: 64px;
    border-radius: 11px;
    object-fit: cover;
}

.mlbb-ph-news-item span {
    display: grid;
    gap: 5px;
}

.mlbb-ph-news-item small {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mlbb-ph-news-item strong {
    font-size: 14px;
    line-height: 1.35;
}

.mlbb-ph-news-item em {
    display: inline-flex;
    margin-top: 6px;
    color: var(--color-primary);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mlbb-ph-note {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(200, 255, 47, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(200, 255, 47, 0.055);
}

.mlbb-ph-source-list {
    display: grid;
    gap: 10px;
}

.mlbb-ph-source-list a {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
    color: var(--color-text);
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.mlbb-ph-source-list a:hover {
    border-color: rgba(200, 255, 47, 0.38);
    background: rgba(200, 255, 47, 0.055);
    transform: translateY(-2px);
}

.mlbb-ph-source-list small,
.mlbb-ph-prediction-card span {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mlbb-ph-source-list strong {
    font-size: 14px;
}

.mlbb-ph-source-list span {
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.6;
}

.mlbb-ph-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.mlbb-ph-table {
    width: 100%;
    min-width: 780px;
    margin: 0;
    border-collapse: collapse;
    color: var(--color-text);
}

.mlbb-ph-table th,
.mlbb-ph-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--color-border);
    text-align: start;
}

.mlbb-ph-table th {
    background: rgba(255, 255, 255, 0.035);
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mlbb-ph-table tr:last-child td {
    border-bottom: 0;
}

.mlbb-ph-rank {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: rgba(200, 255, 47, 0.1);
    color: var(--color-primary);
    font-weight: 800;
}

.mlbb-ph-team-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mlbb-ph-team-cell img {
    width: 34px;
    height: 34px;
    padding: 4px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    object-fit: contain;
}

.mlbb-ph-live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mlbb-ph-live-card {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: hidden;
    min-height: 230px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(200, 255, 47, 0.24);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(200, 255, 47, 0.14), transparent 16rem),
        linear-gradient(145deg, rgba(200, 255, 47, 0.075), rgba(255, 255, 255, 0.025)),
        var(--color-surface);
    box-shadow: var(--shadow-card);
}

.mlbb-ph-live-card::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.075), transparent 40%);
    content: "";
    pointer-events: none;
}

.mlbb-ph-live-card-head,
.mlbb-ph-live-actions,
.mlbb-ph-live-card > strong {
    position: relative;
    z-index: 1;
}

.mlbb-ph-live-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mlbb-ph-live-card-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mlbb-ph-live-card-head small {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 800;
}

.mlbb-ph-live-card > strong {
    color: var(--color-text);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.mlbb-ph-live-card > strong em {
    color: var(--color-primary);
    font-size: 0.55em;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mlbb-ph-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-self: end;
}

.mlbb-ph-live-actions a {
    padding: 9px 11px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    color: var(--color-text);
    font-size: 11px;
    font-weight: 800;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.mlbb-ph-live-actions a:hover {
    border-color: rgba(200, 255, 47, 0.45);
    background: rgba(200, 255, 47, 0.1);
    color: var(--color-primary);
}

.mlbb-ph-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mlbb-ph-video-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.mlbb-ph-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 50% 40%, rgba(200, 255, 47, 0.09), transparent 18rem),
        #05070d;
}

.mlbb-ph-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mlbb-ph-video-copy {
    display: grid;
    gap: 8px;
    padding: 17px;
}

.mlbb-ph-video-copy span {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mlbb-ph-video-copy h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.mlbb-ph-video-copy a {
    width: fit-content;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.mlbb-ph-video-copy a:hover {
    color: var(--color-primary);
}

.mlbb-ph-match-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mlbb-ph-match-card {
    display: grid;
    gap: 9px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    transition: border-color 180ms ease, transform 180ms ease;
}

.mlbb-ph-match-card:hover {
    border-color: rgba(200, 255, 47, 0.35);
    transform: translateY(-2px);
}

.mlbb-ph-match-card small,
.mlbb-ph-match-card em {
    color: var(--color-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mlbb-ph-match-card strong {
    font-size: 18px;
    line-height: 1.35;
}

.mlbb-ph-match-card strong span {
    color: var(--color-primary);
    font-size: 12px;
    text-transform: uppercase;
}

.mlbb-id-match-card strong {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mlbb-id-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mlbb-id-team img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    object-fit: contain;
}

.mlbb-ph-prediction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mlbb-ph-prediction-card {
    padding: 20px;
}

.mlbb-ph-prediction-card h3 {
    margin: 10px 0 8px;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.mlbb-ph-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding: clamp(22px, 4vw, 34px);
}

.mlbb-ph-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.mlbb-ph-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
    gap: 18px;
}

.mlbb-ph-story-main {
    display: grid;
    gap: 18px;
}

.mlbb-ph-story-image {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.mlbb-ph-story-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.mlbb-ph-story-image figcaption {
    padding: 12px 16px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.mlbb-ph-story-preview h2,
.mlbb-ph-story-side h2 {
    margin: 8px 0 14px;
    color: var(--color-text);
    font-size: clamp(22px, 2.6vw, 34px);
    letter-spacing: -0.04em;
}

.mlbb-ph-story-preview p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.mlbb-ph-story-source {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(200, 255, 47, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(200, 255, 47, 0.06);
}

.mlbb-ph-story-source strong {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.mlbb-ph-story-source span {
    color: var(--color-muted);
}

.mlbb-ph-story-source a {
    color: var(--color-primary);
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .mlbb-ph-grid,
    .mlbb-ph-story-layout,
    .mlbb-ph-prediction-grid,
    .mlbb-ph-live-grid,
    .mlbb-ph-video-grid,
    .mlbb-ph-news-grid,
    .mlbb-ph-match-grid {
        grid-template-columns: 1fr;
    }

    .mlbb-ph-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .mlbb-ph-actions {
        flex-direction: column;
    }

    .mlbb-ph-panel,
    .mlbb-ph-prediction-card {
        padding: 18px;
    }

    .mlbb-ph-news-item {
        grid-template-columns: 78px 1fr;
    }

    .mlbb-ph-news-item img {
        width: 78px;
        height: 58px;
    }

    .mlbb-ph-live-card-head,
    .mlbb-ph-live-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.m7-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 79, 216, 0.2), transparent 34%),
        radial-gradient(circle at 20% 25%, rgba(200, 255, 47, 0.18), transparent 34%),
        linear-gradient(135deg, #11131a 0%, #151719 46%, #0b0d10 100%);
}

.m7-hero-card,
.m7-source-card,
.m7-fact-card,
.m7-highlight-card,
.m7-feature-card,
.m7-rewards-card {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: var(--site-shadow);
}

.m7-hero-card {
    position: relative;
    min-height: 420px;
    margin: 0;
}

.m7-hero-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
    content: "";
}

.m7-hero-card img,
.m7-highlight-card img,
.m7-feature-card img,
.m7-gallery-grid .media-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.m7-hero-card figcaption {
    pointer-events: none;
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.m7-hero-card figcaption strong {
    max-width: 560px;
    color: white;
    font-family: "Newsreader", serif;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 0.95;
}

.m7-summary-grid,
.m7-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.m7-source-card,
.m7-rewards-card {
    padding: clamp(24px, 4vw, 42px);
}

.m7-source-card h2,
.m7-feature-card h2,
.m7-rewards-card h2 {
    margin: 8px 0 14px;
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.m7-source-card p,
.m7-feature-card p,
.m7-rewards-card li {
    color: var(--site-text-muted);
}

.m7-copy-grid,
.m7-guide-layout,
.m7-faq-grid {
    display: grid;
    gap: 18px;
}

.m7-copy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m7-guide-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: stretch;
}

.m7-seo-card,
.m7-topic-list,
.m7-longform,
.m7-faq-card {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--site-surface);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.m7-seo-card,
.m7-topic-list,
.m7-longform,
.m7-faq-card {
    padding: clamp(22px, 3vw, 34px);
}

.m7-seo-card h3,
.m7-topic-list h3,
.m7-faq-card h3 {
    margin: 0 0 12px;
    color: white;
    font-size: 20px;
    line-height: 1.18;
}

.m7-seo-card p,
.m7-longform p,
.m7-faq-card p {
    margin: 0;
    color: var(--site-text-muted);
}

.m7-longform {
    max-width: 980px;
}

.m7-longform h2 {
    max-width: 760px;
    margin: 8px 0 18px;
    color: white;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.m7-longform p + p {
    margin-top: 16px;
}

.m7-topic-list ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.m7-topic-list li {
    position: relative;
    padding-inline-start: 22px;
    color: var(--site-text-muted);
}

.m7-topic-list li::before {
    position: absolute;
    top: 0.72em;
    inset-inline-start: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--site-primary);
    content: "";
    box-shadow: 0 0 18px rgba(200, 255, 47, 0.44);
}

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

.m7-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.m7-fact-card {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m7-fact-card small {
    color: var(--site-text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.m7-fact-card strong {
    color: white;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1;
}

.m7-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.m7-highlight-card {
    min-height: 100%;
}

.m7-highlight-card img {
    aspect-ratio: 16 / 10;
}

.m7-highlight-card div {
    padding: 20px;
}

.m7-highlight-card h3 {
    margin: 0 0 10px;
    color: white;
    font-size: 19px;
    line-height: 1.18;
}

.m7-highlight-card p {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 14px;
}

.m7-feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.92fr) 1fr;
    min-height: 380px;
}

.m7-feature-card div {
    padding: clamp(24px, 4vw, 42px);
    align-self: center;
}

.m7-rewards-card ul {
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.m7-rewards-card li {
    padding: 14px 16px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.m7-gallery-grid .media-card img {
    aspect-ratio: 16 / 10;
}

.m7-lightbox-trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.m7-lightbox-trigger img {
    transition: transform 220ms ease, filter 220ms ease;
}

.m7-lightbox-trigger:hover img,
.m7-lightbox-trigger:focus-visible img {
    filter: brightness(1.08) saturate(1.08);
    transform: scale(1.025);
}

.m7-lightbox-trigger:focus-visible {
    outline: 3px solid rgba(200, 255, 47, 0.75);
    outline-offset: -3px;
}

body.lightbox-open {
    overflow: hidden;
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: clamp(18px, 4vw, 44px);
    display: none;
    place-items: center;
    background:
        radial-gradient(circle at 50% 15%, rgba(200, 255, 47, 0.12), transparent 34%),
        rgba(3, 5, 8, 0.92);
    backdrop-filter: blur(18px);
}

.site-lightbox.is-open {
    display: grid;
}

.site-lightbox-frame {
    width: min(100%, 1180px);
    max-height: min(86vh, 920px);
    margin: 0;
    display: grid;
    gap: 14px;
}

.site-lightbox-frame img {
    width: 100%;
    max-height: calc(86vh - 64px);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--site-radius-lg);
    object-fit: contain;
    background: #05070a;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.56);
}

.site-lightbox-frame figcaption {
    color: var(--site-text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
}

.site-lightbox-close {
    position: absolute;
    top: clamp(14px, 3vw, 28px);
    right: clamp(14px, 3vw, 28px);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-lightbox-close:hover,
.site-lightbox-close:focus-visible {
    border-color: rgba(200, 255, 47, 0.7);
    background: rgba(200, 255, 47, 0.18);
    transform: translateY(-1px);
}

@media (max-width: 1080px) {
    .m7-summary-grid,
    .m7-feature-grid,
    .m7-feature-card,
    .m7-copy-grid,
    .m7-guide-layout {
        grid-template-columns: 1fr;
    }

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

    .m7-feature-card img {
        max-height: 420px;
    }
}

@media (max-width: 600px) {
    .m7-hero-card {
        min-height: 340px;
    }

    .m7-hero-card figcaption {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .m7-fact-grid,
    .m7-highlight-grid,
    .m7-faq-grid {
        grid-template-columns: 1fr;
    }

    .m7-fact-card {
        min-height: 120px;
    }

    .site-lightbox {
        padding: 14px;
    }

    .site-lightbox-frame img {
        max-height: calc(84vh - 58px);
        border-radius: var(--site-radius);
    }

    .site-lightbox-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .m7-lightbox-trigger img,
    .site-lightbox-close {
        transition: none;
    }

    .m7-lightbox-trigger:hover img,
    .m7-lightbox-trigger:focus-visible img {
        transform: none;
    }
}

.ewc26-hero {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 42%),
        radial-gradient(circle at 74% 20%, rgba(255, 54, 0, 0.3), transparent 36%),
        radial-gradient(circle at 18% 22%, rgba(200, 255, 47, 0.18), transparent 34%),
        linear-gradient(135deg, #090b10 0%, #151719 52%, #07090f 100%);
}

.ewc26-hero-grid,
.ewc26-overview-grid,
.ewc26-guide-grid,
.ewc26-faq-grid,
.ewc26-article-hero-grid,
.ewc26-article-layout,
.ewc26-stat-grid,
.ewc26-match-grid,
.ewc26-standings-grid,
.ewc26-club-grid,
.ewc26-qualifier-grid,
.ewc26-news-grid {
    display: grid;
    gap: 18px;
}

.ewc26-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
}

.ewc26-hero-media,
.ewc26-panel,
.ewc26-stat-card,
.ewc26-match-card,
.ewc26-standings-card,
.ewc26-club-card,
.ewc26-qualifier-card,
.ewc26-news-card,
.ewc26-article-image,
.ewc26-article-body,
.ewc26-guide-grid aside {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 19, 0.72);
    box-shadow: var(--site-shadow);
}

.ewc26-hero-media {
    position: relative;
    min-height: 420px;
    margin: 0;
}

.ewc26-hero-media::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.86)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 48%);
    content: "";
}

.ewc26-hero-media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ewc26-hero-media figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.ewc26-hero-media figcaption img {
    width: min(260px, 70%);
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.45));
}

.ewc26-hero-media figcaption strong {
    color: white;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 0.95;
}

.ewc26-hero-media figcaption span {
    color: var(--site-primary);
    font-weight: 900;
}

.ewc26-source-pill {
    width: fit-content;
    margin-top: 24px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid rgba(200, 255, 47, 0.22);
    border-radius: 999px;
    background: rgba(200, 255, 47, 0.08);
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.ewc26-source-pill small {
    color: var(--site-text-muted);
}

.ewc26-hero-tags,
.ewc26-page-nav .site-container,
.ewc26-source-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ewc26-hero-tags {
    margin: 22px 0 6px;
}

.ewc26-hero-tags span,
.ewc26-page-nav a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #eef0f2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ewc26-hero-tags span {
    padding: 8px 11px;
}

.ewc26-page-nav {
    position: sticky;
    top: 70px;
    z-index: 90;
    border-block: 1px solid var(--site-border);
    background: rgba(9, 11, 16, 0.82);
    backdrop-filter: blur(16px);
}

.ewc26-page-nav .site-container {
    padding-block: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.ewc26-page-nav a {
    flex: 0 0 auto;
    padding: 8px 14px;
}

.ewc26-page-nav a:hover,
.ewc26-page-nav a:focus-visible {
    border-color: rgba(200, 255, 47, 0.38);
    background: rgba(200, 255, 47, 0.12);
    color: var(--site-primary);
}

.ewc26-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ewc26-stat-card {
    min-height: 138px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ewc26-stat-card small,
.ewc26-match-meta span,
.ewc26-match-stage small,
.ewc26-standings-card header span,
.ewc26-news-card small {
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ewc26-stat-card strong {
    color: white;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
}

.ewc26-overview-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.ewc26-panel {
    padding: clamp(24px, 4vw, 42px);
}

.ewc26-panel h2 {
    margin: 8px 0 14px;
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.ewc26-panel p {
    color: var(--site-text-muted);
}

.ewc26-source-list {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.ewc26-source-list li {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d9dde2;
    font-size: 12px;
    font-weight: 800;
}

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

.ewc26-live-grid {
    margin-bottom: 18px;
}

.ewc26-match-card {
    padding: 20px;
    display: grid;
    gap: 16px;
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.ewc26-match-card:hover {
    border-color: rgba(200, 255, 47, 0.22);
    transform: translateY(-2px);
}

.ewc26-match-meta,
.ewc26-match-team,
.ewc26-club-card,
.ewc26-qualifier-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ewc26-match-meta {
    justify-content: space-between;
}

.ewc26-match-meta time {
    color: var(--site-text-muted);
    font-size: 13px;
    font-weight: 800;
}

.ewc26-match-stage strong {
    display: block;
    color: white;
    font-size: 20px;
}

.ewc26-match-teams {
    display: grid;
    gap: 10px;
}

.ewc26-match-team {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.ewc26-match-team.is-winner {
    border-color: rgba(200, 255, 47, 0.34);
    background: rgba(200, 255, 47, 0.08);
}

.ewc26-match-team img,
.ewc26-team-cell img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.ewc26-match-team span {
    min-width: 0;
    flex: 1;
    color: white;
    font-weight: 900;
}

.ewc26-match-team b {
    color: var(--site-primary);
    font-size: 20px;
}

.ewc26-match-card > a {
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 900;
}

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

.ewc26-standings-card header {
    padding: 18px 20px;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--site-border);
}

.ewc26-standings-card header strong {
    color: white;
    font-size: 22px;
}

.ewc26-table-wrap {
    overflow-x: auto;
}

.ewc26-table {
    width: 100%;
    border-collapse: collapse;
}

.ewc26-table th,
.ewc26-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--site-border);
    color: var(--site-text-muted);
    text-align: start;
}

.ewc26-table th {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}

.ewc26-team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 900;
}

.ewc26-club-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ewc26-club-card,
.ewc26-qualifier-card {
    padding: 18px;
}

.ewc26-club-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.ewc26-club-logo img,
.ewc26-qualifier-card img {
    max-width: 76%;
    max-height: 76%;
    object-fit: contain;
}

.ewc26-club-card strong,
.ewc26-qualifier-card strong {
    display: block;
    color: white;
    font-size: 17px;
    line-height: 1.15;
}

.ewc26-club-card small,
.ewc26-qualifier-card span,
.ewc26-qualifier-card small {
    color: var(--site-text-muted);
    font-size: 13px;
}

.ewc26-qualifier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ewc26-qualifier-card img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.ewc26-news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ewc26-news-card {
    display: grid;
    color: inherit;
    cursor: pointer;
}

.ewc26-news-card:hover {
    color: inherit;
    transform: translateY(-2px);
}

.ewc26-news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ewc26-news-card span {
    padding: 18px;
    display: grid;
    gap: 8px;
}

.ewc26-news-card strong {
    color: white;
    font-size: 17px;
    line-height: 1.2;
}

.ewc26-news-card em {
    color: var(--site-text-muted);
    font-size: 13px;
    font-style: normal;
}

.ewc26-news-card b {
    width: fit-content;
    margin-top: 4px;
    color: var(--site-primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ewc26-seo-guide {
    background:
        radial-gradient(circle at 14% 20%, rgba(200, 255, 47, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.ewc26-guide-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: stretch;
}

.ewc26-guide-grid article,
.ewc26-guide-grid aside {
    padding: clamp(24px, 4vw, 42px);
}

.ewc26-guide-grid h2 {
    margin: 8px 0 16px;
    color: white;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
}

.ewc26-guide-grid p,
.ewc26-guide-grid span,
.ewc26-faq .ewc26-panel p {
    color: var(--site-text-muted);
}

.ewc26-guide-grid aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    background:
        radial-gradient(circle at 20% 12%, rgba(200, 255, 47, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.ewc26-guide-grid aside strong {
    color: white;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
}

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

.ewc26-faq .ewc26-panel h3 {
    margin: 0 0 10px;
    color: white;
    font-size: 24px;
}

.ewc26-article-hero {
    padding-block: clamp(64px, 8vw, 118px);
    background:
        radial-gradient(circle at 72% 18%, rgba(200, 255, 47, 0.16), transparent 36%),
        radial-gradient(circle at 12% 22%, rgba(255, 79, 216, 0.14), transparent 32%),
        linear-gradient(135deg, #080a0f 0%, #151719 100%);
}

.ewc26-article-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
}

.ewc26-article-copy h1 {
    margin: 10px 0 18px;
    color: white;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.ewc26-article-copy p {
    max-width: 760px;
    color: #c8cdd5;
    font-size: clamp(17px, 2vw, 22px);
}

.ewc26-back-link {
    width: fit-content;
    margin-bottom: 18px;
    display: inline-flex;
    color: var(--site-primary);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.ewc26-article-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ewc26-article-meta time,
.ewc26-article-meta span,
.ewc26-article-meta small {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #eef0f2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ewc26-article-image {
    margin: 0;
}

.ewc26-article-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.ewc26-article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
    align-items: start;
}

.ewc26-article-body {
    padding: clamp(24px, 5vw, 58px);
}

.ewc26-article-body h2,
.ewc26-article-body h3 {
    margin: 34px 0 14px;
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.ewc26-article-body p,
.ewc26-article-body li {
    color: #c8cdd5;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.85;
}

.ewc26-article-body a {
    color: var(--site-primary);
    font-weight: 900;
}

.ewc26-video-embed {
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background: #05070a;
}

.ewc26-video-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.ewc26-article-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 148px;
}

.ewc26-related-panel {
    display: grid;
    gap: 14px;
}

.ewc26-related-panel a {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: inherit;
}

.ewc26-related-panel img {
    width: 74px;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.ewc26-related-panel small {
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ewc26-related-panel strong {
    display: block;
    color: white;
    font-size: 14px;
    line-height: 1.25;
}

@media (max-width: 1080px) {
    .ewc26-hero-grid,
    .ewc26-overview-grid,
    .ewc26-guide-grid,
    .ewc26-article-hero-grid,
    .ewc26-article-layout,
    .ewc26-stat-grid,
    .ewc26-standings-grid,
    .ewc26-faq-grid {
        grid-template-columns: 1fr;
    }

    .ewc26-club-grid,
    .ewc26-qualifier-grid,
    .ewc26-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ewc26-article-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .ewc26-match-grid,
    .ewc26-club-grid,
    .ewc26-qualifier-grid,
    .ewc26-news-grid {
        grid-template-columns: 1fr;
    }

    .ewc26-hero-media {
        min-height: 330px;
    }

    .ewc26-match-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ewc26-page-nav {
        top: 60px;
    }

    .ewc26-article-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ewc26-related-panel a {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .ewc26-related-panel img {
        width: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ewc26-match-card,
    .ewc26-news-card {
        transition: none;
    }

    .ewc26-match-card:hover,
    .ewc26-news-card:hover {
        transform: none;
    }
}

.game-teams-hero {
    background:
        radial-gradient(circle at 78% 12%, rgba(251, 191, 36, 0.2), transparent 34%),
        radial-gradient(circle at 12% 18%, rgba(220, 38, 38, 0.22), transparent 32%),
        linear-gradient(135deg, #080a0f 0%, #16110e 48%, #090b10 100%);
}

.game-teams-hero-grid,
.game-teams-stats-grid,
.game-teams-featured-grid,
.game-teams-grid {
    display: grid;
    gap: 18px;
}

.game-teams-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    align-items: center;
}

.game-teams-source-pill {
    width: fit-content;
    margin-top: 24px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.08);
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.game-teams-source-pill small {
    color: var(--site-text-muted);
}

.game-teams-hero-panel,
.game-teams-stats-grid article,
.game-team-feature-card,
.game-team-card {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(15, 17, 19, 0.72);
    box-shadow: var(--site-shadow);
}

.game-teams-hero-panel {
    padding: clamp(24px, 4vw, 40px);
}

.game-teams-hero-panel span,
.game-teams-stats-grid small,
.game-team-feature-card header span,
.game-team-feature-main small,
.game-team-card-copy small {
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-teams-hero-panel strong {
    display: block;
    margin: 12px 0;
    color: white;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.9;
}

.game-teams-hero-panel p {
    color: var(--site-text-muted);
}

.game-teams-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-teams-stats-grid article {
    min-height: 132px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-teams-stats-grid strong {
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

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

.game-team-feature-card {
    padding: 20px;
    display: grid;
    gap: 18px;
}

.game-team-feature-card header,
.game-team-feature-main,
.game-team-player-row,
.game-teams-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-team-feature-card header {
    justify-content: space-between;
}

.game-team-feature-card header a {
    color: white;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 950;
    line-height: 1;
}

.game-team-feature-main {
    align-items: center;
}

.game-team-logo,
.game-team-card-logo {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.game-team-logo {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
}

.game-team-logo img,
.game-team-card-logo img {
    max-width: 78%;
    max-height: 78%;
    color: transparent;
    font-size: 0;
    object-fit: contain;
}

.game-team-feature-main strong {
    display: block;
    margin-top: 4px;
    color: white;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1;
}

.game-team-player-row {
    flex-wrap: wrap;
}

.game-team-player-row a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.game-team-player-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-team-player-row span,
.game-team-logo b,
.game-team-card-logo b {
    color: var(--site-primary);
    font-weight: 950;
}

.game-team-feature-card p {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 13px;
}

.game-teams-heading {
    align-items: end;
}

.game-teams-tools {
    min-width: min(100%, 360px);
    display: grid;
    gap: 8px;
}

.game-teams-tools label {
    color: var(--site-primary);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-teams-tools input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    outline: none;
}

.game-teams-tools input:focus {
    border-color: rgba(200, 255, 47, 0.45);
    box-shadow: 0 0 0 4px rgba(200, 255, 47, 0.1);
}

.game-teams-filter-row {
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.game-teams-filter-row button {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #d8dde5;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.game-teams-filter-row button:hover,
.game-teams-filter-row button.is-active {
    border-color: rgba(200, 255, 47, 0.36);
    background: rgba(200, 255, 47, 0.12);
    color: var(--site-primary);
}

.game-teams-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-team-card {
    min-width: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.game-team-card:hover {
    border-color: rgba(200, 255, 47, 0.22);
    color: inherit;
    transform: translateY(-2px);
}

.game-team-card[hidden] {
    display: none;
}

.game-team-card-logo {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
}

.game-team-card-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.game-team-card-copy strong {
    color: white;
    font-size: 17px;
    line-height: 1.15;
}

.game-team-card-copy em {
    color: var(--site-text-muted);
    font-size: 12px;
    font-style: normal;
}

.game-team-card-players {
    margin-top: 6px;
    display: flex;
    align-items: center;
}

.game-team-card-players img {
    width: 26px;
    height: 26px;
    margin-right: -7px;
    border: 2px solid rgba(15, 17, 19, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    object-fit: cover;
}

.game-teams-no-results {
    margin-top: 22px;
}

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

@media (max-width: 980px) {
    .game-teams-hero-grid,
    .game-teams-stats-grid,
    .game-teams-featured-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .game-teams-grid {
        grid-template-columns: 1fr;
    }

    .game-team-feature-card header,
    .game-team-feature-main,
    .game-teams-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .game-teams-tools {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .game-team-card,
    .game-teams-filter-row button {
        transition: none;
    }

    .game-team-card:hover {
        transform: none;
    }
}
