:root {
    --bg-deep: #050a0e;
    --bg-main: #0a1018;
    --bg-card: #0d1520;
    --bg-card-hover: #111d2c;
    --bg-elevated: #142233;
    --border: #1a2a3a;
    --border-light: #243444;
    --text: #e8f0f8;
    --text-secondary: #7a90a8;
    --text-muted: #405060;
    --accent: #00e87b;
    --accent-light: #00ff88;
    --accent-glow: rgba(0, 232, 123, 0.3);
    --accent-dark: #00c06a;
    --green: #00e87b;
    --green-dim: rgba(0, 232, 123, 0.12);
    --yellow: #f5c542;
    --yellow-dim: rgba(245, 197, 66, 0.12);
    --red: #ff4466;
    --red-dim: rgba(255, 68, 102, 0.12);
    --blue: #3b82f6;
    --purple: #a855f7;
    --mono: 'DM Mono', 'Courier New', monospace;
    --display: 'Space Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: var(--display);
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { margin: 0 auto; max-width: 1200px; padding-left: 24px; padding-right: 24px; }
.mono { font-family: var(--mono); font-size: .7rem; letter-spacing: 0; text-transform: uppercase; }
.muted { color: var(--text-muted); }

/* ── Header ────────────────────────────────────── */
.site-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    background: rgba(5, 10, 14, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand { align-items: center; display: inline-flex; gap: 10px; text-decoration: none; }
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .02em;
}
.brand-mark svg { width: 30px; height: 30px; color: var(--accent); }
.brand-copy { display: none; }

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
    padding: 8px 16px;
    font-family: var(--display);
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.header-nav a:hover { color: var(--text); }
.header-nav a.is-active { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 12px; }

.header-live {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: #000;
    font-family: var(--display);
    font-size: .7rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all 0.2s;
}
.header-live:hover { background: var(--accent-light); box-shadow: 0 0 20px var(--accent-glow); }
.header-live .live-dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
    position: relative;
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 232, 123, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 12px;
}
.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.hero-breadcrumb {
    font-family: var(--mono);
    font-size: .6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.hero-breadcrumb a { color: var(--accent); }
.hero-breadcrumb span { margin: 0 6px; }

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-accent {
    background: var(--accent);
    color: #000;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    padding: 12px 32px;
}
.btn-accent:hover { background: var(--accent-light); box-shadow: 0 0 24px var(--accent-glow); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    padding: 12px 32px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 16px; font-size: .7rem; }

/* ── Filter Tabs ───────────────────────────────── */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 32px 0;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--display);
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: .06em;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); }
.filter-tab.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ── Match Card ────────────────────────────────── */
.match-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    transition: all 0.25s;
}
.match-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 232, 123, 0.08);
    transform: translateY(-2px);
}
.match-card[data-status="agendado"]::before { background: var(--green); }
.match-card[data-status="em_andamento"]::before { background: var(--red); animation: livePulse 2s infinite; }
.match-card[data-status="em_andamento"] { border-color: rgba(255, 68, 102, 0.3); }
.match-card[data-status="finalizado"]::before { background: var(--text-muted); }
.match-card[data-status="finalizado"] { opacity: 0.75; }
.match-card[data-status="finalizado"]:hover { opacity: 1; }

.match-team {
    display: flex;
    align-items: center;
    gap: 16px;
}
.match-team.right { justify-content: flex-end; text-align: right; }

.team-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.team-logo img { border-radius: 50%; }
.team-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 232, 123, 0.1), transparent);
    border-radius: 50%;
}
.team-logo svg { width: 28px; height: 28px; color: var(--text-muted); position: relative; z-index: 1; }

.team-info { display: flex; flex-direction: column; }
.team-category {
    font-family: var(--mono);
    font-size: .5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 4px;
}
.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    min-width: 120px;
}
.match-time {
    font-family: var(--mono);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
}
.match-date {
    font-family: var(--mono);
    font-size: .55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.match-bottom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.match-status {
    font-family: var(--mono);
    font-size: .5rem;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .06em;
}
.match-status.upcoming { background: var(--green-dim); color: var(--accent); border: 1px solid rgba(0, 232, 123, 0.2); }
.match-status.finished { background: rgba(100, 120, 140, 0.15); color: var(--text-secondary); border: 1px solid var(--border); }
.match-status.live { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255, 68, 102, 0.2); animation: livePulse 2s infinite; }
.match-score {
    font-family: var(--mono);
    font-size: .5rem;
    padding: 4px 12px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.match-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--mono);
    font-size: .45rem;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: .04em;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ── Pagination ────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: .7rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); color: #000; border-color: var(--accent); }

/* ── Section Headers ───────────────────────────── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.section-header .see-all {
    font-family: var(--mono);
    font-size: .6rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-title {
    text-align: center;
    margin: 40px 0 24px;
}
.section-title .eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: .6rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 8px;
}
.section-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* ── Group Table ───────────────────────────────── */
.group-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}
.group-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.group-panel-header h4 {
    font-size: .82rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}
.group-panel-header .mono { font-size: .55rem; color: var(--text-muted); }

table { border-collapse: collapse; width: 100%; }
th {
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: .52rem;
    font-weight: 400;
    padding: 8px 8px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--border);
}
th:nth-child(2), td:nth-child(2) { text-align: left; }
td {
    font-family: var(--mono);
    font-size: .68rem;
    padding: 10px 8px;
    text-align: right;
    border-bottom: 1px solid rgba(26, 42, 58, 0.5);
}
td.position { color: var(--text-muted); width: 28px; }
td.team-name {
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 600;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
tr.is-qualified td.position { color: var(--accent); font-weight: 600; }
tr.is-qualified { background: rgba(0, 232, 123, 0.03); }
td.points { color: var(--text); font-weight: 700; }

/* ── Tags ──────────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .06em;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 3px;
}
.tag-green { background: var(--green-dim); border: 1px solid rgba(0, 232, 123, 0.2); color: var(--accent); }
.tag-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text-secondary); }

/* ── Championship Cards ────────────────────────── */
.champ-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
}
.champ-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.champ-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.champ-card-body { padding: 16px 24px; }
.champ-card-body h4 { font-size: .9rem; font-weight: 600; margin: 0 0 10px; }
.champ-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.champ-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    color: var(--text-secondary);
}
.champ-meta-item svg { width: 14px; height: 14px; color: var(--text-muted); }

.championship-directory-hero { border-bottom-color: rgba(0, 232, 123, .22); }
.championship-directory { padding-bottom: 64px; padding-top: 32px; }
.championship-directory .section-header { align-items: flex-end; }
.championship-directory .section-header h2 { margin: 5px 0 0; }
.championship-summary-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 28px; }
.championship-summary-stat { background: var(--bg-card); border: 1px solid var(--border); padding: 16px 18px; }
.championship-summary-stat span, .directory-metric span { color: var(--text-muted); display: block; font-family: var(--mono); font-size: .55rem; letter-spacing: .06em; text-transform: uppercase; }
.championship-summary-stat strong { color: var(--text); display: block; font-family: var(--display); font-size: 1.55rem; margin-top: 7px; }
.directory-list { display: grid; gap: 18px; }
.directory-championship { background: linear-gradient(145deg, rgba(13, 21, 32, .98), rgba(8, 16, 25, .98)); border: 1px solid var(--border); overflow: hidden; }
.directory-championship-header { align-items: flex-start; display: flex; gap: 22px; justify-content: space-between; padding: 24px; }
.directory-championship-number { color: var(--accent); display: block; font-family: var(--mono); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.directory-championship-header h2 { font-size: 1.25rem; margin: 8px 0 7px; }
.directory-championship-header p { color: var(--text-secondary); font-size: .8rem; margin: 0; max-width: 620px; }
.directory-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.directory-metrics { border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.directory-metric { border-right: 1px solid var(--border); padding: 13px 20px; }
.directory-metric:last-child { border-right: 0; }
.directory-metric strong { color: var(--text); display: block; font-size: .82rem; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.directory-groups { padding: 22px 24px 24px; }
.directory-groups-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 14px; }
.directory-groups-heading h3 { font-size: 1rem; margin: 5px 0 0; }
.directory-group-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.directory-group { background: rgba(5, 10, 14, .46); border: 1px solid var(--border); min-width: 0; padding: 16px; }
.directory-group-header { align-items: center; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; }
.directory-group-header h4 { font-size: .8rem; margin: 0; text-transform: uppercase; }
.directory-group-header span { color: var(--text-muted); font-family: var(--mono); font-size: .55rem; text-transform: uppercase; }
.directory-group table { min-width: 100%; }
.directory-empty { color: var(--text-secondary); font-size: .82rem; margin: 0; }
.championship-empty-state { margin-bottom: 0; }

/* ── Tournament Card ───────────────────────────── */
.tournament-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s;
}
.tournament-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.tournament-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}
.tournament-card-body {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 24px 20px;
    align-items: center;
}
.tournament-card-stat { display: flex; flex-direction: column; gap: 2px; }
.tournament-card-stat span { color: var(--text-muted); font-family: var(--mono); font-size: .55rem; text-transform: uppercase; }
.tournament-card-stat strong { font-size: .9rem; }

/* ── Footer ────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
    background: var(--bg-main);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-brand svg { width: 24px; height: 24px; color: var(--accent); }
.footer-desc { font-size: .78rem; color: var(--text-secondary); line-height: 1.6; }

.footer-nav-title {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}
.footer-nav a {
    display: block;
    font-size: .78rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #000; }
.footer-social a svg { width: 14px; height: 14px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: .68rem;
    color: var(--text-muted);
}

/* ── Setup State ───────────────────────────────── */
.setup-state { margin: 80px auto; max-width: 720px; padding: 30px 48px 60px; text-align: center; }
.setup-state h1 { font-size: 2.5rem; letter-spacing: -0.02em; line-height: 1; margin: 20px 0 16px; }
.setup-state p { color: var(--text-secondary); line-height: 1.6; }
.setup-command { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; justify-content: center; }
.setup-command code {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--mono);
    font-size: .65rem;
    padding: 10px 14px;
    border-radius: 4px;
}

/* ── Sidebar ───────────────────────────────────── */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}
.sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sidebar-card-header h3 {
    font-size: .82rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

/* ── Match Item ────────────────────────────────── */
.match-list { display: flex; flex-direction: column; gap: 8px; }
.match-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s;
}
.match-item:hover { border-color: var(--accent); }
.match-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}
.match-date strong {
    font-family: var(--mono);
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1;
}
.match-date span {
    font-family: var(--mono);
    font-size: .5rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.match-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.match-teams .team {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
}
.match-teams .score {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--text-muted);
    padding: 4px 10px;
    background: var(--bg-elevated);
    border-radius: 4px;
}
.match-item .match-status {
    font-family: var(--mono);
    font-size: .5rem;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .06em;
}

