* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #020202;
    --bg-soft: #0c0807;
    --panel: rgba(14, 10, 8, .94);
    --panel-2: rgba(21, 15, 12, .96);
    --panel-soft: rgba(255, 255, 255, .03);
    --gold: #d4a45a;
    --gold-light: #f1d59a;
    --gold-dark: #7f5524;
    --text: #eee2cf;
    --muted: #ae9f89;
    --muted-2: #7d6d59;
    --red: #cf564d;
    --red-line: rgba(207, 86, 77, .55);
    --red-soft: rgba(207, 86, 77, .18);
    --blue: #4f8ee6;
    --blue-line: rgba(79, 142, 230, .58);
    --blue-soft: rgba(79, 142, 230, .18);
    --line: rgba(212, 164, 90, .16);
    --line-strong: rgba(212, 164, 90, .3);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at left top, rgba(207, 86, 77, .24), transparent 22%),
        radial-gradient(circle at right top, rgba(79, 142, 230, .24), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.015), transparent 35%),
        linear-gradient(90deg, #180706 0%, #040303 24%, #000000 50%, #040608 76%, #08141d 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background:
        linear-gradient(90deg, rgba(207,86,77,.06), transparent 18%, transparent 82%, rgba(79,142,230,.06)),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

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

.site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
}

.site-header,
.page-shell,
.site-footer {
    width: min(1540px, calc(100% - 20px));
    margin: 0 auto;
}

.site-header {
    padding-top: 14px;
}

.header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.nav-wing {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 18%),
        linear-gradient(145deg, rgba(28, 20, 16, .92), rgba(10, 8, 7, .94));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 14px 28px rgba(0,0,0,.24);
}

.nav-wing.left {
    justify-content: flex-end;
}

.nav-wing.right {
    justify-content: flex-start;
}

.nav-wing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    color: var(--text);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 999px;
    transition:
        background-color .22s ease,
        color .22s ease,
        transform .22s ease;
}

.nav-wing a:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,.04);
    transform: translateY(-1px);
}

.header-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.header-logo {
    width: 208px;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter:
        drop-shadow(0 12px 22px rgba(0,0,0,.42))
        drop-shadow(0 0 18px rgba(212,164,90,.18));
}

.page-shell {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 18px 0 28px;
}

.championship-stage,
.content-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 18%),
        linear-gradient(145deg, rgba(25, 18, 14, .97), rgba(8, 7, 7, .98));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 20px 46px rgba(0,0,0,.26);
}

.championship-stage {
    padding: 30px 28px 24px;
    min-height: 720px;
}

.stage-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(.18)
        contrast(1.05)
        saturate(1.06);
}

.stage-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(207,86,77,.22), rgba(0,0,0,.46) 24%, rgba(0,0,0,.76) 50%, rgba(0,0,0,.46) 76%, rgba(79,142,230,.22)),
        radial-gradient(circle at center top, rgba(212,164,90,.04), transparent 20%);
}

.stage-top,
.stage-info-row,
.arena-board,
.stage-bottom,
.panel-head,
.teams-grid,
.rules-grid {
    position: relative;
    z-index: 1;
}

.stage-top {
    display: block;
}

.stage-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 12px;
}

.stage-kicker,
.panel-kicker,
.panel-label,
.stage-info-card span,
.reward-row span,
.summary-box span,
.player-class,
.player-level {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stage-kicker {
    color: var(--gold-light);
    font-size: .82rem;
    font-weight: 700;
}

.stage-title h1 {
    margin-top: 16px;
    color: #fff1c6;
    font-family: "Cinzel", serif;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: .92;
    letter-spacing: 4px;
    text-shadow:
        0 2px 0 #64411b,
        0 16px 36px rgba(0,0,0,.48);
}

.title-accent {
    display: block;
    margin-top: 10px;
    color: var(--gold-light);
    font-size: .38em;
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1;
    text-shadow:
        0 1px 0 rgba(100, 65, 27, .85),
        0 8px 20px rgba(0,0,0,.34);
}

.stage-subtitle {
    margin-top: 12px;
    color: #ebdecc;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stage-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    color: #d6c8b4;
    text-align: center;
}

.stage-info-card,
.bottom-panel,
.team-card,
.rule,
.match {
    background:
        linear-gradient(145deg, rgba(255,255,255,.03), rgba(0,0,0,.14));
}

.stage-info-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stage-info-text em {
    color: var(--muted);
    font-size: .68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.stage-info-text strong {
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1rem;
    line-height: 1;
}

.stage-info-separator {
    color: rgba(212,164,90,.52);
    font-size: .9rem;
    font-weight: 700;
}

.stage-markers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.stage-markers-compact {
    margin-top: 16px;
}

.stage-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0,0,0,.24);
    color: var(--text);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.stage-marker.red {
    border-color: rgba(207,86,77,.32);
    color: #f0b3ad;
}

.stage-marker.gold {
    border-color: rgba(212,164,90,.3);
    color: var(--gold-light);
}

.stage-marker.blue {
    border-color: rgba(79,142,230,.32);
    color: #bdd7ff;
}

.arena-board {
    position: relative;
    margin-top: 24px;
    padding: 28px 24px 26px;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(207,86,77,.09), rgba(0,0,0,.54) 26%, rgba(0,0,0,.84) 50%, rgba(0,0,0,.54) 74%, rgba(79,142,230,.09)),
        linear-gradient(145deg, rgba(19, 14, 12, .96), rgba(6, 6, 7, .98));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 24px 44px rgba(0,0,0,.28);
}

.event-overview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr .95fr .95fr;
    gap: 18px;
    margin-top: 28px;
    align-items: stretch;
}

.feature-panel {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.03), rgba(0,0,0,.14));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 16px 28px rgba(0,0,0,.18);
}

.feature-panel h2 {
    margin-top: 10px;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.08;
}

.feature-panel h3,
.arena-head h2 {
    margin-top: 8px;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1.35rem;
    line-height: 1.1;
}

.feature-panel p,
.panel-note {
    margin-top: 12px;
    color: #cfbea7;
    font-size: .92rem;
    line-height: 1.68;
}

.panel-lead,
.section-note,
.panel-mini-title {
    color: #eadcc8;
    font-size: .82rem;
    line-height: 1.6;
}

.panel-lead {
    margin-top: 14px;
    color: #f1e4d0;
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.72;
}

.section-note {
    max-width: 720px;
    margin-top: 10px;
    color: #cbbca6;
}

.panel-mini-title {
    margin-top: 10px;
}

.arena-head {
    margin-bottom: 18px;
    text-align: center;
}

.event-inline-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background-color .22s ease;
}

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

.hero-button.primary {
    border: 1px solid rgba(212,164,90,.34);
    color: #1f1408;
    background: linear-gradient(180deg, #f0d394, #c4934c);
}

.hero-button.secondary {
    border: 1px solid var(--line);
    color: var(--gold-light);
    background: rgba(255,255,255,.02);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.info-line {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    color: #d8c7b1;
    font-size: .9rem;
    line-height: 1.65;
}

.info-line strong {
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1rem;
}

.clan-tags {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.clan-tag {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.02);
}

.clan-tag span {
    display: block;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.clan-tag strong {
    display: block;
    margin-top: 8px;
    font-family: "Cinzel", serif;
    font-size: 1.26rem;
    color: var(--gold-light);
}

.clan-tag.red {
    border-color: rgba(207,86,77,.28);
    background: linear-gradient(145deg, rgba(207,86,77,.12), rgba(0,0,0,.1));
}

.clan-tag.blue {
    border-color: rgba(79,142,230,.28);
    background: linear-gradient(145deg, rgba(79,142,230,.12), rgba(0,0,0,.1));
}

.bracket-page-stage {
    min-height: 960px;
}

.bracket-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 0;
}

.bracket {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(176px, 15vw, 220px) minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    width: 100%;
    align-items: stretch;
}

.bracket-stage {
    display: grid;
    align-items: stretch;
    min-height: 470px;
    gap: 12px;
    min-width: 0;
}

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

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

.bracket-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-height: 470px;
    min-width: 0;
}

.bracket-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    min-width: 0;
}