/* ── Upcoming Item ─────────────────────────────── */
.upcoming-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.upcoming-item:last-child { border-bottom: none; }
.upcoming-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
}
.upcoming-date strong {
    font-family: var(--mono);
    font-size: .9rem;
    color: var(--text);
    line-height: 1;
}
.upcoming-date span {
    font-family: var(--mono);
    font-size: .45rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.upcoming-info h4 {
    font-size: .78rem;
    font-weight: 600;
    margin: 0 0 2px;
}
.upcoming-info span {
    font-size: .65rem;
    color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
    .wrap { padding-left: 16px; padding-right: 16px; }
    .site-header { padding: 0 16px; }
    .header-nav { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .match-card { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 20px; }
    .match-team, .match-team.right { justify-content: center; text-align: center; }
    .match-center { padding: 8px 0; }
    .match-teams { flex-wrap: wrap; }
    .match-teams .team { font-size: .7rem; }
    .match-location { font-size: .4rem; }
    [style*="grid-template-columns: 1fr 280px"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 620px) {
    .hero h1 { font-size: 1.5rem; }
    .filter-tabs { gap: 4px; }
    .filter-tab { padding: 8px 14px; font-size: .62rem; }
    .team-logo { width: 48px; height: 48px; }
    .team-logo svg { width: 20px; height: 20px; }
    .team-name { font-size: .9rem; }
    .match-time { font-size: 1.2rem; }
}

/* ── Sports dashboard ──────────────────────────── */
.sports-dashboard {
    --sports-bg: #020b13;
    --sports-panel: #071720;
    --sports-panel-soft: #0a1d28;
    --sports-line: rgba(29, 103, 117, .52);
    --sports-muted: #718993;
    --sports-green: #00e57b;
    background: var(--sports-bg);
    color: #f2f7f7;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}
.sports-dashboard .site-header,
.sports-dashboard .site-footer,
.sports-dashboard .legacy-dashboard { display: none; }
.idb-header {
    align-items: center;
    background: rgba(2, 10, 16, .96);
    border-bottom: 1px solid rgba(0, 229, 123, .17);
    display: flex;
    height: 52px;
    justify-content: space-between;
    padding: 0 max(24px, calc((100vw - 1180px) / 2));
    position: relative;
    z-index: 10;
}
.idb-brand { align-items: center; display: inline-flex; flex-shrink: 0; gap: 8px; }
.idb-brand-logo { display: block; height: 36px; max-width: 190px; object-fit: contain; width: auto; }
.idb-brand .idb-shield, .footer-emblem .idb-shield { height: 34px; width: 30px; }
.idb-brand > span, .footer-emblem > span { display: flex; flex-direction: column; line-height: .82; }
.idb-brand strong, .footer-emblem strong { color: #eff8f8; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: .04em; }
.idb-brand small, .footer-emblem small { color: #a9b8b9; font-family: 'Barlow Condensed', sans-serif; font-size: 6px; font-weight: 700; letter-spacing: .22em; margin-top: 3px; text-align: center; }
.idb-nav { align-items: stretch; display: flex; height: 100%; gap: 8px; margin-left: auto; margin-right: 34px; }
.idb-nav a { align-items: center; color: #829297; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .08em; padding: 0 11px; position: relative; text-transform: uppercase; }
.idb-nav a:hover, .idb-nav a.is-active { color: var(--sports-green); }
.idb-nav a.is-active::after { background: var(--sports-green); bottom: 0; box-shadow: 0 -2px 10px rgba(0, 229, 123, .5); content: ''; height: 2px; left: 10px; position: absolute; right: 10px; }
.tournament-nav { background: #06151e; border-bottom: 1px solid rgba(0, 229, 123, .18); overflow-x: auto; }
.tournament-nav-inner { align-items: center; display: flex; gap: 4px; justify-content: center; margin: 0 auto; max-width: 1180px; min-height: 38px; padding: 0 24px; }
.tournament-nav a { align-items: center; color: #829b9e; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .1em; min-height: 38px; padding: 0 14px; position: relative; text-transform: uppercase; white-space: nowrap; }
.tournament-nav a:hover, .tournament-nav a.is-active { color: var(--sports-green); }
.tournament-nav a.is-active::after { background: var(--sports-green); bottom: 0; box-shadow: 0 -2px 9px rgba(0, 229, 123, .45); content: ''; height: 2px; left: 14px; position: absolute; right: 14px; }
.idb-header-actions { align-items: center; display: flex; flex-shrink: 0; gap: 13px; }
.header-icon, .menu-toggle { background: transparent; border: 0; color: #8b9d9f; cursor: pointer; padding: 3px; position: relative; }
.header-icon svg, .menu-toggle svg { height: 17px; width: 17px; }
.header-icon:hover { color: var(--sports-green); }
.has-notification::after { background: var(--sports-green); border: 2px solid #020a10; border-radius: 50%; content: ''; height: 5px; position: absolute; right: 0; top: 0; width: 5px; }
.menu-toggle { display: none; }
.sports-hero { align-items: center; background: linear-gradient(90deg, rgba(2, 12, 19, .98), rgba(2, 18, 26, .67), rgba(2, 10, 17, .98)), url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=1800&q=80') center / cover; border-bottom: 1px solid rgba(31, 103, 119, .45); display: flex; min-height: 124px; overflow: hidden; position: relative; }
.sports-hero::after { background: linear-gradient(105deg, transparent 15%, rgba(0, 229, 123, .08) 50%, transparent 80%); content: ''; inset: 0; position: absolute; }
.sports-hero-inner { position: relative; text-align: center; width: 100%; z-index: 1; }
.sports-hero h1 { color: #f1f4f2; font-family: 'Barlow Condensed', sans-serif; font-size: clamp(34px, 4vw, 45px); font-weight: 800; letter-spacing: .03em; line-height: .95; margin: 0 0 13px; text-transform: uppercase; }
.sports-breadcrumb { align-items: center; color: #8b9ea0; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 500; gap: 10px; justify-content: center; letter-spacing: .08em; text-transform: uppercase; }
.sports-breadcrumb a { color: var(--sports-green); }
.sports-breadcrumb span:nth-child(2) { color: var(--sports-green); font-size: 16px; line-height: 8px; }
.hero-sports-orbit { border: 1px solid rgba(0, 229, 123, .12); border-radius: 50%; height: 210px; position: absolute; top: -42px; width: 210px; }
.hero-sports-orbit::after { border: 1px solid rgba(35, 131, 148, .2); border-radius: 50%; content: ''; inset: 15px; position: absolute; }
.hero-sports-orbit-left { left: -90px; transform: rotate(-24deg); }
.hero-sports-orbit-right { right: -90px; transform: rotate(24deg); }
.sports-content { margin: 0 auto; max-width: 1000px; padding: 27px 24px 56px; }
.sports-section-heading { margin: 0 auto 13px; text-align: center; }
.sports-kicker { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; line-height: 1; text-transform: uppercase; }
.sports-section-heading h2 { color: #e8eeee; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: .04em; line-height: 1.1; margin: 8px 0 0; text-transform: none; }
.sports-filters { display: flex; gap: 7px; justify-content: center; margin: 18px 0 17px; }
.sports-filter { align-items: center; background: transparent; border: 1px solid rgba(36, 104, 115, .65); clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%); color: #9aacaf; cursor: pointer; display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; gap: 7px; justify-content: center; letter-spacing: .09em; min-width: 105px; padding: 9px 18px; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.sports-filter:hover { border-color: var(--sports-green); color: var(--sports-green); }
.sports-filter.is-active { background: var(--sports-green); border-color: var(--sports-green); color: #022312; }
.sports-filter-empty { color: #8fa2a4; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .05em; margin: 26px 0 4px; text-align: center; text-transform: uppercase; }
.championships-main { min-height: calc(100vh - 90px); }
.championships-hero { min-height: 178px; }
.championships-hero-description { color: #a2b2b4; font-size: 12px; margin: 0 auto; max-width: 510px; }
.championships-content { margin: 0 auto; max-width: 1140px; padding: 27px 24px 64px; }
.championship-filters { flex-wrap: wrap; margin-bottom: 26px; }
.championship-filter-empty { color: #8fa2a4; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .05em; margin: 26px 0; text-align: center; text-transform: uppercase; }
.championship-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.championship-card { background: linear-gradient(145deg, rgba(8, 27, 36, .98), rgba(5, 18, 27, .98)); border: 1px solid rgba(35, 104, 114, .48); display: flex; flex-direction: column; min-height: 356px; overflow: hidden; position: relative; transition: background .2s, border-color .2s, transform .2s; }
.championship-card::before { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .08), transparent); content: ''; height: 1px; left: 0; position: absolute; right: 0; top: 0; }
.championship-card:hover { background: linear-gradient(145deg, rgba(10, 38, 46, .99), rgba(6, 23, 32, .99)); border-color: rgba(0, 229, 123, .7); transform: translateY(-3px); }
.championship-card[hidden] { display: none; }
.championship-card-top { align-items: flex-start; display: flex; justify-content: space-between; padding: 22px 20px 0; }
.championship-card-icon { align-items: center; background: rgba(0, 229, 123, .08); border: 1px solid rgba(0, 229, 123, .5); border-radius: 50%; color: var(--sports-green); display: inline-flex; height: 44px; justify-content: center; width: 44px; }
.championship-card-icon svg { height: 22px; stroke-linecap: round; stroke-linejoin: round; width: 22px; }
.championship-status { border: 1px solid; border-radius: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .08em; padding: 5px 9px; text-transform: uppercase; }
.championship-status-finalizado { background: rgba(106, 132, 139, .12); border-color: rgba(110, 146, 151, .35); color: #a9b7b8; }
.championship-status-proximo { background: rgba(12, 133, 216, .13); border-color: rgba(26, 156, 229, .5); color: #6cc9ff; }
.championship-status-em_andamento { background: rgba(0, 229, 123, .16); border-color: rgba(0, 229, 123, .75); color: var(--sports-green); }
.championship-status-inscricoes_abertas { background: rgba(245, 199, 91, .12); border-color: rgba(245, 199, 91, .5); color: #f5c75b; }
.championship-card-body { padding: 20px 20px 18px; }
.championship-card-modality { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.championship-card h2 { color: #edf5f3; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: .02em; line-height: 1; margin: 7px 0 10px; text-transform: uppercase; }
.championship-card-body p { color: #8fa4a7; font-size: 11px; line-height: 1.55; margin: 0; min-height: 35px; }
.championship-card-meta { border-bottom: 1px solid rgba(35, 104, 114, .34); border-top: 1px solid rgba(35, 104, 114, .34); display: grid; gap: 8px; padding: 14px 20px; }
.championship-card-meta span { align-items: center; color: #9aacaf; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .03em; min-width: 0; }
.championship-card-meta svg { fill: none; flex: 0 0 15px; height: 15px; margin-right: 9px; stroke: var(--sports-green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; width: 15px; }
.championship-card-footer { align-items: center; display: flex; gap: 12px; justify-content: space-between; margin-top: auto; padding: 16px 20px 19px; }
.championship-card-footer > span { color: #698186; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.championship-card-footer i { background: #42616a; border-radius: 50%; display: inline-block; height: 3px; margin: 0 6px 2px; width: 3px; }
.championship-card-link { align-items: center; color: var(--sports-green); display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; gap: 5px; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.championship-card-link span { font-size: 19px; font-weight: 400; line-height: 9px; }
.championship-card-link:hover { color: #8dffc3; }
.sports-empty-state { margin: 0 auto; max-width: 780px; padding: 86px 24px; text-align: center; }
.sports-empty-state h1 { color: #eef5f3; font-family: 'Barlow Condensed', sans-serif; font-size: 32px; line-height: 1.05; margin: 10px 0; }
.sports-empty-state p { color: #8fa4a7; font-size: 13px; margin: 0; }
.championship-detail-hero { min-height: 224px; }
.championship-detail-back { color: #9aacaf; display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .08em; margin-bottom: 18px; text-transform: uppercase; }
.championship-detail-back:hover { color: var(--sports-green); }
.championship-detail-hero h1 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 12px; }
.championship-detail-content { margin: 0 auto; max-width: 1140px; padding: 29px 24px 64px; }
.championship-detail-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 16px; }
.championship-detail-heading h2 { color: #e8eeee; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: .04em; line-height: 1.1; margin: 8px 0 0; }
.championship-info-grid { display: grid; gap: 6px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 17px; }
.championship-info { background: rgba(7, 23, 31, .42); border: 1px solid rgba(35, 104, 114, .25); min-height: 70px; padding: 11px 13px; }
.championship-info svg { fill: none; height: 14px; margin-bottom: 7px; stroke: var(--sports-green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; width: 14px; }
.championship-info span { color: #6f878b; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.championship-info strong { color: #dbe8e5; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.championship-tab-panel[hidden] { display: none; }
.championship-standings-panel, .championship-bracket-panel { margin-bottom: 16px; }
.championship-tab-panel { scroll-margin-top: 80px; }
.championship-standings-panel { background: linear-gradient(145deg, rgba(3, 17, 26, .96), rgba(3, 12, 20, .98)); border-color: rgba(30, 83, 94, .65); }
.championship-standings-heading { align-items: center; display: flex; justify-content: space-between; padding: 17px 24px 14px; }
.championship-standings-title { align-items: center; display: flex; gap: 10px; }
.championship-standings-title svg { fill: none; height: 21px; stroke: var(--sports-green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; width: 21px; }
.championship-standings-title h2 { color: #e9f1ee; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: .04em; line-height: 1; margin: 0; }
.championship-standings-legend { align-items: center; color: #9aabad; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; gap: 16px; letter-spacing: .03em; }
.championship-standings-legend span { align-items: center; color: #aab9b6; display: inline-flex; gap: 7px; }
.championship-standings-legend i { background: var(--sports-green); border: 1px solid #087c50; border-radius: 50%; box-shadow: 0 0 8px rgba(0, 229, 123, .5); display: inline-block; height: 8px; width: 8px; }
.championship-standings-legend small { color: #a3b0b0; font-size: inherit; }
.championship-standings-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 20px 17px; }
.championship-standings-card { animation: championship-rise .55s both; background: rgba(4, 21, 30, .74); border: 1px solid rgba(30, 83, 94, .62); min-width: 0; overflow: hidden; }
.championship-standings-card:nth-child(2) { animation-delay: .08s; }
.championship-standings-card-heading { align-items: center; border-bottom: 1px solid rgba(30, 83, 94, .46); display: flex; justify-content: space-between; padding: 13px 14px 10px; }
.championship-standings-card-heading strong { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; }
.championship-standings-card-heading span { display: none; }
.championship-standings-scroll { overflow-x: auto; }
.championship-standings-table { border-collapse: separate; border-spacing: 0 4px; min-width: 0; table-layout: fixed; width: 100%; }
.championship-standings-table th { color: #87999b; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .06em; padding: 8px 3px 5px; text-align: center; }
.championship-standings-table th:nth-child(2) { text-align: left; }
.championship-standings-table th:nth-child(1), .championship-standings-table td:nth-child(1) { width: 9%; }
.championship-standings-table th:nth-child(2), .championship-standings-table td:nth-child(2) { width: 38%; }
.championship-standings-table th:nth-child(n + 3), .championship-standings-table td:nth-child(n + 3) { width: 6.625%; }
.championship-standings-table td { animation: championship-row-in .42s both; background: rgba(6, 27, 36, .62); border-bottom: 1px solid rgba(30, 83, 94, .44); border-top: 1px solid rgba(30, 83, 94, .44); color: #c0cdca; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; padding: 6px 3px; text-align: center; }
.championship-standings-table tbody tr:nth-child(2) td { animation-delay: .05s; }
.championship-standings-table tbody tr:nth-child(3) td { animation-delay: .1s; }
.championship-standings-table tbody tr:nth-child(4) td { animation-delay: .15s; }
.championship-standings-table tbody tr td:first-child { border-left: 1px solid rgba(30, 83, 94, .44); border-radius: 7px 0 0 7px; }
.championship-standings-table tbody tr td:last-child { border-radius: 0 7px 7px 0; border-right: 1px solid rgba(30, 83, 94, .44); }
.championship-standings-table td.standing-position { color: #d3dfdd; font-size: 15px; font-weight: 600; }
.championship-standings-table td.standing-team { max-width: 0; text-align: left; }
.standing-team-content { align-items: center; display: flex; gap: 8px; min-width: 0; }
.standing-team-content > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.standing-team strong { color: #e0e9e6; font-size: 12px; font-weight: 600; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.standing-team small { color: var(--sports-green); display: block; font-size: 8px; font-weight: 700; letter-spacing: .05em; line-height: 1.1; margin-top: 3px; text-transform: uppercase; }
.championship-standings-table tr.is-qualified td { background: rgba(0, 108, 68, .34); border-bottom-color: rgba(0, 229, 123, .72); border-top-color: rgba(0, 229, 123, .72); }
.championship-standings-table tbody tr.is-qualified td:first-child { border-left-color: rgba(0, 229, 123, .72); }
.championship-standings-table tbody tr.is-qualified td:last-child { border-right-color: rgba(0, 229, 123, .72); }
.championship-standings-table tbody tr.is-qualified td:first-child { box-shadow: inset 3px 0 var(--sports-green); }
.championship-standings-table tr.is-qualified td.standing-position, .championship-standings-table td.standing-points { color: var(--sports-green); font-weight: 700; }
.standing-trend { display: inline-block; font-size: 8px; margin-left: 4px; vertical-align: middle; }
.standing-trend--up { color: #00e87b; }
.standing-trend--down { color: #ff4d6a; }
.championship-standings-card-note { align-items: center; color: #9ba9a9; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; gap: 6px; letter-spacing: .01em; padding: 8px 13px 14px; }
.championship-standings-card-note svg { fill: none; flex: 0 0 13px; height: 13px; stroke: #b7c2c0; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; width: 13px; }
.championship-standings-table .championship-team-crest { background: transparent; border: 0; border-radius: 0; clip-path: none; flex-basis: 27px; height: 31px; width: 27px; }
.championship-standings-table .championship-team-crest-image { padding: 0; }
.championship-bracket-panel { overflow: hidden; position: relative; }
.championship-bracket-panel::before { animation: championship-scan 5s linear infinite; background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .12), transparent); content: ''; height: 1px; left: -30%; position: absolute; right: -30%; top: 0; }
.championship-bracket { align-items: stretch; display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(170px, .75fr); padding: 14px; position: relative; z-index: 1; }
.championship-bracket-stage { display: flex; flex-direction: column; gap: 12px; justify-content: center; min-width: 0; position: relative; z-index: 1; }
.championship-bracket-stage--semifinals, .championship-bracket-stage--final { position: relative; }
.championship-bracket-stage--semifinals::before { border-right: 1px solid rgba(0, 229, 123, .6); content: ''; height: 50%; position: absolute; right: -16px; top: 25%; width: 16px; }
.championship-bracket-stage--semifinals::after { background: rgba(0, 229, 123, .7); content: ''; height: 1px; position: absolute; right: -16px; top: 25%; width: 16px; box-shadow: 0 calc(50% - 1px) 0 rgba(0, 229, 123, .7); }
.championship-bracket-stage--final::before { background: rgba(0, 229, 123, .7); content: ''; height: 1px; left: -16px; position: absolute; top: 50%; width: 16px; }
.championship-bracket-stage--final::after { background: rgba(54, 167, 255, .7); content: ''; height: 1px; position: absolute; right: -16px; top: 50%; width: 16px; }
.championship-bracket-stage--semifinals::before, .championship-bracket-stage--semifinals::after, .championship-bracket-stage--final::before, .championship-bracket-stage--final::after { opacity: .2; }
.championship-bracket-flows { height: 100%; inset: 0; overflow: visible; pointer-events: none; position: absolute; width: 100%; z-index: 0; }
.championship-bracket-flow { fill: none; opacity: 0; stroke: var(--sports-green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; vector-effect: non-scaling-stroke; }
.championship-bracket-flow--champion { stroke: #56b8ff; }
.championship-bracket-flow.is-visible { animation: championship-flow-draw .85s cubic-bezier(.22, .8, .25, 1) forwards; }
.championship-bracket-spark { fill: #edfff7; filter: drop-shadow(0 0 4px var(--sports-green)); opacity: 0; }
.championship-bracket-spark--champion { fill: #dff4ff; filter: drop-shadow(0 0 4px #56b8ff); }
.championship-bracket-spark.is-visible { animation: championship-spark-glow 1.2s ease-in-out infinite; }
.championship-bracket-team.is-winner .championship-bracket-team-main { animation: championship-advance-pulse 1.8s ease-in-out infinite; }
.championship-bracket-team.is-winner .championship-bracket-crest { border-color: rgba(0, 229, 123, .8); box-shadow: 0 0 12px rgba(0, 229, 123, .28); }
.championship-bracket-team.is-winner b { text-shadow: 0 0 9px rgba(0, 229, 123, .65); }
.championship-bracket-team.is-finalist-arrival { animation: championship-finalist-arrive .9s cubic-bezier(.16, 1, .3, 1) both; }
.championship-bracket-stage--final .championship-bracket-team.is-finalist-arrival:nth-of-type(3) { animation-delay: .25s; }
.championship-bracket-match--pending { animation: championship-pending-card 2.2s ease-in-out infinite; border-color: rgba(86, 184, 255, .68); border-style: dashed; }
.championship-bracket-team--pending { color: #72949d; }
.championship-bracket-team--pending .championship-bracket-crest { border-color: rgba(86, 184, 255, .55); border-style: dashed; color: #56b8ff; }
.championship-bracket-team--pending .championship-bracket-team-name strong { color: #8ca8ad; }
.championship-awaiting-pulse { background: #56b8ff; border-radius: 50%; box-shadow: 0 0 0 rgba(86, 184, 255, .7); display: inline-block; height: 5px; margin-right: 4px; vertical-align: middle; width: 5px; animation: championship-awaiting-dot 1.35s ease-in-out infinite; }
.championship-bracket-match { animation: championship-rise .65s both; background: linear-gradient(135deg, rgba(9, 36, 45, .95), rgba(5, 20, 29, .98)); border: 1px solid rgba(0, 229, 123, .38); min-width: 0; padding: 11px 13px 9px; }
.championship-bracket-match:nth-child(2) { animation-delay: .12s; }
.championship-bracket-match--final { border-color: rgba(54, 167, 255, .65); }
.championship-bracket-match-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 7px; }
.championship-bracket-match-heading strong { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.championship-bracket-match--final .championship-bracket-match-heading strong { color: #56b8ff; }
.championship-bracket-match-heading span { color: #83989b; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.championship-bracket-team { align-items: center; border-top: 1px solid rgba(35, 104, 114, .28); display: flex; justify-content: space-between; min-width: 0; padding: 7px 0; }
.championship-bracket-team-main { align-items: center; display: flex; gap: 9px; min-width: 0; }
.championship-bracket-crest { align-items: center; background: rgba(14, 47, 58, .8); border: 1px solid #35636b; border-radius: 50%; display: inline-flex; flex: 0 0 32px; height: 32px; justify-content: center; overflow: hidden; width: 32px; }
.championship-bracket-crest-image { height: 100%; object-fit: contain; padding: 4px; width: 100%; }
.championship-bracket-crest-fallback { color: #bfe8dc; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 800; }
.championship-bracket-team-name { display: flex; flex-direction: column; min-width: 0; }
.championship-bracket-team-name small { color: #70878c; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.championship-bracket-team-name strong { color: #cbd9d6; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.championship-bracket-team b { color: #dce8e5; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; margin-left: 10px; }
.championship-bracket-team.is-winner .championship-bracket-team-name strong, .championship-bracket-team.is-winner b { color: var(--sports-green); }
.championship-bracket-match-footer { color: #71888c; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: .05em; margin-top: 5px; text-transform: uppercase; }
.championship-bracket-match-footer span { color: var(--sports-green); margin: 0 4px; }
.championship-bracket-match-footer i { display: block; font-style: normal; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.championship-bracket-champion { align-items: center; animation: championship-rise .7s .22s both; background: linear-gradient(145deg, rgba(9, 54, 42, .85), rgba(5, 25, 28, .95)); border: 1px solid rgba(0, 229, 123, .55); display: flex; flex-direction: column; isolation: isolate; justify-content: center; min-height: 150px; overflow: hidden; padding: 18px; position: relative; text-align: center; }
.championship-bracket-champion::before { background: rgba(0, 229, 123, .7); content: ''; height: 1px; left: -16px; position: absolute; top: 50%; width: 16px; }
.championship-bracket-champion::after { background: linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, .13) 50%, transparent 85%); content: ''; inset: 0; opacity: 0; pointer-events: none; position: absolute; transform: translateX(-100%); z-index: 0; }
.championship-bracket-champion > *:not(.championship-celebration-burst) { position: relative; z-index: 1; }
.championship-bracket-champion.is-confirmed { background: radial-gradient(circle at 50% 35%, rgba(255, 202, 86, .14), transparent 28%), linear-gradient(145deg, rgba(16, 73, 49, .96), rgba(5, 25, 28, .98)); border-color: rgba(255, 202, 86, .75); box-shadow: inset 0 0 35px rgba(255, 202, 86, .08), 0 0 28px rgba(0, 229, 123, .14); }
.championship-bracket-champion.is-confirmed.is-celebrating::after { animation: championship-champion-sweep 2.4s 1.05s ease-out both; }
.championship-bracket-champion.is-pending { border-color: rgba(86, 184, 255, .58); }
.championship-bracket-champion > span:first-child { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.championship-bracket-champion.is-confirmed > span:first-child { color: #ffca56; text-shadow: 0 0 11px rgba(255, 202, 86, .4); }
.championship-champion-trophy { animation: championship-trophy-reveal 1.15s .42s cubic-bezier(.16, 1, .3, 1) both; color: #ffca56; filter: drop-shadow(0 0 9px rgba(255, 202, 86, .5)); height: 58px; margin: 9px 0 -2px; width: 58px; }
.championship-champion-trophy svg { height: 100%; overflow: visible; width: 100%; }
.championship-bracket-champion.is-pending .championship-champion-trophy { animation: championship-trophy-pending 2s ease-in-out infinite; color: #56b8ff; filter: drop-shadow(0 0 7px rgba(86, 184, 255, .38)); opacity: .72; }
.championship-champion-crest { align-items: center; animation: championship-pulse 2.8s ease-in-out infinite; background: rgba(0, 229, 123, .1); border: 1px solid rgba(0, 229, 123, .65); border-radius: 50%; display: inline-flex; height: 62px; justify-content: center; margin: 12px 0 2px; overflow: hidden; width: 62px; }
.championship-bracket-champion.is-confirmed .championship-champion-crest { animation: championship-champion-crest-reveal 1.05s .78s cubic-bezier(.16, 1, .3, 1) both, championship-champion-crest-glow 2.8s 1.9s ease-in-out infinite; border-color: rgba(255, 202, 86, .82); box-shadow: 0 0 20px rgba(255, 202, 86, .2); }
.championship-bracket-champion.is-pending .championship-champion-crest--pending { animation: championship-pending-crest 1.8s ease-in-out infinite; border-color: rgba(86, 184, 255, .42); border-style: dashed; color: #56b8ff; }
.championship-champion-crest-image { height: 100%; object-fit: contain; padding: 8px; width: 100%; }
.championship-champion-crest-fallback { color: #bfe8dc; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 0; }
.championship-bracket-champion strong { color: #f0f6ec; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; line-height: 1; margin-top: 15px; }
.championship-bracket-champion small { color: #86a69b; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: .06em; margin-top: 8px; text-transform: uppercase; }
.championship-bracket-champion.is-confirmed strong { color: #fff5d5; text-shadow: 0 0 13px rgba(255, 202, 86, .28); }
.championship-bracket-champion.is-confirmed small { color: #d8c789; }
.championship-celebration-burst { inset: 50% 50%; pointer-events: none; position: absolute; z-index: 0; }
.championship-confetti { animation: championship-confetti-burst 1.45s var(--confetti-delay) cubic-bezier(.16, 1, .3, 1) both; background: var(--confetti-color); height: 8px; position: absolute; width: 4px; }
.championship-rules-panel { margin-bottom: 16px; overflow: hidden; }
.championship-rules-hero { background: linear-gradient(120deg, rgba(6, 40, 45, .94), rgba(7, 24, 34, .88)); border-bottom: 1px solid rgba(55, 177, 156, .3); padding: 26px 28px 22px; position: relative; }
.championship-rules-hero::after { background: linear-gradient(90deg, var(--sports-green), transparent); bottom: 0; content: ''; height: 2px; left: 28px; position: absolute; width: 92px; }
.championship-rules-hero-kicker { align-items: center; color: #80d9be; display: flex; font-family: var(--mono); font-size: 9px; font-weight: 500; gap: 8px; letter-spacing: .14em; text-transform: uppercase; }
.championship-rules-hero-kicker span { background: var(--sports-green); border-radius: 50%; box-shadow: 0 0 12px rgba(0, 229, 123, .6); height: 6px; width: 6px; }
.championship-rules-hero-main { align-items: flex-end; display: flex; gap: 18px; justify-content: space-between; margin-top: 12px; }
.championship-rules-hero-main h2 { color: #f0faf6; font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: 0; line-height: 1; margin: 0; }
.championship-rules-hero-main p { color: #a5c2bf; font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.5; margin: 9px 0 0; }
.championship-rules-hero-main > strong { border: 1px solid rgba(128, 217, 190, .35); color: #a9e8d3; flex: 0 0 auto; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .1em; padding: 7px 9px; text-transform: uppercase; }
.championship-rules-source { color: #769694; font-family: 'DM Sans', sans-serif; font-size: 11px; line-height: 1.5; margin: 20px 0 0; max-width: 720px; }
.championship-rules-highlights { border-bottom: 1px solid rgba(35, 104, 114, .34); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0 14px; }
.championship-rules-highlight { border-right: 1px solid rgba(35, 104, 114, .28); display: flex; flex-direction: column; min-width: 0; padding: 18px 14px 17px; }
.championship-rules-highlight:last-child { border-right: 0; }
.championship-rules-highlight > span { color: #6f9997; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.championship-rules-highlight > strong { color: #e8fff5; font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; letter-spacing: 0; line-height: 1.15; margin-top: 7px; }
.championship-rules-highlight > small { color: #819f9e; font-family: 'DM Sans', sans-serif; font-size: 10px; line-height: 1.35; margin-top: 5px; }
.championship-rules-document-heading { align-items: flex-end; display: flex; justify-content: space-between; padding: 24px 28px 16px; }
.championship-rules-document-heading > div > span { color: var(--sports-green); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.championship-rules-document-heading h3 { color: #e7f1ed; font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; letter-spacing: 0; line-height: 1.2; margin: 6px 0 0; }
.championship-rules-document-heading > strong { color: #789a99; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.championship-rules-articles { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 28px 28px; }
.championship-rules-article { background: rgba(7, 31, 38, .62); border: 1px solid rgba(45, 117, 119, .35); min-width: 0; padding: 17px 18px 18px; }
.championship-rules-article.is-wide { grid-column: 1 / -1; }
.championship-rules-article-top { align-items: center; border-bottom: 1px solid rgba(61, 133, 131, .26); display: flex; gap: 10px; justify-content: space-between; padding-bottom: 11px; }
.championship-rules-article-top > span { color: #8ee2c5; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.championship-rules-article-top > strong { color: #769a98; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.championship-rules-article p { color: #b8ccca; font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.7; margin: 13px 0 0; }
.championship-rules-copy { color: #a8b9ba; font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.7; padding: 18px 20px 22px; white-space: pre-line; }
.championship-detail-layout { align-items: start; display: grid; gap: 16px; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); }
.championship-detail-panel { background: rgba(5, 18, 27, .64); border: 1px solid rgba(35, 104, 114, .48); min-width: 0; }
.championship-detail-panel-heading { align-items: flex-end; border-bottom: 1px solid rgba(35, 104, 114, .38); display: flex; justify-content: space-between; padding: 18px 20px 15px; }
.championship-detail-panel-heading h2 { color: #dfe9e7; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: .03em; line-height: 1.1; margin: 7px 0 0; }
.championship-detail-panel-heading > span { color: #789095; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.championship-team-groups { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 14px; }
.championship-team-group { background: rgba(7, 27, 36, .7); border: 1px solid rgba(35, 104, 114, .35); min-width: 0; padding: 13px; }
.championship-team-group-heading { align-items: center; border-bottom: 1px solid rgba(35, 104, 114, .3); display: flex; justify-content: space-between; margin-bottom: 8px; padding-bottom: 8px; }
.championship-team-group-heading strong { color: #d8e5e2; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.championship-team-group-heading span { color: #71888c; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; text-transform: uppercase; }
.championship-team-list { list-style: none; margin: 0; padding: 0; }
.championship-team-list li { align-items: center; color: #a8b9ba; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; gap: 8px; min-width: 0; padding: 5px 0; }
.championship-team-list li > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.championship-team-crest { align-items: center; background: #143441; border: 1px solid #35636b; border-radius: 50%; color: #bfe8dc; display: inline-flex; flex: 0 0 24px; font-size: 8px; font-weight: 700; height: 24px; justify-content: center; overflow: hidden; width: 24px; }
.championship-team-crest-image { height: 100%; object-fit: contain; padding: 3px; width: 100%; }
.championship-team-crest-fallback { align-items: center; display: inline-flex; height: 100%; justify-content: center; width: 100%; }
.championship-standings-table tr.is-qualified .championship-team-crest { background: transparent; border: 0; border-radius: 0; box-shadow: none; clip-path: none; overflow: visible; }
.championship-standings-table .championship-team-crest, .championship-standings-table tr.is-qualified .championship-team-crest { background: transparent; border: 0; border-radius: 0; box-shadow: none; clip-path: none; overflow: visible; }
.championship-standings-table .championship-team-crest-image { padding: 0; }
.championship-team-list li { animation: championship-slide-in .45s both; }
.championship-team-list li:nth-child(2) { animation-delay: .06s; }
.championship-team-list li:nth-child(3) { animation-delay: .12s; }
.championship-team-list li:nth-child(4) { animation-delay: .18s; }
.championship-detail-empty { color: #81979a; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; margin: 18px 20px; text-transform: uppercase; }
.championship-detail-fixtures { gap: 7px; padding: 14px; }
.championship-detail-fixture { grid-template-rows: auto 1fr; min-height: 106px; padding: 10px 30px 0; }
.championship-detail-fixture-phase { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 9px; grid-column: 1 / -1; letter-spacing: .1em; line-height: 1; margin: 0 0 7px; text-transform: uppercase; }
@keyframes championship-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes championship-slide-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
@keyframes championship-pulse { 0%, 100% { box-shadow: 0 0 0 rgba(0, 229, 123, 0); transform: scale(1); } 50% { box-shadow: 0 0 22px rgba(0, 229, 123, .2); transform: scale(1.04); } }
@keyframes championship-scan { from { transform: translateX(-35%); } to { transform: translateX(35%); } }
@keyframes championship-flow-draw { from { opacity: 0; stroke-dashoffset: var(--flow-length); } to { opacity: .88; stroke-dashoffset: 0; } }
@keyframes championship-spark-glow { 0%, 100% { opacity: .2; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes championship-advance-pulse { 0%, 100% { filter: drop-shadow(0 0 0 rgba(0, 229, 123, 0)); } 50% { filter: drop-shadow(0 0 5px rgba(0, 229, 123, .22)); } }
@keyframes championship-finalist-arrive { from { opacity: 0; transform: translateX(-34px) scale(.94); } 70% { opacity: 1; transform: translateX(5px) scale(1.01); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes championship-pending-card { 0%, 100% { box-shadow: 0 0 0 rgba(86, 184, 255, 0); } 50% { box-shadow: 0 0 22px rgba(86, 184, 255, .13); } }
@keyframes championship-awaiting-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(86, 184, 255, .65); opacity: .6; } 50% { box-shadow: 0 0 0 5px rgba(86, 184, 255, 0); opacity: 1; } }
@keyframes championship-trophy-reveal { from { opacity: 0; transform: translateY(18px) scale(.55) rotate(-8deg); } 65% { opacity: 1; transform: translateY(-4px) scale(1.08) rotate(2deg); } to { opacity: 1; transform: translateY(0) scale(1) rotate(0); } }
@keyframes championship-trophy-pending { 0%, 100% { opacity: .48; transform: translateY(0); } 50% { opacity: .9; transform: translateY(-4px); } }
@keyframes championship-champion-crest-reveal { from { opacity: 0; transform: scale(.4); } 70% { opacity: 1; transform: scale(1.12); } to { opacity: 1; transform: scale(1); } }
@keyframes championship-champion-crest-glow { 0%, 100% { box-shadow: 0 0 12px rgba(255, 202, 86, .16); } 50% { box-shadow: 0 0 27px rgba(255, 202, 86, .42); } }
@keyframes championship-pending-crest { 0%, 100% { opacity: .55; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.03); } }
@keyframes championship-champion-sweep { 0% { opacity: 0; transform: translateX(-100%); } 18% { opacity: 1; } 55%, 100% { opacity: 0; transform: translateX(100%); } }
@keyframes championship-confetti-burst { from { opacity: 0; transform: translate(-50%, -50%) translate(0, 0) rotate(0); } 12% { opacity: 1; } to { opacity: 0; transform: translate(-50%, -50%) translate(var(--confetti-x), var(--confetti-y)) rotate(var(--confetti-rotate)); } }
.filter-live-dot { background: currentColor; border: 1px solid currentColor; border-radius: 50%; height: 5px; width: 5px; }
.filter-icon { fill: none; height: 13px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 13px; }
.sport-section { margin-top: 18px; }
.sport-section-heading { align-items: center; display: flex; justify-content: space-between; margin: 0 4px 6px 8px; }
.sport-name-wrap { align-items: center; display: flex; gap: 9px; }
.sport-icon { align-items: center; border: 1px solid #00b965; border-radius: 50%; color: var(--sports-green); display: inline-flex; height: 24px; justify-content: center; width: 24px; }
.sport-icon svg { height: 13px; width: 13px; }
.sport-section h3 { color: #c4cecf; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em; margin: 0; text-transform: uppercase; }
.standings-link { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.standings-link span { font-size: 17px; line-height: 8px; margin-left: 2px; vertical-align: -1px; }
.standings-link:hover { color: #8dffc3; }
.championship-group { margin-top: 9px; }
.championship-heading { align-items: center; appearance: none; background: rgba(7, 23, 31, .72); border: 1px solid rgba(35, 104, 114, .35); color: inherit; cursor: pointer; display: flex; font: inherit; justify-content: space-between; min-height: 52px; padding: 7px 18px 7px 24px; text-align: left; width: 100%; }
.championship-heading:hover, .championship-heading[aria-expanded='true'] { background: rgba(10, 36, 43, .92); border-color: rgba(0, 229, 123, .55); }
.championship-title { min-width: 0; }
.championship-label { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.championship-heading h4 { color: #cbd7d7; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .02em; line-height: 1.1; margin: 4px 0 0; }
.accordion-icon { color: #7d9397; flex: 0 0 16px; height: 16px; margin-left: 12px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .2s, color .2s; width: 16px; }
.championship-heading[aria-expanded='true'] .accordion-icon { color: var(--sports-green); transform: rotate(180deg); }
.championship-content { border: 1px solid rgba(35, 104, 114, .35); border-top: 0; padding: 0 12px 14px; }
.championship-content[hidden] { display: none; }
.participation-badge { background: rgba(0, 229, 123, .08); border: 1px solid rgba(0, 229, 123, .35); color: #76eeb2; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 5px 10px; text-transform: uppercase; }
.phase-section { margin-top: 14px; }
.phase-section + .phase-section { border-top: 1px solid rgba(35, 104, 114, .4); margin-top: 22px; padding-top: 15px; }
.phase-section-heading { align-items: center; border-left: 2px solid var(--sports-green); display: flex; justify-content: space-between; padding: 1px 10px 3px; }
.phase-section-label { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .15em; line-height: 1; text-transform: uppercase; }
.phase-section-heading h5 { color: #e3eceb; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: .03em; line-height: 1; margin: 5px 0 0; }
.phase-count, .phase-round-heading span { color: #7d9397; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.phase-round { margin-top: 9px; }
.phase-round + .phase-round { border-top: 1px solid rgba(35, 104, 114, .25); margin-top: 14px; padding-top: 12px; }
.phase-round-heading { align-items: center; display: flex; justify-content: space-between; margin: 0 8px 6px; }
.phase-round-heading h6 { color: #b7c8c9; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; margin: 0; text-transform: uppercase; }
.fixtures-list { display: flex; flex-direction: column; gap: 4px; }
.fixture-card { align-items: center; background: linear-gradient(90deg, rgba(7, 26, 35, .96), rgba(6, 21, 30, .93)); border: 1px solid var(--sports-line); clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0 50%); display: grid; grid-template-columns: minmax(0, 1fr) 184px minmax(0, 1fr); min-height: 64px; overflow: hidden; padding: 0 30px; position: relative; transition: border-color .2s, background .2s; }
.fixture-card::before { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .04), transparent); content: ''; inset: 0; pointer-events: none; position: absolute; }
.fixture-card:hover { background: linear-gradient(90deg, rgba(9, 38, 45, .98), rgba(8, 28, 36, .98)); border-color: rgba(0, 229, 123, .8); }
.fixture-team { align-items: center; display: flex; gap: 12px; min-width: 0; position: relative; z-index: 1; }
.fixture-team strong { color: #e2e8e7; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fixture-team-away { justify-content: flex-end; text-align: right; }
.team-crest { align-items: center; background: linear-gradient(145deg, #163a47, #091a26); border: 1px solid #48727a; clip-path: polygon(50% 0, 92% 15%, 85% 77%, 50% 100%, 15% 77%, 8% 15%); color: #bfe8dc; display: flex; flex: 0 0 44px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800; height: 46px; justify-content: center; letter-spacing: .05em; position: relative; width: 44px; }
.team-crest::after { border: 1px solid rgba(0, 229, 123, .38); clip-path: inherit; content: ''; inset: 4px; position: absolute; }
.team-crest span { position: relative; z-index: 1; }
.team-crest-image { height: 100%; object-fit: contain; padding: 5px; position: relative; width: 100%; z-index: 1; }
.fixture-center { align-items: center; display: flex; flex-direction: column; min-width: 0; position: relative; z-index: 1; }
.fixture-meta { color: #a8c0c4; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.fixture-meta span { color: var(--sports-green); margin: 0 4px; }
.fixture-venue { color: #8fa8ac; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; line-height: 1; margin-top: 4px; }
.fixture-score { align-items: center; color: #f1f5f3; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; gap: 13px; line-height: 1; margin-top: 4px; }
.fixture-score b { color: var(--sports-green); font-size: 17px; font-weight: 500; }
.fixture-status { border: 1px solid; border-radius: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .08em; line-height: 1; margin-top: 2px; padding: 3px 10px; text-transform: uppercase; }
.fixture-status-finalizado { background: rgba(106, 132, 139, .12); border-color: rgba(110, 146, 151, .35); color: #a9b7b8; }
.fixture-status-agendado { background: rgba(12, 133, 216, .13); border-color: rgba(26, 156, 229, .5); color: #6cc9ff; }
.fixture-status-em_andamento { background: rgba(0, 229, 123, .16); border-color: rgba(0, 229, 123, .75); color: var(--sports-green); }
.fixture-card:has(.fixture-status-em_andamento) { border-color: rgba(0, 229, 123, .8); }
.fixture-card[hidden], .phase-round[hidden], .phase-section[hidden], .championship-group[hidden], .sport-section[hidden] { display: none; }
.contact-main { min-height: calc(100vh - 90px); }
.contact-hero { min-height: 190px; }
.contact-hero p { color: #a2b2b4; font-size: 12px; margin: 0; }
.contact-content { margin: 0 auto; max-width: 1140px; padding: 34px 24px 68px; }
.contact-section + .contact-section { border-top: 1px solid rgba(35, 104, 114, .35); margin-top: 42px; padding-top: 37px; }
.contact-section-heading { align-items: flex-end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: 18px; }
.contact-section-heading h2 { color: #e8eeee; font-family: 'Space Grotesk', sans-serif; font-size: 23px; font-weight: 600; letter-spacing: 0; line-height: 1.15; margin: 7px 0 0; }
.contact-hours { align-items: flex-start; border-left: 1px solid rgba(0, 229, 123, .38); display: flex; gap: 10px; padding: 2px 0 2px 16px; }
.contact-icon { color: var(--sports-green); display: inline-flex; flex: 0 0 20px; }
.contact-icon svg { height: 20px; width: 20px; }
.contact-hours div { display: flex; flex-direction: column; gap: 3px; }
.contact-hours div > span { color: #71898d; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-hours strong { color: #cbd8d7; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; line-height: 1.25; white-space: nowrap; }
.contact-channel-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-channel { background: linear-gradient(145deg, rgba(8, 29, 38, .98), rgba(4, 17, 26, .98)); border: 1px solid rgba(35, 104, 114, .55); color: inherit; display: flex; flex-direction: column; min-height: 188px; overflow: hidden; padding: 20px 21px 18px; position: relative; transition: background .2s, border-color .2s, transform .2s; }
.contact-channel::before { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .1), transparent); content: ''; height: 1px; left: 0; position: absolute; right: 0; top: 0; }
.contact-channel:hover { background: linear-gradient(145deg, rgba(10, 40, 47, .99), rgba(5, 23, 31, .99)); border-color: rgba(0, 229, 123, .75); transform: translateY(-3px); }
.contact-channel:focus-visible, .contact-unit a:focus-visible { outline: 2px solid var(--sports-green); outline-offset: 3px; }
.contact-channel-icon { align-items: center; background: rgba(0, 229, 123, .08); border: 1px solid rgba(0, 229, 123, .45); color: var(--sports-green); display: inline-flex; height: 37px; justify-content: center; width: 37px; }
.contact-channel-icon svg { height: 19px; width: 19px; }
.contact-channel-label { color: #779094; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; margin-top: 17px; text-transform: uppercase; }
.contact-channel strong { color: #edf5f3; font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; line-height: 1.2; margin-top: 7px; overflow-wrap: anywhere; }
.contact-email-value { font-size: 15px !important; }
.contact-channel-action { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; margin-top: auto; padding-top: 16px; text-transform: uppercase; }
.contact-channel-action span { font-size: 17px; font-weight: 400; line-height: 8px; margin-left: 4px; }
.contact-channel-whatsapp { border-color: rgba(0, 229, 123, .72); }
.contact-units-heading { align-items: center; }
.contact-unit-count { color: #71898d; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.contact-unit-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-unit { background: rgba(5, 20, 29, .82); border: 1px solid rgba(35, 104, 114, .45); display: flex; flex-direction: column; min-height: 300px; padding: 20px 21px 17px; }
.contact-unit-top { align-items: center; display: flex; gap: 8px; }
.contact-unit-marker { color: var(--sports-green); display: inline-flex; }
.contact-unit-marker svg { height: 18px; width: 18px; }
.contact-unit-label { color: #71898d; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-unit h3 { color: #ecf4f1; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: .03em; line-height: 1; margin: 18px 0 14px; text-transform: uppercase; }
.contact-unit address { color: #a1b1b3; font-family: 'DM Sans', sans-serif; font-size: 11px; font-style: normal; line-height: 1.6; }
.contact-unit-details { border-top: 1px solid rgba(35, 104, 114, .3); display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 15px; }
.contact-unit-details a { align-items: center; color: #a1b1b3; display: flex; font-family: 'DM Sans', sans-serif; font-size: 10px; gap: 7px; min-width: 0; overflow-wrap: anywhere; }
.contact-unit-details a:hover, .contact-map-link:hover { color: var(--sports-green); }
.contact-unit-details svg { color: var(--sports-green); flex: 0 0 14px; height: 14px; width: 14px; }
.contact-map-link { align-items: center; border-top: 1px solid rgba(35, 104, 114, .3); color: var(--sports-green); display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; gap: 5px; letter-spacing: .08em; margin-top: 15px; padding-top: 13px; text-transform: uppercase; }
.contact-map-link span { font-size: 15px; font-weight: 400; line-height: 8px; }
.news-main { min-height: calc(100vh - 90px); }
.news-hero { min-height: 214px; }
.news-hero p { color: #a2b2b4; font-size: 12px; margin: 0 auto; max-width: 510px; }
.news-content { margin: 0 auto; max-width: 1140px; padding: 38px 24px 72px; }
.news-section-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 19px; }
.news-section-heading h2 { color: #e8eeee; font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: 0; line-height: 1.15; margin: 7px 0 0; }
.news-count { color: #71898d; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.news-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-card { animation: news-reveal .45s ease both; background: linear-gradient(145deg, rgba(8, 29, 38, .98), rgba(4, 17, 26, .98)); border: 1px solid rgba(35, 104, 114, .5); display: flex; flex-direction: column; min-width: 0; overflow: hidden; transition: background .2s, border-color .2s, transform .2s; }
.news-card:nth-child(2) { animation-delay: .06s; }
.news-card:nth-child(3) { animation-delay: .12s; }
.news-card:nth-child(4) { animation-delay: .18s; }
.news-card:hover { background: linear-gradient(145deg, rgba(10, 40, 47, .99), rgba(5, 23, 31, .99)); border-color: rgba(0, 229, 123, .75); transform: translateY(-3px); }
.news-card-featured { display: grid; grid-column: 1 / -1; grid-template-columns: minmax(280px, .92fr) 1.08fr; }
.news-card-image { aspect-ratio: 16 / 8; background: #0b202a; overflow: hidden; position: relative; }
.news-card-featured .news-card-image { aspect-ratio: auto; min-height: 250px; }
.news-card-image::after { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .14), transparent); content: ''; height: 1px; left: 0; position: absolute; right: 0; top: 0; }
.news-card-image img { height: 100%; object-fit: cover; transition: transform .35s ease; width: 100%; }
.news-card:hover .news-card-image img { transform: scale(1.03); }
.news-card-image-placeholder { align-items: center; background: repeating-linear-gradient(135deg, rgba(0, 229, 123, .06) 0, rgba(0, 229, 123, .06) 1px, transparent 1px, transparent 13px), #0b202a; display: flex; justify-content: center; }
.news-card-image-placeholder span { color: rgba(116, 238, 178, .65); font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: .08em; }
.news-card-body { display: flex; flex: 1; flex-direction: column; padding: 21px 22px 23px; }
.news-card-meta { align-items: center; display: flex; gap: 12px; justify-content: space-between; }
.news-card-meta span { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.news-card-meta time { color: #71898d; font-family: 'DM Mono', monospace; font-size: 9px; white-space: nowrap; }
.news-card h3 { color: #edf5f3; font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; line-height: 1.18; margin: 16px 0 0; }
.news-card-featured h3 { font-size: 26px; max-width: 620px; }
.news-card p { color: #9eb0b1; font-family: 'DM Sans', sans-serif; font-size: 12px; line-height: 1.6; margin: 13px 0 0; }
.news-state { align-items: center; animation: news-reveal .45s ease both; background: linear-gradient(145deg, rgba(8, 29, 38, .98), rgba(4, 17, 26, .98)); border: 1px solid rgba(35, 104, 114, .55); display: flex; flex-direction: column; margin: 9px auto 0; max-width: 680px; padding: 48px 28px 45px; position: relative; text-align: center; }
.news-state::before { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .65), transparent); content: ''; height: 1px; left: 18%; position: absolute; right: 18%; top: 0; }
.news-state-icon { align-items: center; background: rgba(0, 229, 123, .08); border: 1px solid rgba(0, 229, 123, .45); color: var(--sports-green); display: inline-flex; font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 600; height: 48px; justify-content: center; margin-bottom: 22px; width: 48px; }
.news-state-icon svg { height: 24px; width: 24px; }
.news-state .sports-kicker { margin-bottom: 8px; }
.news-state h2 { color: #e8eeee; font-family: 'Space Grotesk', sans-serif; font-size: 25px; font-weight: 600; line-height: 1.15; margin: 0; }
.news-state p { color: #9eb0b1; font-family: 'DM Sans', sans-serif; font-size: 12px; line-height: 1.6; margin: 12px auto 22px; max-width: 430px; }
.news-state .btn { margin-top: 1px; }
.news-state-error { border-color: rgba(255, 68, 102, .45); }
.news-state-error::before { background: linear-gradient(90deg, transparent, rgba(255, 68, 102, .6), transparent); }
.news-state-error .news-state-icon { background: rgba(255, 68, 102, .1); border-color: rgba(255, 68, 102, .5); color: #ff7890; }
@keyframes news-reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.home-main { background: #020b13; min-height: calc(100vh - 52px); }
.home-hero { align-items: center; background: linear-gradient(90deg, rgba(1, 12, 22, .94), rgba(2, 19, 31, .54), rgba(1, 10, 18, .9)), url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=1800&q=85') center / cover; border-bottom: 1px solid rgba(0, 229, 123, .24); display: flex; min-height: 236px; overflow: hidden; position: relative; }
.home-hero::after { background: linear-gradient(90deg, transparent, rgba(0, 229, 123, .2), transparent); bottom: 0; content: ''; height: 2px; left: 30%; position: absolute; right: 30%; }
.home-hero-grid { background-image: linear-gradient(rgba(0, 229, 123, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 123, .04) 1px, transparent 1px); background-size: 42px 42px; inset: 0; opacity: .42; position: absolute; transform: perspective(380px) rotateX(58deg) scale(1.25); transform-origin: center bottom; }
.home-hero-inner { animation: home-hero-rise .65s ease both; max-width: 660px; padding: 38px 24px 36px; position: relative; text-align: center; width: 100%; z-index: 1; }
.home-hero-kicker { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .18em; margin-bottom: 10px; text-transform: uppercase; }
.home-hero h1 { color: #f2f7f7; font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: .025em; line-height: .82; margin: 0; text-transform: uppercase; }
.home-hero h1 strong { color: var(--sports-green); display: inline-block; font-weight: 800; }
.home-hero p { color: #c0cccd; font-family: 'DM Sans', sans-serif; font-size: 12px; line-height: 1.45; margin: 17px auto 18px; }
.home-hero-actions { align-items: center; display: flex; gap: 10px; justify-content: center; }
.home-button { align-items: center; clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 9px 100%, 0 50%); display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800; gap: 9px; justify-content: center; letter-spacing: .08em; min-height: 30px; padding: 0 18px; text-transform: uppercase; transition: background .2s, border-color .2s, color .2s; }
.home-button span { font-size: 16px; font-weight: 400; line-height: 1; }
.home-button-primary { background: var(--sports-green); color: #032113; }
.home-button-primary:hover { background: #76ffb7; box-shadow: 0 0 22px rgba(0, 229, 123, .24); }
.home-button-ghost { border: 1px solid rgba(0, 229, 123, .65); color: #d2e4e2; }
.home-button-ghost:hover { background: rgba(0, 229, 123, .12); color: var(--sports-green); }
.home-hero-orbit { border: 1px solid rgba(0, 229, 123, .13); border-radius: 50%; height: 260px; position: absolute; top: -66px; width: 260px; }
.home-hero-orbit::after { border: 1px solid rgba(35, 131, 148, .2); border-radius: 50%; content: ''; inset: 18px; position: absolute; }
.home-hero-orbit-left { left: -114px; transform: rotate(-24deg); }
.home-hero-orbit-right { right: -114px; transform: rotate(24deg); }
.home-sport-tabs { background: #06151e; border-bottom: 1px solid rgba(35, 104, 114, .52); border-top: 1px solid rgba(35, 104, 114, .28); overflow-x: auto; }
.home-sport-tabs-inner { align-items: stretch; display: flex; margin: 0 auto; min-height: 67px; width: min(100%, 1180px); }
.home-sport-tab { align-items: center; appearance: none; background: transparent; border: 0; border-right: 1px solid rgba(35, 104, 114, .25); color: #92a4a5; cursor: pointer; display: flex; flex: 1 1 0; flex-direction: column; font: inherit; gap: 5px; justify-content: center; min-width: 0; padding: 8px 8px 7px; position: relative; transition: background .2s, color .2s; }
.home-sport-tab:first-child { border-left: 1px solid rgba(35, 104, 114, .25); }
.home-sport-tab::after { background: var(--sports-green); bottom: 0; box-shadow: 0 -2px 12px rgba(0, 229, 123, .45); content: ''; height: 2px; left: 25%; opacity: 0; position: absolute; right: 25%; transition: opacity .2s; }
.home-sport-tab:hover, .home-sport-tab.is-active { background: rgba(0, 229, 123, .06); color: var(--sports-green); }
.home-sport-tab.is-active::after { opacity: 1; }
.home-sport-icon { align-items: center; display: inline-flex; height: 23px; justify-content: center; }
.home-sport-icon svg { height: 21px; width: 21px; }
.home-sport-tab strong { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.05; max-width: 108px; text-align: center; text-transform: uppercase; }
.home-content { margin: 0 auto; max-width: 1120px; padding: 28px 24px 58px; }
.home-section + .home-section { margin-top: 32px; }
.home-section-heading, .home-panel-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 13px; }
.home-kicker { color: var(--sports-green); display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .16em; line-height: 1; text-transform: uppercase; }
.home-section-heading h2, .home-panel-heading h2 { color: #e8eeee; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: .03em; line-height: 1; margin: 7px 0 0; }
.home-section-link { align-items: center; border: 1px solid rgba(0, 229, 123, .65); clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 5px 100%, 0 50%); color: var(--sports-green); display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; gap: 7px; letter-spacing: .08em; padding: 6px 11px; text-transform: uppercase; transition: background .2s, color .2s; }
.home-section-link:hover { background: var(--sports-green); color: #032113; }
.home-section-link span { font-size: 16px; font-weight: 400; line-height: 8px; }
.home-tournament-grid { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-tournament-card { animation: home-card-rise .45s ease both; background: #071720; border: 1px solid rgba(35, 104, 114, .55); display: flex; flex-direction: column; min-width: 0; overflow: hidden; transition: border-color .2s, transform .2s; }
.home-tournament-card:nth-child(2) { animation-delay: .06s; }
.home-tournament-card:nth-child(3) { animation-delay: .12s; }
.home-tournament-card:nth-child(4) { animation-delay: .18s; }
.home-tournament-card[hidden] { display: none; }
.home-tournament-card:hover { border-color: rgba(0, 229, 123, .8); transform: translateY(-3px); }
.home-tournament-image { aspect-ratio: 1.75 / 1; background: #0b202a; overflow: hidden; position: relative; }
.home-tournament-image::after { background: linear-gradient(180deg, transparent 45%, rgba(1, 10, 16, .72)); content: ''; inset: 0; position: absolute; }
.home-tournament-image img { height: 100%; object-fit: cover; transition: transform .4s ease; width: 100%; }
.home-tournament-card:hover .home-tournament-image img { transform: scale(1.04); }
.home-filter-empty { color: #9eb0b1; font-family: 'DM Sans', sans-serif; font-size: 12px; margin: 0; padding: 28px 16px; text-align: center; }
.home-tournament-status { align-items: center; background: rgba(2, 12, 18, .78); border: 1px solid; display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; gap: 5px; left: 8px; letter-spacing: .08em; padding: 4px 7px; position: absolute; text-transform: uppercase; top: 8px; z-index: 1; }
.home-tournament-status i { background: currentColor; border-radius: 50%; height: 5px; width: 5px; }
.home-tournament-status-live { border-color: var(--sports-green); color: var(--sports-green); }
.home-tournament-status-next { border-color: #54baff; color: #70c7ff; }
.home-tournament-status-result { border-color: rgba(170, 193, 194, .42); color: #b1c3c3; }
.home-tournament-symbol { align-items: center; background: rgba(4, 20, 28, .8); border: 1px solid rgba(0, 229, 123, .7); bottom: -10px; clip-path: polygon(50% 0, 91% 18%, 84% 78%, 50% 100%, 16% 78%, 9% 18%); color: var(--sports-green); display: inline-flex; height: 39px; justify-content: center; position: absolute; right: 10px; width: 39px; z-index: 1; }
.home-tournament-symbol svg { height: 21px; width: 21px; }
.home-tournament-body { display: flex; flex: 1; flex-direction: column; padding: 14px 11px 10px; }
.home-tournament-category { color: #84999b; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.home-tournament-body h3 { color: #edf5f3; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.15; margin: 6px 0 8px; }
.home-tournament-location { align-items: center; color: #829799; display: flex; font-family: 'DM Sans', sans-serif; font-size: 9px; gap: 4px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-tournament-location svg { color: var(--sports-green); flex: 0 0 12px; height: 12px; width: 12px; }
.home-tournament-meta { align-items: center; border-top: 1px solid rgba(35, 104, 114, .34); color: #8ca0a2; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; gap: 9px; letter-spacing: .04em; margin-top: auto; padding-top: 10px; text-transform: uppercase; }
.home-tournament-meta span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-tournament-meta a { align-items: center; border: 1px solid rgba(0, 229, 123, .65); border-radius: 50%; color: var(--sports-green); display: inline-flex; flex: 0 0 22px; font-family: 'DM Sans', sans-serif; font-size: 15px; height: 22px; justify-content: center; line-height: 1; margin-left: auto; width: 22px; }
.home-tournament-meta a:hover { background: var(--sports-green); color: #032113; }
.home-inline-state { align-items: center; background: rgba(7, 23, 32, .84); border: 1px solid rgba(35, 104, 114, .5); display: flex; gap: 12px; min-height: 72px; padding: 14px 18px; }
.home-inline-state-icon { align-items: center; border: 1px solid rgba(0, 229, 123, .55); color: var(--sports-green); display: inline-flex; flex: 0 0 28px; font-family: 'Space Grotesk', sans-serif; font-size: 18px; height: 28px; justify-content: center; }
.home-inline-state p { color: #9eb0b1; font-family: 'DM Sans', sans-serif; font-size: 11px; margin: 0; }
.home-inline-state-compact { min-height: 58px; }
.home-match-list { border: 1px solid rgba(35, 104, 114, .46); }
.home-match-row { align-items: center; background: linear-gradient(90deg, rgba(7, 23, 32, .97), rgba(5, 18, 27, .92)); display: grid; gap: 12px; grid-template-columns: minmax(0, 1.25fr) 132px minmax(0, 1.25fr) 90px; min-height: 59px; padding: 5px 12px; }
.home-match-row + .home-match-row { border-top: 1px solid rgba(35, 104, 114, .28); }
.home-match-team { align-items: center; display: flex; gap: 8px; min-width: 0; }
.home-match-team-home { justify-content: flex-end; text-align: right; }
.home-match-team-away { text-align: left; }
.home-match-team > div { min-width: 0; }
.home-match-team strong { color: #dce8e5; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-match-team small { color: #9ab0b4; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .06em; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.home-match-sport-badge { align-items: center; background: rgba(0, 229, 123, .08); border: 1px solid rgba(0, 229, 123, .4); color: var(--sports-green); display: inline-flex; flex: 0 0 27px; height: 27px; justify-content: center; }
.home-match-sport-badge svg { height: 15px; width: 15px; }
.home-match-crest { align-items: center; background: #0a2530; border: 1px solid rgba(71, 132, 139, .55); border-radius: 50%; color: #a9d8ca; display: inline-flex; flex: 0 0 31px; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; height: 31px; justify-content: center; overflow: hidden; width: 31px; }
.home-match-crest img { height: 100%; object-fit: contain; width: 100%; }
.home-match-crest span[hidden] { display: none; }
.home-match-center { align-items: center; display: flex; flex-direction: column; min-width: 0; }
.home-match-center > span { color: #a8c0c4; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.home-match-center > span b { color: var(--sports-green); font-weight: 500; margin: 0 3px; }
.home-match-center > strong { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; line-height: 1; margin-top: 5px; }
.home-match-center > strong b { color: #738a8c; font-size: 11px; font-weight: 500; margin: 0 6px; }
.home-match-link { align-items: center; border: 1px solid rgba(0, 229, 123, .6); color: var(--sports-green); display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; gap: 5px; justify-content: center; letter-spacing: .08em; padding: 5px 8px; text-transform: uppercase; }
.home-match-link:hover { background: var(--sports-green); color: #032113; }
.home-match-link span { font-size: 14px; font-weight: 400; line-height: 8px; }
.home-lower-grid { display: grid; gap: 10px; grid-template-columns: 1.03fr 1.22fr .96fr; margin-top: 32px; }
.home-panel { background: rgba(6, 21, 30, .84); border: 1px solid rgba(35, 104, 114, .48); min-width: 0; padding: 15px 14px 12px; }
.home-panel-heading { align-items: center; border-bottom: 1px solid rgba(35, 104, 114, .32); margin-bottom: 5px; padding-bottom: 10px; }
.home-panel-heading h2 { font-size: 18px; margin: 0; }
.home-panel-heading .home-section-link { font-size: 8px; padding: 5px 8px; }
.home-ranking-list { list-style: none; margin: 0; padding: 0; }
.home-ranking-list li { align-items: center; display: flex; gap: 8px; min-height: 39px; }
.home-ranking-list li + li { border-top: 1px solid rgba(35, 104, 114, .22); }
.home-ranking-position { align-items: center; border: 1px solid rgba(88, 135, 142, .42); border-radius: 50%; color: #b8c9c8; display: inline-flex; flex: 0 0 20px; font-family: 'DM Mono', monospace; font-size: 8px; height: 20px; justify-content: center; width: 20px; }
.home-ranking-position-1 { border-color: #79bd4d; color: #a5e47b; }
.home-ranking-position-2 { border-color: #78a6bb; color: #a2d2e5; }
.home-ranking-position-3 { border-color: #c69d48; color: #e3bd66; }
.home-ranking-crest { align-items: center; background: #0b2832; border: 1px solid rgba(71, 132, 139, .45); border-radius: 50%; color: #a9d8ca; display: inline-flex; flex: 0 0 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 7px; font-weight: 700; height: 24px; justify-content: center; overflow: hidden; width: 24px; }
.home-ranking-crest img { height: 100%; object-fit: contain; width: 100%; }
.home-ranking-list strong { color: #d7e2e0; flex: 1; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-ranking-points { color: #a1b4b4; font-family: 'DM Mono', monospace; font-size: 8px; white-space: nowrap; }
.home-panel-empty { color: #8fa4a5; font-family: 'DM Sans', sans-serif; font-size: 11px; line-height: 1.45; margin: 24px 4px 15px; }
.home-news-list { display: flex; flex-direction: column; }
.home-news-item { align-items: center; display: flex; gap: 9px; min-height: 54px; padding: 6px 0; }
.home-news-item + .home-news-item { border-top: 1px solid rgba(35, 104, 114, .22); }
.home-news-item:hover .home-news-copy strong { color: var(--sports-green); }
.home-news-image { align-items: center; background: #0b2832; border: 1px solid rgba(71, 132, 139, .4); color: var(--sports-green); display: inline-flex; flex: 0 0 49px; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800; height: 43px; justify-content: center; overflow: hidden; width: 49px; }
.home-news-image img { height: 100%; object-fit: cover; width: 100%; }
.home-news-copy { display: flex; flex-direction: column; min-width: 0; }
.home-news-meta { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 7px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-news-copy strong { color: #dae6e3; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; line-height: 1.1; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-news-copy small { color: #748a8d; font-family: 'DM Sans', sans-serif; font-size: 8px; line-height: 1.2; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-news-empty { align-items: center; display: flex; flex-direction: column; padding: 19px 5px 11px; text-align: center; }
.home-news-empty-icon { align-items: center; border: 1px solid rgba(0, 229, 123, .42); color: var(--sports-green); display: inline-flex; height: 31px; justify-content: center; width: 31px; }
.home-news-empty-icon svg { height: 17px; width: 17px; }
.home-news-empty p { color: #93a7a8; font-family: 'DM Sans', sans-serif; font-size: 10px; margin: 10px 0 8px; }
.home-news-empty a { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.home-news-empty a span { font-size: 14px; margin-left: 4px; }
.home-join-panel { align-items: center; background: linear-gradient(145deg, rgba(4, 26, 30, .96), rgba(3, 15, 23, .96)); border: 1px solid rgba(0, 229, 123, .62); display: flex; flex-direction: column; justify-content: center; min-height: 218px; overflow: hidden; padding: 20px 14px; position: relative; text-align: center; }
.home-join-panel::before { background: linear-gradient(135deg, rgba(0, 229, 123, .12), transparent 42%); content: ''; inset: 0; pointer-events: none; position: absolute; }
.home-join-kicker { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .15em; position: relative; text-transform: uppercase; }
.home-join-panel h2 { color: #e8eeee; font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 600; line-height: .98; margin: 9px 0 4px; position: relative; text-transform: uppercase; }
.home-join-panel h2 strong { color: var(--sports-green); font-weight: 700; }
.home-join-trophy { color: rgba(0, 229, 123, .8); height: 70px; margin: 4px 0 7px; position: relative; width: 63px; }
.home-join-button { border: 1px solid rgba(0, 229, 123, .72); clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%); color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .08em; padding: 7px 17px; position: relative; text-transform: uppercase; }
.home-join-button:hover { background: var(--sports-green); color: #032113; }
.home-join-button span { font-size: 15px; font-weight: 400; margin-left: 6px; }
@keyframes home-hero-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes home-card-rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.home-footer { padding-top: 0; }
.home-footer-columns { border-bottom: 1px solid rgba(38, 87, 97, .32); display: grid; gap: 20px; grid-template-columns: 1.35fr .72fr .92fr 1.12fr 1.25fr; padding: 22px 0 19px; }
.home-footer-brand { min-width: 0; }
.home-footer-brand > img { height: 34px; max-width: 118px; object-fit: contain; object-position: left center; width: auto; }
.home-footer-brand p { color: #71858a; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; line-height: 1.35; margin: 9px 0 0; max-width: 175px; }
.home-footer-social { display: flex; gap: 6px; margin-top: 10px; }
.home-footer-social a { align-items: center; border: 1px solid #315a62; border-radius: 3px; color: #94aeb0; display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; height: 20px; justify-content: center; width: 20px; }
.home-footer-social a:hover { border-color: var(--sports-green); color: var(--sports-green); }
.home-footer-column, .home-footer-newsletter { display: flex; flex-direction: column; min-width: 0; }
.home-footer-column strong, .home-footer-newsletter strong { color: #d3dcdc; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; margin-bottom: 9px; text-transform: uppercase; }
.home-footer-column a, .home-footer-column span { color: #71858a; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; line-height: 1.6; }
.home-footer-column a:hover, .home-footer-contact a:hover { color: var(--sports-green); }
.home-footer-contact span, .home-footer-contact a { line-height: 1.35; margin-bottom: 5px; }
.home-footer-addresses { display: flex; flex-direction: column; gap: 7px; }
.home-footer-addresses span { margin-bottom: 0; }
.home-footer-addresses b { color: #a7bbbc; font-weight: 700; }
.home-footer-contact i { color: var(--sports-green); font-style: normal; margin-right: 5px; }
.home-footer-newsletter p { color: #71858a; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; line-height: 1.35; margin: 0 0 9px; }
.home-footer-newsletter form { display: flex; height: 25px; }
.home-footer-newsletter input { background: #081822; border: 1px solid #36515a; color: #dbe8e7; font-family: 'DM Sans', sans-serif; font-size: 9px; min-width: 0; padding: 0 8px; width: calc(100% - 29px); }
.home-footer-newsletter input::placeholder { color: #60757a; }
.home-footer-newsletter button { background: var(--sports-green); border: 0; color: #032113; cursor: pointer; font-size: 16px; line-height: 1; width: 29px; }
.home-footer-newsletter button:hover { background: #76ffb7; }
.home-footer-bottom { align-items: center; color: #5b7177; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; justify-content: space-between; padding: 11px 0; }
.idb-footer { background: #04111a; border-top: 1px solid rgba(35, 110, 121, .42); padding: 0 max(24px, calc((100vw - 1100px) / 2)); }
.footer-emblem { align-items: center; background: #061722; border: 1px solid rgba(0, 229, 123, .4); clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%); display: flex; gap: 7px; margin: -17px auto 18px; padding: 6px 20px 6px 16px; position: relative; width: max-content; }
.footer-emblem-logo { display: block; height: 38px; object-fit: contain; width: auto; }
.footer-emblem .idb-shield { height: 28px; width: 24px; }
.footer-emblem strong { font-size: 18px; }
.footer-emblem small { font-size: 5px; }
.footer-columns { border-bottom: 1px solid rgba(38, 87, 97, .32); display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 0 23px; }
.footer-column { align-items: flex-start; border-right: 1px solid rgba(38, 87, 97, .32); display: flex; gap: 10px; min-height: 53px; padding: 4px 20px; }
.footer-column:first-child { padding-left: 0; }
.footer-column:last-child { border-right: 0; padding-right: 0; }
.footer-icon { align-items: center; color: var(--sports-green); display: inline-flex; flex: 0 0 23px; justify-content: center; }
.footer-icon svg { height: 21px; width: 21px; }
.footer-contact-logo { display: block; height: 30px; max-width: 130px; object-fit: contain; object-position: left center; width: auto; }
.footer-column strong { color: #d3dcdc; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-column p { color: #71858a; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; line-height: 1.35; margin: 6px 0 0; }
.footer-column p a:hover { color: var(--sports-green); }
.footer-address-content { min-width: 0; }
.footer-address-list { margin: 9px 0 0; }
.footer-address-list div { margin-bottom: 8px; }
.footer-address-list div:last-child { margin-bottom: 0; }
.footer-address-list strong { color: #cbd7d7; font-size: 9px; }
.footer-address-list span { color: #71858a; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; line-height: 1.35; margin-top: 2px; }
.social-links { display: flex; gap: 7px; margin-top: 8px; }
.social-links a { align-items: center; border: 1px solid #3e656c; border-radius: 50%; color: #a8b7b8; display: inline-flex; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; height: 22px; justify-content: center; width: 22px; }
.social-links a:hover { border-color: var(--sports-green); color: var(--sports-green); }
.social-links a svg { height: 12px; width: 12px; }
.footer-newsletter { align-items: center; border-bottom: 1px solid rgba(38, 87, 97, .32); display: flex; justify-content: space-between; padding: 14px 0; }
.footer-newsletter strong { color: #cbd7d7; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-newsletter span { color: #71858a; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; margin-top: 3px; }
.footer-newsletter form { display: flex; height: 28px; width: 370px; }
.footer-newsletter input { background: #081822; border: 1px solid #36515a; color: #dbe8e7; font-family: 'DM Sans', sans-serif; font-size: 10px; min-width: 0; padding: 0 11px; width: 70%; }
.footer-newsletter input::placeholder { color: #60757a; }
.footer-newsletter button { background: var(--sports-green); border: 0; color: #032113; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; width: 30%; }
.footer-newsletter button:hover { background: #76ffb7; }
.footer-bottom { align-items: center; color: #5b7177; display: flex; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; justify-content: space-between; padding: 13px 0; }
.footer-bottom a:hover { color: var(--sports-green); }
.footer-bottom i { font-style: normal; margin: 0 10px; }
.sr-only { height: 1px; margin: -1px; overflow: hidden; position: absolute; width: 1px; clip: rect(0, 0, 0, 0); }

@media (max-width: 860px) {
    .idb-header { padding-left: 18px; padding-right: 18px; }
    .idb-nav { gap: 0; margin-right: 15px; }
    .idb-nav a { font-size: 9px; padding-left: 7px; padding-right: 7px; }
    .fixture-card { grid-template-columns: minmax(0, 1fr) 168px minmax(0, 1fr); padding-left: 22px; padding-right: 22px; }
    .fixture-team strong { font-size: 13px; }
    .championship-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .championship-detail-layout { grid-template-columns: 1fr; }
    .championship-bracket { grid-template-columns: 1fr; }
    .championship-standings-grid { grid-template-columns: 1fr; }
    .championship-standings-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
    .championship-standings-legend { flex-wrap: wrap; gap: 6px 12px; }
    .championship-bracket-stage--semifinals::before, .championship-bracket-stage--semifinals::after, .championship-bracket-stage--final::before, .championship-bracket-stage--final::after, .championship-bracket-champion::before { display: none; }
    .contact-unit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-card-featured { grid-template-columns: minmax(220px, .85fr) 1.15fr; }
    .home-tournament-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-lower-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-join-panel { grid-column: 1 / -1; min-height: 190px; }
    .home-footer-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
    .footer-column:nth-child(2) { border-right: 0; }
}
@media (max-width: 700px) {
    .idb-header { height: 58px; }
    .idb-nav { background: #06151e; border-bottom: 1px solid rgba(0, 229, 123, .25); display: none; flex-direction: column; height: auto; left: 0; margin: 0; padding: 8px 18px; position: absolute; right: 0; top: 57px; }
    .idb-header.menu-open .idb-nav { display: flex; }
    .idb-nav a { height: 36px; }
    .idb-nav a.is-active::after { bottom: 4px; left: 0; right: auto; width: 35px; }
    .tournament-nav-inner { justify-content: flex-start; min-width: max-content; padding-left: 14px; padding-right: 14px; }
    .tournament-nav a { padding-left: 11px; padding-right: 11px; }
    .tournament-nav a.is-active::after { left: 11px; right: 11px; }
    .header-icon { display: none; }
    .menu-toggle { display: block; }
    .sports-hero { min-height: 132px; }
    .contact-content { padding-left: 14px; padding-right: 14px; }
    .news-content { padding-left: 14px; padding-right: 14px; }
    .news-section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card-featured { display: flex; grid-column: auto; }
    .news-card-featured .news-card-image { min-height: 0; }
    .news-card-featured h3 { font-size: 21px; }
    .news-state { margin-top: 0; padding-left: 20px; padding-right: 20px; }
    .home-hero { min-height: 215px; }
    .home-hero h1 { font-size: 41px; }
    .home-hero p { font-size: 11px; }
    .home-hero p br { display: none; }
    .home-sport-tabs-inner { justify-content: start; margin: 0; min-width: max-content; width: max-content; }
    .home-sport-tab { flex: 0 0 112px; }
    .home-content { padding-left: 14px; padding-right: 14px; }
    .home-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .home-tournament-grid { grid-template-columns: 1fr; }
    .home-lower-grid { grid-template-columns: 1fr; }
    .home-join-panel { grid-column: auto; }
    .home-match-row { gap: 7px; grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr); padding: 7px 8px; }
    .home-match-team strong { font-size: 11px; }
    .home-match-team small { font-size: 7px; }
    .home-match-sport-badge { display: none; }
    .home-match-center > span { font-size: 7px; }
    .home-match-link { grid-column: 1 / -1; justify-self: end; }
    .home-footer-columns { grid-template-columns: 1fr 1fr; }
    .home-footer-brand, .home-footer-newsletter { grid-column: 1 / -1; }
    .home-footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
    .contact-section-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
    .contact-hours { border-left: 0; border-top: 1px solid rgba(0, 229, 123, .38); padding: 12px 0 0; width: 100%; }
    .contact-channel-grid, .contact-unit-grid { grid-template-columns: 1fr; }
    .contact-channel { min-height: 175px; }
    .contact-unit { min-height: 0; }
    .contact-units-heading { align-items: flex-start; }
    .championships-content { padding-left: 14px; padding-right: 14px; }
    .championship-detail-content { padding-left: 14px; padding-right: 14px; }
    .championship-detail-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .championship-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .championship-standings-grid { grid-template-columns: 1fr; }
    .championship-standings-heading { align-items: flex-start; flex-direction: column; gap: 9px; padding: 15px 14px 12px; }
    .championship-standings-legend { flex-wrap: wrap; gap: 6px 12px; }
    .championship-standings-grid { padding-left: 10px; padding-right: 10px; }
    .championship-team-groups { grid-template-columns: 1fr; }
    .championship-detail-panel-heading { padding-left: 16px; padding-right: 16px; }
    .championship-rules-hero { padding: 22px 18px 20px; }
    .championship-rules-hero::after { left: 18px; }
    .championship-rules-hero-main { align-items: flex-start; flex-direction: column; gap: 14px; }
    .championship-rules-hero-main > strong { align-self: flex-start; }
    .championship-rules-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 8px; }
    .championship-rules-highlight:nth-child(2) { border-right: 0; }
    .championship-rules-highlight:nth-child(-n + 2) { border-bottom: 1px solid rgba(35, 104, 114, .28); }
    .championship-rules-document-heading { align-items: flex-start; flex-direction: column; gap: 8px; padding: 22px 18px 14px; }
    .championship-rules-articles { grid-template-columns: 1fr; padding: 0 18px 20px; }
    .championship-rules-article.is-wide { grid-column: auto; }
    .championship-detail-fixtures { padding: 8px; }
    .championship-grid { grid-template-columns: 1fr; }
    .championship-card { min-height: 0; }
    .championship-card-top { padding-left: 16px; padding-right: 16px; }
    .championship-card-body { padding-left: 16px; padding-right: 16px; }
    .championship-card-meta { padding-left: 16px; padding-right: 16px; }
    .championship-card-footer { padding-left: 16px; padding-right: 16px; }
    .championship-directory .section-header { align-items: flex-start; flex-direction: column; gap: 12px; }
    .championship-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .directory-championship-header { flex-direction: column; padding: 20px; }
    .directory-tags { justify-content: flex-start; }
    .directory-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .directory-metric:nth-child(2) { border-right: 0; }
    .directory-metric:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
    .directory-groups { padding-left: 14px; padding-right: 14px; }
    .directory-groups-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .directory-group { overflow-x: auto; }
    .directory-group table { min-width: 390px; }
    .sports-content { padding-left: 14px; padding-right: 14px; }
    .sports-filters { gap: 4px; }
    .sports-filter { font-size: 9px; min-width: 0; padding: 9px 10px; }
    .fixture-card { clip-path: none; display: grid; grid-template-columns: 1fr 116px 1fr; min-height: 74px; padding: 0 10px; }
    .championship-detail-fixture { min-height: 106px; padding: 10px 10px 0; }
    .fixture-team { gap: 6px; }
    .fixture-team strong { font-size: 12px; }
    .team-crest { flex-basis: 35px; height: 37px; width: 35px; }
    .team-crest span { font-size: 9px; }
    .fixture-score { font-size: 18px; gap: 7px; }
    .fixture-meta { font-size: 8px; }
    .fixture-venue { font-size: 7px; max-width: 112px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .championship-heading { min-height: 54px; padding-left: 14px; padding-right: 12px; }
    .championship-heading h4 { font-size: 12px; max-width: 230px; }
    .participation-badge { font-size: 8px; padding-left: 7px; padding-right: 7px; }
    .championship-content { padding-left: 8px; padding-right: 8px; }
    .footer-columns { grid-template-columns: 1fr; }
    .footer-column, .footer-column:nth-child(2) { border-bottom: 1px solid rgba(38, 87, 97, .32); border-right: 0; padding: 11px 0; }
    .footer-column:last-child { border-bottom: 0; }
    .footer-newsletter { align-items: stretch; flex-direction: column; gap: 12px; }
    .footer-newsletter form { width: 100%; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
.fixture-card.is-today { position: relative; border: 1px solid rgba(0, 229, 123, .5); background: linear-gradient(180deg, rgba(0, 229, 123, .1) 0%, rgba(10, 37, 48, .98) 100%); }
.fixture-card.is-today::before { content: 'HOJE'; position: absolute; top: 0; left: 0; background: var(--sports-green); color: #032113; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; padding: 3px 12px; }
.fixture-card.is-today .fixture-meta { color: #fff; font-weight: 700; font-size: 12px; }
.fixture-card.is-today .fixture-meta span { color: var(--sports-green); }
.fixture-card.is-today .fixture-venue { color: #c8d8dc; font-weight: 500; }
.fixture-card.is-today .fixture-status { background: rgba(0, 229, 123, .2); color: #fff; border: 1px solid rgba(0, 229, 123, .6); font-weight: 600; }
.match-modal { background: transparent; border: none; padding: 0; max-width: 480px; width: 90%; }
.match-modal::backdrop { background: rgba(0, 0, 0, .7); backdrop-filter: blur(4px); }
.match-modal-inner { background: linear-gradient(180deg, #0f2d38 0%, #0a1f28 100%); border: 1px solid rgba(0, 229, 123, .3); border-radius: 12px; padding: 24px; position: relative; animation: modalSlideIn .3s ease-out; }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.match-modal-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.1); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.match-modal-close:hover { background: rgba(255,255,255,.2); }
.match-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.match-modal-sport { color: #7e9598; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.match-modal-status { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; }
.match-modal-status-scheduled { background: rgba(0, 229, 123, .15); color: var(--sports-green); }
.match-modal-status-live { background: rgba(255, 70, 70, .15); color: #ff4646; animation: livePulse 1.5s ease-in-out infinite; }
.match-modal-status-finished { background: rgba(255, 255, 255, .1); color: #8fa8ac; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }
.match-modal-body { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px 0; }
.match-modal-team { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; }
.match-modal-team strong { color: #dce8e5; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; text-align: center; line-height: 1.1; }
.match-modal-position { background: rgba(0, 229, 123, .12); color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.match-modal-crest { width: 80px; height: 80px; background: #0a2530; border: 2px solid rgba(0, 229, 123, .3); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; animation: crestAppear .5s ease-out; }
@keyframes crestAppear { from { transform: scale(0) rotate(-180deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.match-modal-crest-img { width: 100%; height: 100%; object-fit: contain; }
.match-modal-crest-fallback { color: #a9d8ca; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; }
.match-modal-vs { display: flex; align-items: center; justify-content: center; }
.match-modal-vs-text { color: var(--sports-green); font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; animation: vsPulse 2s ease-in-out infinite; }
@keyframes vsPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: .8; } }
.match-modal-footer { display: flex; justify-content: center; gap: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.match-modal-info { text-align: center; }
.match-modal-info-label { display: block; color: #7e9598; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.match-modal-info-value { color: #dce8e5; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; }