.round-title {
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: .74rem;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.round-matches {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    min-width: 0;
}

.round-of-16 .round-matches {
    gap: 12px;
}

.quarterfinals .round-matches {
    gap: 0;
    justify-content: space-around;
}

.semifinals .round-matches {
    justify-content: center;
}

.grand-final .round-matches {
    justify-content: center;
    min-height: 150px;
}

.third-place .round-matches {
    justify-content: flex-start;
    min-height: 120px;
}

.match {
    position: relative;
    min-width: 0;
    padding: 10px;
    min-height: 118px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.03),
        0 10px 18px rgba(0,0,0,.16);
}

.left .match {
    border-color: rgba(207,86,77,.22);
}

.right .match {
    border-color: rgba(79,142,230,.22);
}

.center .match {
    border-color: rgba(212,164,90,.24);
}

.grand-final .round-title {
    font-size: .92rem;
    letter-spacing: 2.6px;
}

.grand-final .match {
    border-color: rgba(241,213,154,.34);
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(0,0,0,.14)),
        radial-gradient(circle at top, rgba(212,164,90,.08), transparent 70%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 0 0 1px rgba(212,164,90,.12),
        0 16px 28px rgba(0,0,0,.22);
}

.third-place .round-title {
    color: rgba(212,164,90,.78);
    font-size: .7rem;
}

.third-place .match {
    min-height: 108px;
    border-color: rgba(212,164,90,.14);
    opacity: .82;
    background:
        linear-gradient(145deg, rgba(255,255,255,.03), rgba(0,0,0,.14));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.02),
        0 8px 16px rgba(0,0,0,.12);
}

.left .match::after,
.right .match::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
}

.left .match::after {
    right: -18px;
    background: var(--red-line);
}

.right .match::after {
    left: -18px;
    background: var(--blue-line);
}

.left-stage::after,
.right-stage::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    transform: translateY(-50%);
}

.left-stage::after {
    right: -24px;
    background: linear-gradient(90deg, var(--red-line), rgba(212,164,90,.26));
}

.right-stage::after {
    left: -24px;
    background: linear-gradient(90deg, rgba(212,164,90,.26), var(--blue-line));
}

.match-number {
    margin-bottom: 6px;
    color: var(--muted-2);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.match-team {
    min-height: 38px;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    color: #decdb5;
    font-size: .68rem;
    font-weight: 700;
}

.match-team span {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-team + .match-team {
    margin-top: 6px;
}

.match-team.winner {
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    background: rgba(212,164,90,.14);
}

.match-team.eliminated {
    color: #756a5a;
    opacity: .62;
    text-decoration: line-through;
}

.match-vs {
    padding: 6px 0;
    color: var(--muted-2);
    font-size: .52rem;
    text-align: center;
    letter-spacing: 1.8px;
}

.stage-bottom {
    display: grid;
    grid-template-columns: 1.2fr .9fr .7fr;
    gap: 16px;
    margin-top: 22px;
    align-items: stretch;
}

.bottom-panel {
    min-height: 170px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 14px 28px rgba(0,0,0,.2);
}

.champion-panel {
    display: none;
}

.champion-panel.show {
    display: block;
}

.panel-label {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
}

.champion-name {
    margin-top: 10px;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    line-height: 1.02;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.podium-card {
    padding: 14px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
    background: rgba(255,255,255,.02);
}

.podium-position {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.podium-team {
    margin-top: 8px;
    color: var(--text);
    font-family: "Cinzel", serif;
    font-size: .98rem;
    font-weight: 900;
}

.first-place {
    border-color: rgba(241,213,154,.42);
    background: linear-gradient(145deg, rgba(212,164,90,.22), rgba(84,58,20,.12));
}

.first-place .podium-position,
.first-place .podium-team {
    color: var(--gold-light);
}

.second-place {
    border-color: rgba(189, 198, 214, .24);
    background: linear-gradient(145deg, rgba(189,198,214,.1), rgba(61,64,72,.08));
}

.third-place {
    border-color: rgba(194, 138, 99, .24);
    background: linear-gradient(145deg, rgba(194,138,99,.12), rgba(76,47,31,.08));
}

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.reward-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.02);
}

.reward-row span {
    color: var(--text);
    font-size: .78rem;
    font-weight: 700;
}

.reward-row strong {
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1.06rem;
}

.reward-row em {
    color: var(--muted);
    font-style: normal;
    font-size: .74rem;
}

.summary-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-box {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel-soft);
}

.summary-box span {
    display: block;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
}

.summary-box strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1.04rem;
}

.content-panel {
    padding: 24px;
}

.panel-head {
    margin-bottom: 18px;
}

.panel-kicker {
    display: block;
    color: #c8a76f;
    font-size: .66rem;
    font-weight: 700;
}

.panel-head h2 {
    margin-top: 6px;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    line-height: 1.02;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.team-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 12px 22px rgba(0,0,0,.18);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212,164,90,.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 18px 30px rgba(0,0,0,.22);
}

.team-header {
    padding: 18px 16px 14px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}

.team-name {
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: 1.18rem;
    font-weight: 800;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

.player {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 14px;
    background: rgba(255,255,255,.024);
}

.player img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    object-fit: contain;
}

.player-info {
    min-width: 0;
    flex: 1;
}

.player-name {
    color: #f4ebdd;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-class {
    margin-top: 3px;
    color: #cbb189;
    font-size: .6rem;
    font-weight: 600;
}

.player-level {
    margin-top: 3px;
    color: var(--gold-light);
    font-size: .6rem;
    font-weight: 700;
}

.team-status {
    margin: 0 12px 12px;
    padding: 10px 12px;
    border: 1px solid rgba(207,86,77,.18);
    border-radius: 14px;
    color: #f39c95;
    background: rgba(207,86,77,.08);
    text-align: center;
    font-size: .66rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.rule {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.rule-number {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: "Cinzel", serif;
    font-size: .72rem;
    font-weight: 800;
    background: rgba(212,164,90,.08);
}

.rule-text {
    color: #cebfaa;
    font-size: .82rem;
    line-height: 1.62;
}

.rule-text strong {
    color: #f1dfbc;
}

.site-footer {
    padding: 10px 0 26px;
    color: var(--muted-2);
    font-size: .7rem;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.sponsor-note {
    margin-top: 8px;
    color: rgba(174, 159, 137, .78);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: none;
}

.sponsor-note a {
    color: rgba(212, 164, 90, .82);
    text-decoration: none;
}

.sponsor-note a:hover {
    color: var(--gold-light);
}

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

@media (max-width: 1300px) {
    .stage-top,
    .stage-bottom {
        grid-template-columns: 1fr;
    }

    .event-overview-grid {
        grid-template-columns: 1fr;
    }

    .arena-board {
        padding: 28px 18px 22px;
    }

    .bracket {
        grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
        gap: 10px;
    }

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

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

    .bracket-stage,
    .bracket-center {
        min-height: 430px;
    }
}

@media (max-width: 980px) {
    .header-bar {
        grid-template-columns: 1fr;
    }

    .nav-wing.left,
    .nav-wing.right {
        justify-content: center;
    }

    .header-brand {
        margin: 0 auto;
    }

    .rules-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

    .stage-info-row {
        gap: 8px;
    }

    .stage-markers {
        gap: 8px;
    }

    .event-inline-stats {
        grid-template-columns: 1fr;
    }

    .championship-stage {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .site-header,
    .page-shell,
    .site-footer {
        width: calc(100% - 14px);
    }

    .header-logo {
        width: 156px;
    }

    .nav-wing {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-wing a {
        min-height: 38px;
        font-size: .72rem;
    }

    .championship-stage,
    .content-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .stage-title h1 {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }

    .title-accent {
        margin-top: 8px;
        letter-spacing: 5px;
    }

    .stage-kicker,
    .stage-subtitle {
        font-size: .74rem;
        letter-spacing: 1.4px;
    }

    .teams-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .stage-info-row {
        flex-direction: column;
        gap: 6px;
    }

    .stage-markers {
        flex-direction: column;
    }

    .stage-info-separator {
        display: none;
    }

    .arena-board {
        padding: 24px 14px 20px;
    }

    .bracket-shell {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
    }

    .bracket {
        min-width: 1020px;
    }
}
