:root {
    --bg: #07080b;
    --bg-soft: #0c0e13;
    --panel: #11141b;
    --panel-2: #171a22;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #f7f7f8;
    --muted: #9a9da8;
    --gold: #f2b632;
    --gold-bright: #ffd46b;
    --orange: #f97316;
    --blue: #1d4ed8;
    --success: #27d17f;
    --danger: #ff5263;
    --radius: 16px;
    --radius-small: 10px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --header-height: 112px;
}

/* Shared responsive filters */
.filter-clear {
    align-self: center;
    padding: 6px 4px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-clear:hover,
.filter-clear:focus-visible {
    color: #fff1bd;
}

.filter-more,
.filter-more-grid {
    display: contents;
}

.filter-more-toggle {
    display: none;
}

@media (max-width: 780px) {
    .filter-bar.responsive-filter {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: end;
        gap: 14px 12px;
        margin-left: 0;
        padding: 16px;
    }

    .filter-bar.responsive-filter > .filter-control,
    .filter-bar.responsive-filter .filter-more-grid > .filter-control {
        width: 100%;
        min-width: 0;
    }

    .filter-bar.responsive-filter input,
    .filter-bar.responsive-filter select {
        width: 100%;
        min-width: 0;
    }

    .filter-bar.responsive-filter .filter-priority-wide,
    .filter-bar.responsive-filter .filter-mobile-wide,
    .filter-bar.responsive-filter-single > .filter-control,
    .filter-bar.responsive-filter > .filter-more,
    .filter-bar.responsive-filter > .filter-clear {
        grid-column: 1 / -1;
    }

    .filter-bar.responsive-filter > .button {
        width: 100%;
        min-height: 43px;
        grid-column: 1 / -1;
    }

    .filter-bar.responsive-filter > .filter-clear {
        justify-self: center;
        padding: 0 4px;
    }

    .filter-bar.responsive-filter > .filter-more {
        display: block;
        min-width: 0;
        border: 1px solid var(--line-strong);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.018);
    }

    .filter-more-toggle {
        display: grid;
        width: 100%;
        min-height: 48px;
        grid-template-columns: minmax(0, 1fr) auto 14px;
        align-items: center;
        gap: 10px;
        padding: 11px 13px;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        font: inherit;
        text-align: left;
    }

    .filter-more-toggle > span:first-child {
        color: #f2f3f6;
        font-family: var(--display);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .filter-more-toggle small {
        overflow: hidden;
        color: var(--muted);
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .filter-more-icon {
        width: 9px;
        height: 9px;
        border-right: 2px solid var(--gold-bright);
        border-bottom: 2px solid var(--gold-bright);
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform 160ms ease;
    }

    .filter-more.is-open .filter-more-icon {
        transform: rotate(225deg) translate(-1px, -1px);
    }

    .filter-more-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 13px 13px;
        border-top: 1px solid var(--line);
    }

    .filter-more:not(.is-open) .filter-more-grid {
        display: none;
    }

    .filter-more-grid > .filter-control {
        padding-top: 12px;
    }
}

@media (max-width: 340px) {
    .filter-bar.responsive-filter,
    .filter-more-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar.responsive-filter > *,
    .filter-more-grid > * {
        grid-column: 1;
    }
}

/* Unified event match cards: one broadcast language for scheduled, live and final bouts. */
.event-bout-list {
    display: grid;
    gap: 14px;
}

.event-bout-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(205, 216, 236, 0.15);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%),
        rgba(16, 22, 32, 0.94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.event-bout-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: rgba(205, 216, 236, 0.12);
    content: "";
}

.event-bout-card.is-main-event {
    border-color: color-mix(in srgb, var(--brand-color) 48%, rgba(205, 216, 236, 0.18));
    background:
        radial-gradient(circle at 12% 5%, color-mix(in srgb, var(--brand-color) 13%, transparent), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 55%),
        rgba(16, 22, 32, 0.96);
    box-shadow: 0 19px 46px color-mix(in srgb, var(--brand-color) 7%, rgba(0, 0, 0, 0.28));
}

.event-bout-card.is-main-event::before {
    width: 4px;
    background: var(--brand-color);
    box-shadow: 0 0 20px color-mix(in srgb, var(--brand-color) 50%, transparent);
}

.event-bout-card.is-live {
    border-color: rgba(255, 82, 99, 0.34);
}

.event-bout-card.is-live::before {
    background: var(--danger);
}

.event-bout-header,
.event-bout-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 17px;
    background: rgba(3, 6, 10, 0.22);
}

.event-bout-header {
    border-bottom: 1px solid var(--line);
}

.event-bout-position {
    flex: 0 0 auto;
    color: color-mix(in srgb, var(--brand-color) 70%, white);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-bout-position > span {
    margin-right: 5px;
}

.event-bout-tags,
.event-bout-actions {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.event-bout-status {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 3px 8px;
    border: 1px solid rgba(96, 165, 250, 0.26);
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.1);
    color: #a8cfff;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.event-bout-status.is-final {
    border-color: rgba(39, 209, 127, 0.26);
    background: rgba(39, 209, 127, 0.08);
    color: #75dfa9;
}

.event-bout-status.is-live {
    border-color: rgba(255, 82, 99, 0.34);
    background: rgba(255, 82, 99, 0.1);
    color: #ff9aa4;
}

.event-bout-status.is-live::before {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 82, 99, 0.1);
    content: "";
}

.event-bout-status.is-pending {
    border-color: rgba(242, 182, 50, 0.3);
    background: rgba(242, 182, 50, 0.08);
    color: var(--gold-bright);
}

.event-bout-matchup {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(var(--bout-side-count), minmax(0, 1fr));
    align-items: stretch;
}

.event-bout-side {
    display: flex;
    min-width: 0;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 22px;
    text-align: center;
}

.event-bout-side + .event-bout-side {
    border-left: 1px solid var(--line);
}

.event-bout-card.is-main-event .event-bout-side {
    min-height: 158px;
    padding-block: 24px;
}

.event-bout-side.is-winner {
    background: radial-gradient(circle at 50% 70%, rgba(39, 209, 127, 0.095), transparent 62%);
}

.event-bout-side.is-defeated {
    opacity: 0.76;
    filter: saturate(0.72);
}

.event-bout-side-heading {
    display: flex;
    min-height: 22px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.event-bout-winner,
.event-bout-outcome {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #75dfa9;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-bout-outcome {
    color: #b7bbc4;
}

.event-bout-team {
    color: color-mix(in srgb, var(--brand-color) 64%, white);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.05;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.event-bout-team:hover {
    color: #fff;
}

.event-bout-competitors {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
}

.event-bout-competitor {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: #f0f1f4;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.event-bout-competitor:hover {
    color: color-mix(in srgb, var(--brand-color) 62%, white);
}

.event-bout-competitor > span:last-child,
.event-bout-snapshot {
    min-width: 0;
    overflow-wrap: anywhere;
}

.event-bout-snapshot {
    color: #e5e7eb;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-bout-vs {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--brand-color) 30%, var(--line));
    border-radius: 50%;
    background: #0b1018;
    color: #777c87;
    font-family: var(--display);
    font-size: 10px;
    font-style: italic;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.event-bout-footer {
    border-top: 1px solid var(--line);
}

.event-bout-meta {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.event-bout-meta strong {
    color: #e0e2e7;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.045em;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.event-bout-meta span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.event-bout-actions .text-link {
    font-size: 9px;
    white-space: nowrap;
}

.event-bout-centre {
    color: color-mix(in srgb, var(--brand-color) 68%, white);
}

.event-bout-details {
    border-top: 1px solid var(--line);
    background: rgba(3, 6, 10, 0.26);
}

.event-bout-details summary {
    padding: 9px 17px;
    color: #9fa4af;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-align: right;
    text-transform: uppercase;
}

.event-bout-details p {
    padding: 2px 17px 15px;
    margin: 0;
    color: #c6cad1;
    font-size: 12px;
    line-height: 1.6;
}

.event-bout-details p strong {
    margin-right: 8px;
    color: #fff;
    font-family: var(--display);
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .event-bout-header,
    .event-bout-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 14px;
    }

    .event-bout-tags,
    .event-bout-actions {
        justify-content: flex-start;
    }

    .event-bout-matchup.sides-3,
    .event-bout-matchup.sides-4,
    .event-bout-matchup.sides-5,
    .event-bout-matchup.sides-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-bout-matchup.sides-3 .event-bout-side:last-of-type,
    .event-bout-matchup.sides-5 .event-bout-side:last-of-type {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .event-bout-matchup.sides-3 .event-bout-side:nth-child(n + 3),
    .event-bout-matchup.sides-4 .event-bout-side:nth-child(n + 3),
    .event-bout-matchup.sides-5 .event-bout-side:nth-child(n + 3),
    .event-bout-matchup.sides-6 .event-bout-side:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .event-bout-matchup.sides-4 .event-bout-side:nth-child(odd),
    .event-bout-matchup.sides-5 .event-bout-side:nth-child(odd),
    .event-bout-matchup.sides-6 .event-bout-side:nth-child(odd) {
        border-left: 0;
    }

    .event-bout-matchup.sides-3 .event-bout-vs,
    .event-bout-matchup.sides-4 .event-bout-vs,
    .event-bout-matchup.sides-5 .event-bout-vs,
    .event-bout-matchup.sides-6 .event-bout-vs {
        display: none;
    }

    .event-bout-side,
    .event-bout-card.is-main-event .event-bout-side {
        min-height: 132px;
        padding: 17px 12px;
    }

    .event-bout-competitors {
        flex-direction: column;
        gap: 9px;
    }

    .event-bout-competitor {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
    }

    .event-bout-vs {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }
}

@media (max-width: 420px) {
    .event-bout-position {
        font-size: 10px;
    }

    .event-bout-tags {
        gap: 5px;
    }

    .event-bout-tags .title-chip,
    .event-bout-tags .match-type,
    .event-bout-status {
        font-size: 8px;
    }

    .event-bout-side,
    .event-bout-card.is-main-event .event-bout-side {
        min-height: 124px;
        padding: 15px 8px;
    }

    .event-bout-team {
        font-size: 13px;
    }

    .event-bout-competitor {
        font-size: 13px;
    }

    .event-bout-competitor .avatar-small {
        width: 34px;
        height: 34px;
    }

    .event-bout-actions {
        gap: 12px;
    }
}

/* Draft history */
.draft-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.draft-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    gap: 14px;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.draft-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 182, 50, 0.55);
}

.draft-card h2,
.draft-pick h2 {
    margin: 0;
    font-family: var(--display);
    text-transform: uppercase;
}

.draft-card-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.draft-card-meta strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 38px;
}

.draft-pick-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.draft-pick {
    position: relative;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}

.draft-pick::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--draft-brand, var(--gold));
    content: '';
}

.draft-pick-number {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.draft-pick-number strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 42px;
    line-height: 1;
}

.draft-pick-copy p {
    margin: 8px 0 0;
}

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

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

    .draft-card {
        min-height: 250px;
    }

    .draft-pick {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .draft-pick .button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Portal dashboard tabs and notification centre */
.portal-hero-compact .portal-hero-inner { min-height: 285px; }
.portal-hero-actions { display: flex; align-items: center; gap: 10px; }
.portal-hero-actions form { margin: 0; }
.portal-tabs-shell { z-index: 35; }
.portal-tabs .profile-tab { min-width: max-content; }
.portal-panel-transition { min-height: 420px; }
.portal-tab-section { overflow: clip; }
.portal-main-wide { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.portal-overview-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 22px; min-width: 0; }
.portal-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.portal-section-heading h2 { margin: 3px 0 0; font-size: clamp(32px, 4vw, 48px); }
.portal-section-heading p { max-width: 700px; margin: 5px 0 0; color: var(--muted); }
.portal-live-mark { color: var(--gold-bright); font-family: var(--display); font-weight: 900; letter-spacing: .16em; }
.portal-live-mark::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 12px rgba(255,82,99,.75); }
.portal-action-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin-bottom: 22px; }
.portal-action-card { position: relative; min-width: 0; padding: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-small); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent), var(--panel); color: var(--text); text-decoration: none; transition: border-color .18s ease, transform .18s ease; }
.portal-action-card:hover { transform: translateY(-2px); border-color: rgba(242,182,50,.45); }
.portal-action-card.is-urgent { border-color: rgba(242,182,50,.45); background: linear-gradient(145deg, rgba(242,182,50,.13), transparent 60%), var(--panel); }
.portal-action-card > span { display: block; color: var(--gold-bright); font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.portal-action-card > strong { display: block; margin: 6px 0 2px; font-family: var(--display); font-size: 40px; line-height: 1; }
.portal-action-card p { margin: 0; color: var(--muted); font-size: 13px; }
.portal-card-link { display: inline-flex; margin-top: 16px; }
.portal-status-list { display: grid; gap: 2px; margin-top: 15px; }
.portal-status-list > span { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.portal-status-list small { color: var(--muted); }
.portal-status-list strong { font-family: var(--display); font-size: 24px; }
.portal-callout-grid { display: grid; gap: 15px; }
.portal-feature-explainer { margin-top: 22px; }
.portal-step-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.portal-step-grid span { display: flex; align-items: center; gap: 11px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); }
.portal-step-grid strong { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; border-radius: 50%; background: rgba(242,182,50,.12); color: var(--gold-bright); font-family: var(--display); }
.portal-career-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.portal-career-workspace { padding-block: 32px 52px; }
.portal-career-tabs { display: flex; gap: 6px; margin-bottom: 18px; overflow-x: auto; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0, 0, 0, .22); scrollbar-width: thin; }
.portal-career-tab { min-width: max-content; padding: 11px 15px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); cursor: pointer; font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: background .18s ease, color .18s ease; }
.portal-career-tab:hover { color: var(--text); }
.portal-career-tab.active { background: rgba(242, 182, 50, .12); color: var(--gold-bright); box-shadow: inset 0 -2px var(--gold); }
.portal-career-tab:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -2px; }
.portal-career-panel[hidden] { display: none; }
.portal-career-panel.is-entering { animation: career-panel-in .2s ease both; }
.portal-career-panel .content-card { min-height: 0; }
.portal-career-panel > .section.container { width: 100%; max-width: none; padding: 0; }
.portal-career-panel > .progression-panel { padding-block: 0; }
@keyframes career-panel-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.portal-settings-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: start; gap: 22px; }
.portal-settings-account-column { display: grid; gap: 22px; align-content: start; min-width: 0; }
.portal-settings-card > p { margin-top: -5px; }
.portal-setting-toggle { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.portal-setting-toggle > span { display: flex; flex-direction: column; }
.portal-setting-toggle small { color: var(--muted); }
.portal-setting-toggle input { width: 21px; height: 21px; accent-color: var(--gold); }
.portal-setting-toggle.is-disabled { opacity: .5; cursor: not-allowed; }
.portal-settings-card > .button { margin-top: 20px; }

.notification-bell { position: relative; display: flex; flex: 0 0 auto; align-items: center; }
.notification-bell-button { position: relative; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: var(--text); cursor: pointer; }
.notification-bell-button:hover, .notification-bell-button[aria-expanded="true"] { border-color: rgba(242,182,50,.5); color: var(--gold-bright); }
.notification-bell-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notification-count { position: absolute; top: -7px; right: -7px; display: grid; min-width: 19px; height: 19px; padding: 0 4px; place-items: center; border: 2px solid var(--bg); border-radius: 10px; background: var(--danger); color: white; font-size: 9px; font-weight: 800; }
.notification-count.is-empty { display: none; }
.notification-popover { position: absolute; z-index: 100; top: calc(100% + 13px); right: 0; width: min(410px, calc(100vw - 28px)); overflow: hidden; border: 1px solid var(--line-strong); border-radius: 12px; background: #11141b; box-shadow: 0 28px 80px rgba(0,0,0,.58); color: var(--text); }
.notification-popover[hidden] { display: none; }
.notification-popover header { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.notification-popover h2 { margin: 0; font-size: 24px; }
.notification-popover-list { max-height: 390px; overflow-y: auto; }
.notification-popover-item { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 14px 17px; border-bottom: 1px solid var(--line); color: var(--text); text-decoration: none; }
.notification-popover-item:hover { background: rgba(255,255,255,.035); }
.notification-popover-item.is-unread { background: linear-gradient(90deg, rgba(242,182,50,.1), transparent 70%); }
.notification-popover-item > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.notification-popover-item strong { overflow: hidden; font-size: 13px; line-height: 1.4; text-overflow: ellipsis; }
.notification-popover-item small { color: var(--muted); font-size: 11px; }
.notification-popover footer a { display: flex; justify-content: space-between; padding: 14px 18px; color: var(--gold-bright); font-weight: 700; text-decoration: none; }
.notification-empty { display: flex; flex-direction: column; padding: 30px 20px; text-align: center; }
.notification-empty span { color: var(--muted); }
.notification-type { display: grid; width: 50px; min-height: 30px; padding: 4px; place-items: center; align-self: center; border: 1px solid rgba(242,182,50,.35); border-radius: 6px; background: rgba(242,182,50,.08); color: var(--gold-bright); font-family: var(--display); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.notification-type-news { border-color: rgba(249,115,22,.45); background: rgba(249,115,22,.1); color: #fb923c; }
.notification-type-match, .notification-type-matches, .notification-type-match-cards { border-color: rgba(29,78,216,.55); background: rgba(29,78,216,.12); color: #7da2ff; }
.notification-type-fight-night { border-color: rgba(255,82,99,.45); background: rgba(255,82,99,.1); color: #ff8b98; }
.notification-centre-hero .registration-hero-inner { min-height: 260px; }
.notification-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.notification-filters { display: flex; min-width: 0; gap: 5px; overflow-x: auto; padding-bottom: 3px; }
.notification-filters a { display: inline-flex; min-width: max-content; align-items: center; gap: 6px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); font-family: var(--display); font-weight: 800; text-decoration: none; text-transform: uppercase; }
.notification-filters a.active { border-color: rgba(242,182,50,.5); background: rgba(242,182,50,.1); color: var(--gold-bright); }
.notification-filters small { display: grid; min-width: 18px; height: 18px; place-items: center; border-radius: 9px; background: var(--danger); color: white; }
.notification-bulk-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 13px; }
.notification-bulk-actions form, .notification-item-actions form { margin: 0; }
.danger-text { color: #ff8b98 !important; }
.notification-centre-list { display: flex; flex-direction: column; gap: 8px; }
.notification-centre-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); }
.notification-centre-item.is-unread { border-color: rgba(242,182,50,.38); background: linear-gradient(100deg, rgba(242,182,50,.09), transparent 45%), var(--panel); }
.notification-centre-main { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 15px; align-items: center; min-width: 0; padding: 17px; color: var(--text); text-decoration: none; }
.notification-centre-main > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.notification-centre-main small { color: var(--gold-bright); font-family: var(--display); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.notification-centre-main strong { overflow-wrap: anywhere; }
.notification-centre-main time { color: var(--muted); font-size: 12px; }
.notification-item-actions { display: flex; align-items: center; gap: 12px; padding: 12px 17px; }
.notification-centre-empty { margin-top: 12px; }
.portal-action-toast { position: fixed; z-index: 200; right: 20px; bottom: 20px; max-width: min(390px, calc(100vw - 40px)); padding: 13px 17px; transform: translateY(12px); border: 1px solid rgba(242,182,50,.4); border-radius: 8px; background: #171a22; box-shadow: var(--shadow); opacity: 0; transition: .18s ease; }
.portal-action-toast.is-visible { transform: none; opacity: 1; }

@media (max-width: 980px) {
    .portal-overview-grid, .portal-settings-grid { grid-template-columns: 1fr; }
    .portal-settings-grid { display: flex; flex-direction: column; }
    .portal-settings-account-column { display: contents; }
    .portal-settings-grid > .portal-settings-card { order: 1; }
    .portal-settings-grid .portal-password-card { order: 2; }
    .portal-settings-grid > .portal-settings-card, .portal-settings-grid .portal-password-card, .portal-settings-grid .discord-account-card { width: 100%; }
    .portal-overview-grid .portal-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .portal-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .notification-toolbar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
    .portal-hero-compact .portal-hero-inner { min-height: auto; padding-block: 30px; }
    .portal-hero-actions { width: 100%; }
    .portal-hero-actions .button { flex: 1; }
    .portal-tabs-shell { position: sticky !important; top: var(--header-height, 70px) !important; }
    .portal-action-grid, .portal-career-summary, .portal-overview-grid .portal-sidebar { grid-template-columns: 1fr; }
    .portal-career-workspace { padding-block: 18px 34px; }
    .portal-career-tabs { margin-inline: -4px; margin-bottom: 12px; }
    .portal-career-tab { padding: 10px 12px; font-size: 12px; }
    .portal-career-panel .content-card { padding: 20px; }
    .portal-action-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 12px; align-items: center; }
    .portal-action-card > strong { grid-row: 1 / 3; grid-column: 2; font-size: 34px; }
    .portal-action-card p { grid-column: 1; }
    .portal-section-heading { align-items: flex-start; flex-direction: column; }
    .portal-step-grid { grid-template-columns: 1fr; }
    .notification-popover { position: fixed; top: 76px; right: 14px; left: 14px; width: auto; }
    .notification-centre-item { grid-template-columns: 1fr; }
    .notification-item-actions { justify-content: flex-end; padding-top: 0; }
    .notification-bulk-actions { width: 100%; flex-wrap: wrap; }
}

@media (max-width: 780px) {
    .nav-shell { gap: 10px; }
    .notification-bell { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .portal-action-card, .portal-action-toast { transition: none; }
}

/* Open match card registration */
.nav-notification-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px rgba(255, 205, 85, .7);
    vertical-align: top;
}

.portal-registration-callout,
.portal-challenge-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.portal-registration-callout {
    border-color: rgba(242, 182, 50, .3);
    background: linear-gradient(115deg, rgba(242, 182, 50, .09), transparent 55%), var(--panel);
}

.portal-registration-callout h2,
.portal-challenge-callout h2 { margin: 4px 0; }
.portal-registration-callout p,
.portal-challenge-callout p { margin: 0 0 9px; color: var(--muted); }

.registration-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 20% 50%, rgba(242, 182, 50, .13), transparent 30rem), #090b10;
}

.registration-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 55px;
}

.registration-hero h1 { margin: 7px 0; font-size: clamp(48px, 7vw, 86px); font-style: italic; }
.registration-hero p { max-width: 720px; margin: 0; color: var(--muted); }
.registration-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 22px; }
.registration-main, .registration-sidebar { display: flex; flex-direction: column; gap: 22px; }
.registration-event { padding: 0; overflow: hidden; border-top: 3px solid var(--brand-color); }
.registration-event-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px; }
.registration-event-header h2 { margin: 4px 0 0; font-size: 34px; }
.registration-event-header p, .registration-event-meta small { margin: 0; color: var(--muted); }
.registration-event-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; text-align: right; }
.registration-rule { margin: 0; padding: 11px 26px; border-block: 1px solid var(--line); background: rgba(242, 182, 50, .05); color: var(--muted); font-size: 12px; }
.registration-match { padding: 25px 26px; border-bottom: 1px solid var(--line); }
.registration-match:last-child { border-bottom: 0; }
.registration-match-heading { display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: start; }
.registration-time { color: var(--gold-bright); font-family: var(--display); font-size: 20px; font-weight: 800; }
.registration-match-heading small { color: var(--muted); text-transform: uppercase; }
.registration-match-heading h3 { margin: 0; font-size: 25px; }
.registration-match-heading p { margin: 0 0 6px; color: var(--muted); }
.registration-sides { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.registration-side > small { display: block; margin-bottom: 6px; color: var(--muted); text-transform: uppercase; }
.registration-slot { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 11px; min-height: 69px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #0c0f15; }
.registration-slot + .registration-slot { margin-top: 7px; }
.registration-slot > span { display: flex; flex-direction: column; }
.registration-slot small { color: var(--muted); }
.registration-open-mark { display: grid !important; width: 42px; height: 42px; place-items: center; border: 1px dashed rgba(242, 182, 50, .5); border-radius: 50%; color: var(--gold-bright); font-family: var(--display); font-size: 11px; font-weight: 800; }
.registration-rules { margin: 15px 0 0; padding-left: 20px; color: var(--muted); }
.registration-rules li + li { margin-top: 9px; }
.event-registration-banner { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; padding: 18px 20px; border: 1px solid rgba(242, 182, 50, .35); border-radius: 8px; background: rgba(242, 182, 50, .07); }
.event-registration-banner > div { display: flex; flex-direction: column; }
.event-registration-banner small { color: var(--muted); }
.public-open-position { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.public-open-position > span { padding: 2px 6px; border: 1px dashed rgba(242, 182, 50, .55); border-radius: 4px; color: var(--gold-bright); font-family: var(--display); font-size: 10px; }

@media (max-width: 900px) {
    .registration-layout { grid-template-columns: 1fr; }
    .registration-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .registration-hero-inner, .registration-event-header, .event-registration-banner, .portal-registration-callout, .portal-challenge-callout { align-items: flex-start; flex-direction: column; }
    .registration-event-meta { align-items: flex-start; text-align: left; }
    .registration-sides, .registration-sidebar { grid-template-columns: 1fr; }
    .registration-match-heading { grid-template-columns: 1fr; gap: 4px; }
    .registration-slot { grid-template-columns: auto minmax(0, 1fr); }
    .registration-slot form { grid-column: 1 / -1; }
    .registration-slot .button { width: 100%; }
}

/* Fight Night Challenge Board */
.challenge-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 16% 50%, color-mix(in srgb, var(--brand-color) 22%, transparent), transparent 34%),
        linear-gradient(118deg, #11151e 0%, #090b10 68%, #101520 100%);
}

.challenge-hero::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 34%;
    background: linear-gradient(135deg, transparent 15%, color-mix(in srgb, var(--brand-color) 13%, transparent) 15% 55%, transparent 55%);
    pointer-events: none;
}

.challenge-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.challenge-hero h1 {
    max-width: 900px;
    margin: .55rem 0 .8rem;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: .88;
}

.challenge-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.challenge-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.challenge-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    gap: 1.5rem;
    align-items: start;
}

.challenge-main,
.challenge-sidebar {
    min-width: 0;
    display: grid;
    gap: 1.5rem;
}

.challenge-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.challenge-field-wide {
    grid-column: 1 / -1;
}

.portal-field textarea,
.portal-field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0b0e14;
    color: var(--text);
    font: inherit;
    padding: .9rem 1rem;
}

.portal-field textarea {
    resize: vertical;
}

.portal-field small {
    color: var(--muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.challenge-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding-top: .25rem;
}

.challenge-submit-row p,
.challenge-rule {
    color: var(--muted);
    font-size: .88rem;
}

.challenge-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.challenge-card {
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--brand-color);
}

.challenge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--brand-color) 13%, transparent), transparent 35%);
    pointer-events: none;
}

.challenge-card > * {
    position: relative;
}

.challenge-card-topline,
.challenge-card-actions,
.challenge-notification-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
}

.challenge-card-topline > span {
    color: var(--muted);
    font-size: .78rem;
}

.challenge-matchup {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin: 1.4rem 0 1rem;
}

.challenge-matchup span {
    display: grid;
    gap: .15rem;
}

.challenge-matchup small,
.challenge-card-details,
.challenge-history-copy small,
.challenge-history-meta small,
.availability-row small,
.challenge-notification small {
    color: var(--muted);
}

.challenge-matchup strong {
    font-family: var(--display);
    font-size: 1.7rem;
    text-transform: uppercase;
}

.challenge-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.challenge-card-details span {
    padding: .35rem .55rem;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.challenge-card blockquote {
    margin: 1rem 0;
    padding: .9rem 1rem;
    border-left: 2px solid var(--brand-color);
    background: rgba(255, 255, 255, .025);
    color: #d8dbe2;
    font-style: italic;
}

.challenge-card-actions {
    justify-content: flex-start;
    margin-top: 1.1rem;
}

.challenge-count {
    min-width: 2.25rem;
    height: 2.25rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(242, 182, 50, .45);
    border-radius: 999px;
    color: var(--gold);
    font-weight: 800;
}

.challenge-empty {
    grid-column: 1 / -1;
}

.challenge-history-list,
.availability-list,
.challenge-notification-list {
    display: grid;
}

.challenge-history-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.challenge-status {
    display: inline-flex;
    justify-content: center;
    padding: .4rem .6rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.challenge-status-accepted,
.challenge-status-approved { color: var(--gold); border-color: rgba(242, 182, 50, .4); }
.challenge-status-booked,
.challenge-status-completed { color: #55d99a; border-color: rgba(85, 217, 154, .4); }
.challenge-status-declined,
.challenge-status-rejected,
.challenge-status-cancelled,
.challenge-status-expired { color: #ff7474; border-color: rgba(255, 116, 116, .35); }

.challenge-history-copy,
.challenge-history-meta,
.availability-row > span,
.challenge-notification {
    display: grid;
    gap: .2rem;
}

.challenge-history-meta {
    justify-items: end;
}

.text-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--gold);
    font: inherit;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.availability-form {
    display: grid;
    gap: .9rem;
    margin: 1.25rem 0;
}

.availability-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.availability-row {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding: .85rem 0;
    border-top: 1px solid var(--line);
}

.challenge-notification {
    padding: .85rem 0 .85rem 1rem;
    border-top: 1px solid var(--line);
    border-left: 2px solid transparent;
}

.challenge-notification.is-unread {
    border-left-color: var(--gold);
    background: linear-gradient(90deg, rgba(242, 182, 50, .06), transparent);
}

.challenge-read-form {
    padding-top: 1rem;
}

.challenge-rules-card ol {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--muted);
}

.challenge-rules-card li + li {
    margin-top: .7rem;
}

.portal-challenge-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-color: rgba(242, 182, 50, .32);
    background: linear-gradient(110deg, rgba(242, 182, 50, .08), rgba(16, 19, 27, .98) 46%);
}

.portal-challenge-callout h2 {
    margin: .25rem 0;
}

.portal-challenge-callout p {
    color: var(--muted);
}

@media (max-width: 1050px) {
    .challenge-layout {
        grid-template-columns: 1fr;
    }

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

    .challenge-rules-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .challenge-hero-inner {
        min-height: 280px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .challenge-hero-actions {
        justify-content: flex-start;
    }

    .challenge-form,
    .challenge-card-grid,
    .challenge-sidebar {
        grid-template-columns: 1fr;
    }

    .challenge-submit-row,
    .portal-challenge-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .challenge-history-row {
        grid-template-columns: 1fr;
    }

    .challenge-status {
        justify-self: start;
    }

    .challenge-history-meta {
        justify-items: start;
    }
}

/* Player portal */

.primary-nav .portal-nav-link {
    margin-left: 4px;
    padding-inline: 13px;
    border: 1px solid rgba(242, 182, 50, 0.35);
    border-radius: 6px;
    color: var(--gold-bright);
}

.primary-nav .portal-nav-link::after {
    display: none;
}

.primary-nav .portal-nav-link:hover,
.primary-nav .portal-nav-link.active {
    border-color: var(--gold);
    background: rgba(242, 182, 50, 0.1);
}

.portal-auth-section {
    position: relative;
    display: grid;
    min-height: calc(100vh - 74px);
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-block: 80px;
    background:
        linear-gradient(110deg, rgba(7, 8, 11, 0.96), rgba(7, 8, 11, 0.82)),
        repeating-linear-gradient(135deg, #0f1117 0, #0f1117 1px, #08090c 1px, #08090c 54px);
}

.portal-login-section {
    --portal-auth-arena: url("../images/home/arena-nwa-unleashed.webp");
    --portal-auth-arena-position: 62% 36%;
}

.portal-register-section {
    --portal-auth-arena: url("../images/home/arena-wrestle-empire.webp");
    --portal-auth-arena-position: 62% 38%;
}

.portal-login-section::before,
.portal-register-section::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 10, 16, .77), rgba(7, 10, 16, .85) 56%, rgba(7, 10, 16, .95)),
        linear-gradient(to bottom, rgba(7, 10, 16, .25), rgba(7, 10, 16, .82)),
        var(--portal-auth-arena) var(--portal-auth-arena-position) / cover no-repeat;
    filter: saturate(.78) contrast(1.04);
    transform: scale(1.01);
}

.portal-auth-glow {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 68%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(242, 182, 50, 0.13);
    filter: blur(120px);
    transform: translate(-50%, -50%);
}

.portal-auth-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
    gap: 90px;
}

.portal-auth-copy h1 {
    margin: 13px 0 22px;
    font-size: clamp(58px, 7vw, 92px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.portal-auth-copy p {
    max-width: 590px;
    color: #b7bac3;
    font-size: 17px;
}

.portal-form-card {
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-top-color: rgba(242, 182, 50, 0.55);
    border-radius: var(--radius);
    background: rgba(17, 20, 27, 0.94);
    box-shadow: var(--shadow);
}

.portal-form-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
}

.portal-form-heading h2,
.portal-password-card h2 {
    margin: 5px 0 0;
    font-size: 31px;
}

.portal-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 17px;
}

.portal-field > span {
    color: #c8cad0;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portal-field input {
    width: 100%;
    height: 49px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    outline: none;
    background: #090b0f;
    color: #fff;
}

.portal-field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    outline: none;
    resize: vertical;
    background: #090b0f;
    color: #fff;
    font: inherit;
}

.portal-field input[type="file"] {
    height: auto;
    min-height: 49px;
    padding: 11px 13px;
}

.portal-field small {
    color: var(--muted);
    font-family: var(--body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.portal-field input:focus,
.portal-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(242, 182, 50, 0.1);
}

.portal-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 17px 0 20px;
    color: var(--muted);
    font-size: 12px;
}

.portal-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}

.portal-submit {
    width: 100%;
}

.portal-register-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 650px);
    gap: 60px;
}

.portal-register-card {
    padding: 30px;
}

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

.portal-field-full {
    grid-column: 1 / -1;
}

.portal-register-card .portal-submit {
    margin-top: 22px;
}

.portal-help a {
    color: var(--gold-bright);
    font-weight: 700;
}

.portal-help {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.portal-alert {
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    font-size: 12px;
}

.portal-alert-error {
    border-color: rgba(255, 82, 99, 0.35);
    background: rgba(255, 82, 99, 0.1);
    color: #ff9ca6;
}

.portal-alert-success {
    border-color: rgba(39, 209, 127, 0.35);
    background: rgba(39, 209, 127, 0.1);
    color: #7ce9b2;
}

.discord-auth-button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-color: rgba(88, 101, 242, .75);
    background: #5865f2;
    color: #fff;
}

.discord-auth-button:hover {
    border-color: #7781f5;
    background: #4752c4;
}

.discord-auth-button svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.portal-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.portal-auth-divider::before,
.portal-auth-divider::after {
    height: 1px;
    flex: 1;
    background: var(--line-strong);
    content: '';
}

.discord-linked-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    padding: 13px;
    border: 1px solid rgba(88, 101, 242, .42);
    border-radius: 9px;
    background: rgba(88, 101, 242, .09);
}

.discord-linked-summary img,
.discord-avatar-fallback {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.discord-avatar-fallback {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    background: #5865f2;
    color: #fff;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 900;
}

.discord-linked-summary > div {
    display: grid;
    min-width: 0;
    flex: 1;
}

.discord-linked-summary strong,
.discord-linked-summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discord-linked-summary > div > span {
    color: var(--muted);
    font-size: 11px;
}

.discord-connected-badge {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(39, 209, 127, .13);
    color: #7ce9b2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.discord-disconnect-form .button,
.discord-account-card > .discord-auth-button {
    margin-top: 18px;
}

.discord-approval-callout {
    width: min(100%, 560px);
    margin: 24px auto 0;
    padding: 18px;
    border: 1px solid rgba(88, 101, 242, .42);
    border-radius: 10px;
    background: rgba(88, 101, 242, .09);
}

.discord-approval-callout strong {
    font-family: var(--display);
    font-size: 17px;
    text-transform: uppercase;
}

.discord-approval-callout p {
    margin: 7px 0 14px;
}

.discord-approval-callout.is-connected {
    border-color: rgba(39, 209, 127, .35);
    background: rgba(39, 209, 127, .08);
}

@media (max-width: 600px) {
    .discord-linked-summary {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .discord-connected-badge {
        margin-left: 58px;
    }
}

.portal-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 50%, color-mix(in srgb, var(--brand-color) 16%, transparent), transparent 27rem),
        #0a0c11;
}

.portal-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding-block: 55px;
}

.portal-identity {
    display: flex;
    align-items: center;
    gap: 30px;
}

.portal-identity h1 {
    margin: 8px 0 13px;
    font-size: clamp(44px, 6vw, 72px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.portal-identity-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px 20px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.portal-flash-wrap {
    padding-top: 22px;
}

.portal-stat-band {
    border-bottom: 1px solid var(--line);
    background: #0d0f14;
}

.portal-stat-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.portal-stat-grid > div {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.portal-stat-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.portal-stat-grid span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.portal-stat-grid strong {
    margin-top: 2px;
    font-family: var(--display);
    font-size: 28px;
}

.economy-stat strong {
    color: var(--gold-bright);
    font-size: clamp(18px, 1.7vw, 27px);
    text-align: center;
}

.nexus-wallet-card {
    overflow: hidden;
    border-color: rgba(242, 182, 50, 0.3);
    background:
        radial-gradient(circle at 100% 0, rgba(242, 182, 50, 0.14), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
        var(--panel);
}

.nexus-wallet-card h2 {
    margin: 8px 0 5px;
    color: var(--gold-bright);
    font-size: 35px;
}

.nexus-wallet-card > p {
    color: var(--muted);
}

.nexus-wallet-rate {
    display: flex;
    flex-direction: column;
    margin: 20px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.nexus-wallet-rate strong,
.nexus-wallet-summary strong {
    color: #fff;
    font-family: var(--display);
    font-size: 24px;
}

.nexus-wallet-rate small,
.nexus-wallet-summary small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nexus-wallet-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.nexus-wallet-summary > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.nexus-wallet-summary > span:last-child strong {
    color: var(--gold-bright);
}

.nexus-balance-pill {
    padding: 8px 12px;
    border: 1px solid rgba(242, 182, 50, 0.35);
    border-radius: 999px;
    background: rgba(242, 182, 50, 0.09);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.nexus-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.nexus-advantage-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
}

.nexus-advantage-card > span,
.nexus-advantage-card > small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nexus-advantage-card h3 {
    margin: 7px 0;
    font-size: 20px;
}

.nexus-advantage-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
}

.nexus-advantage-card.is-affordable {
    border-color: rgba(242, 182, 50, 0.42);
    background: rgba(242, 182, 50, 0.07);
}

.nexus-advantage-card.is-affordable > span,
.nexus-advantage-card.is-affordable > small {
    color: var(--gold-bright);
}

.nexus-history-list {
    margin: 18px -25px -25px;
}

.nexus-history-row {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 13px 25px;
    border-top: 1px solid var(--line);
}

.nexus-history-date,
.nexus-history-copy,
.nexus-history-amounts {
    display: flex;
    flex-direction: column;
}

.nexus-history-date,
.nexus-history-copy small,
.nexus-history-amounts small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nexus-history-copy strong,
.nexus-history-amounts strong {
    font-size: 13px;
}

.nexus-history-amounts {
    align-items: flex-end;
    gap: 3px;
    text-align: right;
}

.nexus-history-amounts .is-credit {
    color: #65dca0;
}

.nexus-history-amounts .is-debit {
    color: #ff8c98;
}

.portal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 22px;
}

.portal-main,
.portal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.portal-match-list {
    margin: 0 -25px -25px;
}

.portal-match-row {
    display: grid;
    min-height: 106px;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 15px 25px;
    border-top: 1px solid var(--line);
}

.portal-date-block,
.portal-match-copy {
    display: flex;
    flex-direction: column;
}

.portal-date-block {
    padding-right: 15px;
    border-right: 1px solid var(--line);
}

.portal-date-block strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 22px;
    text-transform: uppercase;
}

.portal-date-block small,
.portal-match-copy small,
.portal-match-copy > span {
    color: var(--muted);
    font-size: 10px;
}

.portal-match-copy strong {
    margin: 2px 0;
    font-family: var(--display);
    font-size: 19px;
    text-transform: uppercase;
}

.portal-match-tags {
    display: flex;
    max-width: 200px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.portal-password-card .portal-field {
    margin-top: 13px;
}

.portal-password-card .button {
    width: 100%;
    margin-top: 18px;
}

.portal-list-empty {
    margin: 14px 0 0;
}

.portal-empty-section {
    display: grid;
    min-height: calc(100vh - 250px);
    place-items: center;
}

.portal-unlinked {
    min-height: 390px;
}

.portal-unlinked h1 {
    margin-bottom: 13px;
    font-size: clamp(40px, 6vw, 62px);
}

.portal-empty-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.application-status {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.application-status-pending {
    border-color: rgba(242, 182, 50, 0.4);
    background: rgba(242, 182, 50, 0.1);
    color: var(--gold-bright);
}

.application-status-rejected {
    border-color: rgba(255, 82, 99, 0.4);
    background: rgba(255, 82, 99, 0.1);
    color: #ff9ca6;
}

@media (max-width: 1050px) {
    .portal-auth-wrap {
        gap: 45px;
    }

    .portal-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
    }

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

    .portal-stat-grid > div:nth-child(4) {
        border-right: 0;
    }

    .portal-stat-grid > div:nth-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 780px) {
    .portal-login-section::before,
    .portal-register-section::before {
        background:
            linear-gradient(to bottom, rgba(7, 10, 16, .7), rgba(7, 10, 16, .84) 50%, rgba(7, 10, 16, .97) 88%),
            linear-gradient(90deg, rgba(7, 10, 16, .72), rgba(7, 10, 16, .78)),
            var(--portal-auth-arena) center top / auto 760px no-repeat;
    }

    .trophy-grid,
    .trophy-progress-grid {
        grid-template-columns: 1fr;
    }

    .primary-nav .portal-nav-link {
        margin-left: 0;
    }

    .portal-auth-wrap,
    .portal-layout {
        grid-template-columns: 1fr;
    }

    .portal-register-wrap,
    .portal-form-grid {
        grid-template-columns: 1fr;
    }

    .portal-field-full {
        grid-column: auto;
    }

    .portal-auth-wrap {
        gap: 40px;
    }

    .portal-auth-copy {
        text-align: center;
    }

    .portal-auth-copy p {
        margin-inline: auto;
    }

    .portal-auth-copy h1 {
        font-size: 58px;
    }

    .portal-form-card {
        width: min(100%, 480px);
        margin-inline: auto;
    }

    .portal-hero-inner,
    .portal-identity {
        flex-direction: column;
        text-align: center;
    }

    .portal-identity-meta {
        justify-content: center;
    }

    .portal-hero-inner > form {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .portal-match-row {
        grid-template-columns: 65px minmax(0, 1fr);
    }

    .portal-match-tags {
        grid-column: 2;
        max-width: none;
        justify-content: flex-start;
    }

    .nexus-advantage-grid {
        grid-template-columns: 1fr;
    }

    .nexus-history-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .nexus-history-amounts {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .trophy-cabinet-heading {
        align-items: flex-start;
        gap: 12px;
    }

    .trophy-card {
        padding: 14px;
    }

    .trophy-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .portal-auth-section {
        padding-block: 50px;
    }

    .portal-auth-copy h1 {
        font-size: 48px;
    }

    .portal-form-card {
        padding: 24px;
    }

    .nexus-wallet-summary {
        grid-template-columns: 1fr;
    }

    .portal-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portal-stat-grid > div,
    .portal-stat-grid > div:nth-child(3) {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .portal-stat-grid > div:nth-child(even) {
        border-right: 0;
    }

    .portal-identity h1 {
        font-size: 45px;
    }

    .avatar-portal {
        width: 150px;
        height: 205px;
    }

    .portal-hero-inner > form {
        position: static;
    }

    .portal-match-row {
        grid-template-columns: 1fr;
        padding-inline: 20px;
    }

    .portal-date-block {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        padding: 0;
        border: 0;
    }

    .portal-match-tags {
        grid-column: auto;
    }

    .portal-empty-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-data: reduce) {
    .portal-login-section::before,
    .portal-register-section::before {
        display: none;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.07), transparent 26rem),
        radial-gradient(circle at 85% 25%, rgba(29, 78, 216, 0.07), transparent 28rem);
    content: "";
    pointer-events: none;
}

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

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

button,
input,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 0.98;
    text-transform: uppercase;
}

.site-shell {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

#main-content {
    min-width: 0;
    flex: 1 0 auto;
}

.site-footer {
    flex: 0 0 auto;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow-container {
    width: min(960px, 100%);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.muted {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 11, 0.9);
    backdrop-filter: blur(18px);
}

.site-utility-bar {
    min-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    background: rgba(255, 255, 255, 0.018);
}

.site-utility-shell {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nwa-social-links {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
}

.social-follow-label {
    margin-right: 5px;
    color: #777b87;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nwa-social-links a {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #8f939e;
    transition: 160ms ease;
}

.nwa-social-links a:hover {
    border-color: rgba(242, 182, 50, .35);
    background: rgba(242, 182, 50, .08);
    color: var(--gold-bright);
}

.nwa-social-links svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.site-account-actions {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 7px;
}

.utility-icon-link,
.utility-help-link {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #9297a3;
    transition: 160ms ease;
}

.utility-icon-link {
    width: 30px;
}

.utility-icon-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.utility-help-link {
    padding-inline: 8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.utility-icon-link:hover,
.utility-icon-link.active,
.utility-help-link:hover,
.utility-help-link.active {
    border-color: rgba(242, 182, 50, .32);
    background: rgba(242, 182, 50, .07);
    color: #fff;
}

.account-action {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    color: #c8cad1;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.account-action:hover,
.account-action.active {
    border-color: rgba(242, 182, 50, .5);
    color: #fff;
}

.account-signout-form {
    display: inline-flex;
    margin: 0;
}

.account-signout {
    gap: 6px;
    border-color: rgba(255, 255, 255, .13);
    background: transparent;
    cursor: pointer;
}

.account-signout svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.account-signout:hover,
.account-signout:focus-visible {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .055);
}

.account-join,
.account-portal {
    border-color: var(--gold);
    background: var(--gold);
    color: #111318;
}

.account-join:hover,
.account-join.active,
.account-portal:hover,
.account-portal.active {
    background: var(--gold-bright);
    color: #08090c;
}

.site-utility-bar .notification-bell-button {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.site-utility-bar .notification-bell-button svg { width: 16px; }
.site-utility-bar .notification-count { top: -6px; right: -7px; }

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

/* Public league ticker */
.league-ticker {
    position: relative;
    z-index: 20;
    overflow: hidden;
    border-bottom: 1px solid rgba(205, 216, 236, .13);
    background:
        linear-gradient(90deg, rgba(242, 182, 50, .055), transparent 24%, transparent 76%, rgba(47, 107, 255, .045)),
        rgba(8, 12, 18, .97);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.league-ticker-shell {
    display: grid;
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: stretch;
}

.league-ticker-identity {
    display: flex;
    min-width: 100px;
    align-items: center;
    gap: 7px;
    padding-right: 15px;
    border-right: 1px solid rgba(205, 216, 236, .12);
    color: #c6ccd7;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    white-space: nowrap;
}

.league-ticker-identity strong {
    color: var(--gold-bright);
}

.league-ticker-pulse,
.league-ticker-eyebrow i {
    display: block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 11px rgba(242, 182, 50, .5);
}

.league-ticker-viewport {
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}

.league-ticker-viewport::-webkit-scrollbar {
    display: none;
}

.league-ticker-viewport:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: -2px;
}

.league-ticker-viewport.is-dragging {
    scroll-behavior: auto;
    user-select: none;
}

.league-ticker-track {
    display: flex;
    min-width: max-content;
    align-items: stretch;
}

.league-ticker-item {
    position: relative;
    display: flex;
    width: clamp(235px, 24vw, 315px);
    min-width: clamp(235px, 24vw, 315px);
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 7px 18px 6px;
    border-right: 1px solid rgba(205, 216, 236, .11);
    color: #fff;
    text-decoration: none;
    transition: background 180ms ease;
}

.league-ticker-item::before {
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    width: 2px;
    background: var(--ticker-accent, var(--gold));
    box-shadow: 0 0 12px color-mix(in srgb, var(--ticker-accent, var(--gold)) 38%, transparent);
    content: "";
}

.league-ticker-item:hover,
.league-ticker-item:focus-visible {
    background:
        linear-gradient(100deg, color-mix(in srgb, var(--ticker-accent, var(--gold)) 11%, transparent), transparent 72%);
}

.league-ticker-item:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--ticker-accent, var(--gold)) 70%, white);
    outline-offset: -2px;
}

.league-ticker-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: color-mix(in srgb, var(--ticker-accent, var(--gold)) 66%, white);
    font-family: var(--display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.15;
    text-transform: uppercase;
}

.league-ticker-eyebrow i {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
    background: #ff5263;
    box-shadow: 0 0 10px rgba(255, 82, 99, .75);
}

.league-ticker-item > strong,
.league-ticker-item > small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.league-ticker-item > strong {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .015em;
    line-height: 1.12;
    text-transform: uppercase;
}

.league-ticker-item > small {
    color: #929baa;
    font-size: 9px;
    letter-spacing: .035em;
}

.league-ticker-controls {
    display: grid;
    min-width: 64px;
    grid-template-columns: repeat(2, 32px);
    border-left: 1px solid rgba(205, 216, 236, .12);
}

.league-ticker-controls button {
    display: grid;
    min-width: 32px;
    border: 0;
    border-left: 1px solid rgba(205, 216, 236, .08);
    background: rgba(255, 255, 255, .018);
    color: #969eac;
    cursor: pointer;
    font-family: var(--display);
    font-size: 24px;
    line-height: 1;
    place-items: center;
    transition: background 160ms ease, color 160ms ease;
}

.league-ticker-controls button:hover,
.league-ticker-controls button:focus-visible {
    background: rgba(242, 182, 50, .08);
    color: var(--gold-bright);
}

.league-ticker-controls button:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: -2px;
}

.nav-shell {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark {
    display: grid;
    width: 52px;
    height: 38px;
    place-items: center;
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, rgba(242, 182, 50, 0.2), transparent);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 22px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    transform: skewX(-7deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    font-family: var(--display);
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.04em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
}

.primary-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.primary-nav > a,
.nav-group-toggle {
    position: relative;
    padding: 10px 9px;
    border: 0;
    background: transparent;
    color: #b6b8c1;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 160ms ease;
}

.primary-nav > a::after,
.nav-group-toggle::after {
    position: absolute;
    right: 9px;
    bottom: 4px;
    left: 9px;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.5);
    transition: 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a.active,
.nav-group:hover > .nav-group-toggle,
.nav-group:focus-within > .nav-group-toggle,
.nav-group.active > .nav-group-toggle,
.nav-group.is-open > .nav-group-toggle {
    color: #fff;
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.nav-group:hover > .nav-group-toggle::after,
.nav-group:focus-within > .nav-group-toggle::after,
.nav-group.active > .nav-group-toggle::after,
.nav-group.is-open > .nav-group-toggle::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-group {
    position: relative;
}

.nav-group-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.nav-chevron {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.nav-group.is-open .nav-chevron,
.nav-group:hover .nav-chevron,
.nav-group:focus-within .nav-chevron {
    transform: translateY(1px) rotate(225deg);
}

.nav-group-menu {
    position: absolute;
    z-index: 60;
    top: calc(100% + 8px);
    left: 50%;
    display: grid;
    min-width: 205px;
    padding: 8px;
    transform: translate(-50%, -5px);
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: rgba(12, 15, 22, .98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
    pointer-events: none;
}

.nav-group-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 9px;
    content: "";
}

.nav-group:hover > .nav-group-menu,
.nav-group:focus-within > .nav-group-menu,
.nav-group.is-open > .nav-group-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-group-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #b9bec9;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: 150ms ease;
}

.nav-group-menu a:hover,
.nav-group-menu a.active {
    background: rgba(255, 255, 255, .055);
    color: #fff;
}

.nav-menu-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #7f8795;
    transition: color 150ms ease, transform 150ms ease, filter 150ms ease;
}

.nav-group-menu a:hover .nav-menu-icon,
.nav-group-menu a.active .nav-menu-icon {
    color: var(--gold-bright);
    filter: drop-shadow(0 0 6px rgba(242, 182, 50, .26));
    transform: translateX(1px);
}

.nav-brand-menu {
    right: 0;
    left: auto;
    min-width: 196px;
}

.nav-group:hover > .nav-brand-menu,
.nav-group:focus-within > .nav-brand-menu,
.nav-group.is-open > .nav-brand-menu {
    transform: translate(0, 0);
}

.nav-brand-menu {
    transform: translate(0, -5px);
}

.brand-nav-swatch {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 2px;
    background: var(--brand-color);
    box-shadow: 0 0 9px color-mix(in srgb, var(--brand-color) 65%, transparent);
}

.nav-group-menu .brand-nav-link--logo {
    min-height: 54px;
    justify-content: center;
    padding-block: 7px;
}

.brand-nav-logo-wrap {
    display: grid;
    width: 124px;
    height: 38px;
    place-items: center;
}

.brand-nav-logo-wrap .brand-nav-logo {
    width: auto;
    height: auto;
    max-width: 118px;
    max-height: 36px;
    opacity: 0.88;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.38));
    transition: opacity 150ms ease, filter 150ms ease, transform 150ms ease;
}

.brand-nav-link--impact .brand-nav-logo-wrap {
    height: 42px;
}

.brand-nav-link--impact .brand-nav-logo {
    max-width: 72px;
    max-height: 42px;
}

.brand-nav-link--lockdown .brand-nav-logo {
    max-width: 122px;
    max-height: 34px;
}

.nav-group-menu .brand-nav-link--logo:hover .brand-nav-logo,
.nav-group-menu .brand-nav-link--logo.active .brand-nav-logo {
    opacity: 1;
    filter:
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 8px color-mix(in srgb, var(--brand-color) 28%, transparent));
    transform: translateY(-1px);
}

.nav-group-menu .brand-nav-link--lockdown:hover .brand-nav-logo,
.nav-group-menu .brand-nav-link--lockdown.active .brand-nav-logo {
    filter:
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 6px rgba(55, 117, 255, 0.4))
        drop-shadow(0 0 11px rgba(55, 117, 255, 0.18));
}

.nav-group-menu .brand-nav-link.active {
    box-shadow: inset 2px 0 var(--brand-color);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.98) 0%, rgba(7, 8, 11, 0.8) 55%, rgba(7, 8, 11, 0.93) 100%),
        linear-gradient(135deg, #12151c, #07080b 72%);
}

.hero::after {
    position: absolute;
    top: 0;
    right: -12%;
    width: 58%;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(140deg, rgba(242, 182, 50, 0.11), transparent 55%);
    content: "";
    transform: skewX(-10deg);
}

.hero-grid,
.profile-grid-lines,
.event-hero-lines,
.brand-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.16;
}

.hero-glow-orange {
    top: -250px;
    left: -100px;
    background: var(--orange);
}

.hero-glow-blue {
    right: -200px;
    bottom: -320px;
    background: var(--blue);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 690px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 90px;
}

.eyebrow,
.section-kicker {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 5px rgba(255, 82, 99, 0.14);
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(64px, 9vw, 120px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 212, 107, 0.8);
}

.hero-content > p {
    max-width: 660px;
    margin-bottom: 32px;
    color: #b8bbc4;
    font-size: 17px;
}

.hero-actions,
.brand-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 170ms ease;
}

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

.button-primary {
    border-color: var(--gold);
    background: var(--gold);
    color: #0b0b0d;
    box-shadow: 0 10px 35px rgba(242, 182, 50, 0.18);
}

.button-primary:hover {
    background: var(--gold-bright);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

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

.button-small {
    min-height: 43px;
    padding-inline: 18px;
    font-size: 13px;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 54px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(12, 14, 19, 0.78);
    backdrop-filter: blur(10px);
}

.hero-stats div {
    min-width: 145px;
    padding: 15px 20px;
    border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-family: var(--display);
    font-size: 24px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding-block: 86px;
}

.section-raised {
    position: relative;
    background: var(--bg-soft);
}

.section-panel {
    border-block: 1px solid var(--line);
    background: #0a0c10;
}

.page-section {
    padding-top: 55px;
}

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

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

.section-heading h2,
.card-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.card-heading h2 {
    font-size: 30px;
}

.text-link,
.card-link {
    color: #d4d5d9;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.text-link span,
.card-link span {
    margin-left: 5px;
    color: var(--gold-bright);
    transition: 150ms ease;
}

.text-link:hover span,
.event-card:hover .card-link span,
.title-card:hover .card-link span {
    margin-left: 10px;
}

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

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

.event-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    overflow: hidden;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%),
        var(--panel);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: 180ms ease;
}

.event-card:hover,
.superstar-card:hover,
.title-card:hover,
.team-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.event-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--brand-color);
    box-shadow: 0 0 24px var(--brand-color);
}

.event-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.event-episode-badge {
    display: inline-flex;
    width: fit-content;
    min-height: 25px;
    align-items: center;
    padding-inline: 10px;
    border: 1px solid rgba(242, 182, 50, 0.3);
    border-radius: 999px;
    background: rgba(242, 182, 50, 0.09);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.event-card-episode {
    margin-top: 38px;
    border-color: color-mix(in srgb, var(--brand-color, var(--gold)) 48%, transparent);
    background: color-mix(in srgb, var(--brand-color, var(--gold)) 11%, transparent);
    color: color-mix(in srgb, var(--brand-color, var(--gold-bright)) 52%, white);
    font-size: 12px;
}

.event-card time {
    display: flex;
    flex-direction: column;
    margin-top: 38px;
}

.event-card time strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.event-card.has-episode time {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 11px;
}

.event-card.has-episode time strong,
.event-card.has-episode time span {
    margin: 0;
    color: var(--muted);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.event-card.has-episode time strong::after {
    margin-left: 6px;
    color: var(--line-strong);
    content: "·";
}

.event-card time span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.event-card h2,
.event-card h3 {
    margin: 20px 0 9px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.event-card-logo-block {
    display: flex;
    min-height: 85px;
    align-items: center;
    margin: 20px 0 9px;
}

.event-card-logo {
    display: block;
    width: auto;
    max-width: min(100%, 270px);
    max-height: 85px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

@media (max-width: 600px) {
    .event-card-logo-block {
        min-height: 72px;
    }

    .event-card-logo {
        max-width: min(100%, 230px);
        max-height: 72px;
    }
}

.event-card p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
}

.event-card .card-link {
    margin-top: auto;
}

.event-card.compact {
    min-height: 210px;
}

.event-card.compact h3 {
    margin-top: 28px;
}

.event-card.compact .event-card-episode {
    margin-top: 22px;
}

.event-card.compact .event-card-episode + h3 {
    margin-top: 14px;
}

.brand-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    color: #d8dae0;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--brand-color);
    box-shadow: 0 0 12px color-mix(in srgb, var(--brand-color) 65%, transparent);
}

.brand-badge-neutral {
    color: var(--muted);
}

.status-pill,
.title-type,
.match-type,
.title-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #c9cbd2;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.status-completed {
    border-color: rgba(39, 209, 127, 0.35);
    background: rgba(39, 209, 127, 0.1);
    color: #6ee7a7;
}

.status-live {
    border-color: rgba(255, 82, 99, 0.38);
    background: rgba(255, 82, 99, 0.12);
    color: #ff8a96;
}

.status-scheduled {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(29, 78, 216, 0.12);
    color: #93c5fd;
}

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

.brand-card {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 30%, var(--line));
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--brand-color) 25%, transparent), transparent 56%),
        var(--panel);
    transition: 180ms ease;
}

.brand-card::before {
    position: absolute;
    top: -45%;
    right: -8%;
    color: color-mix(in srgb, var(--brand-color) 10%, transparent);
    content: "NWA";
    font-family: var(--display);
    font-size: 240px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.brand-card:hover {
    box-shadow: 0 22px 60px color-mix(in srgb, var(--brand-color) 12%, transparent);
    transform: translateY(-4px);
}

.brand-card-label,
.brand-card > span {
    position: relative;
    z-index: 1;
}

.brand-card-label {
    color: color-mix(in srgb, var(--brand-color) 70%, white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.brand-card strong {
    position: relative;
    z-index: 1;
    margin: 3px 0;
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 76px);
    font-style: italic;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.brand-card > span:last-of-type {
    color: var(--muted);
}

.brand-card i {
    position: absolute;
    right: 30px;
    bottom: 28px;
    color: var(--brand-color);
    font-size: 26px;
    font-style: normal;
}

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

.champion-list,
.ranking-list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.champion-row,
.ranking-row {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 15px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    transition: 150ms ease;
}

.champion-row:last-child,
.ranking-row:last-child {
    border-bottom: 0;
}

.champion-row:hover,
.ranking-row:hover {
    background: rgba(255, 255, 255, 0.035);
}

.champion-row > span:nth-child(2),
.ranking-name {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.champion-row small,
.ranking-name small {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.champion-row strong,
.ranking-name strong {
    overflow: hidden;
    font-family: var(--display);
    font-size: 18px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.title-medallion {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 2px solid #8f6715;
    border-radius: 50%;
    background: radial-gradient(circle, #ffdc78, #a66f0e);
    color: #171008;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 900;
    box-shadow: inset 0 0 0 3px #2d210d;
}

.title-medallion.small {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 10px;
}

.rank-number {
    color: #777b87;
    font-family: var(--display);
    font-size: 21px;
    font-style: italic;
    font-weight: 800;
}

.rating {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 19px;
    font-weight: 800;
}

.avatar {
    position: relative;
    display: grid;
    overflow: hidden;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: linear-gradient(145deg, #262a35, #101218);
    color: #d2d4db;
    font-family: var(--display);
    font-weight: 800;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
}

.avatar-small {
    width: 38px;
    height: 38px;
    font-size: 12px;
}

.avatar-medium {
    width: 64px;
    height: 64px;
    font-size: 18px;
}

.avatar-large {
    width: 142px;
    height: 142px;
    font-size: 38px;
}

.avatar-card,
.avatar-portal,
.avatar-hero {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.avatar-card img,
.avatar-portal img,
.avatar-hero img {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.5));
}

.avatar-card {
    width: 100%;
    height: 235px;
    min-width: 0;
    padding: 10px 10px 0;
    font-size: 42px;
}

.avatar-portal {
    width: 190px;
    height: 250px;
    font-size: 48px;
}

.avatar-hero {
    width: 350px;
    height: 475px;
    font-size: 66px;
}

.avatar-card:not(.avatar-has-image),
.avatar-portal:not(.avatar-has-image),
.avatar-hero:not(.avatar-has-image) {
    overflow: hidden;
    width: 142px;
    height: 142px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: linear-gradient(145deg, #262a35, #101218);
}

.avatar-hero:not(.avatar-has-image) {
    width: 250px;
    height: 250px;
}

.empty-state {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.empty-state h3 {
    margin-bottom: 8px;
    font-size: 27px;
}

.empty-state p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.empty-mark {
    margin-bottom: 12px;
    color: var(--gold);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 900;
}

.grid-empty {
    grid-column: 1 / -1;
}

.empty-inline {
    padding: 25px;
    color: var(--muted);
    text-align: center;
}

.page-hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(242, 182, 50, 0.08), transparent 38%),
        #0a0c11;
}

.page-hero::after {
    position: absolute;
    top: -100%;
    right: 8%;
    width: 300px;
    height: 300%;
    background: rgba(255, 255, 255, 0.025);
    content: "";
    transform: rotate(20deg);
}

.page-hero h1 {
    margin: 7px 0 10px;
    font-size: clamp(52px, 8vw, 88px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.gold-hero {
    background:
        radial-gradient(circle at 72% 50%, rgba(242, 182, 50, 0.16), transparent 26rem),
        #0a0c11;
}

.filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--panel);
}

.filter-bar label {
    display: flex;
    min-width: 170px;
    flex-direction: column;
    gap: 6px;
}

.filter-bar label > span {
    color: var(--muted);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-bar input,
.filter-bar select,
.inline-filter select {
    height: 43px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    outline: none;
    background: #090b0f;
    color: #fff;
}

.filter-bar input:focus,
.filter-bar select:focus,
.inline-filter select:focus {
    border-color: var(--gold);
}

.filter-search {
    flex: 1;
}

.compact-filter {
    width: fit-content;
    margin-left: auto;
}

.table-shell {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

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

.data-table th {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.025);
    color: #888c96;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.data-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    color: #d4d6dc;
    font-size: 13px;
    white-space: nowrap;
}

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

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.table-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-person > span:last-child {
    display: flex;
    flex-direction: column;
}

.table-person strong {
    color: #fff;
    font-family: var(--display);
    font-size: 16px;
    text-transform: uppercase;
}

.table-person small {
    color: var(--muted);
    font-size: 10px;
}

.rank-number-table {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.form-strip {
    display: flex;
    gap: 4px;
}

.ranking-movement-stack {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.ranking-record-value,
.ranking-win-value {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .rankings-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
        align-items: end;
        gap: 12px;
    }

    .rankings-filter label {
        min-width: 0;
    }

    .filter-bar.rankings-filter .button {
        width: auto;
        min-height: 42px;
    }

    .rankings-shell {
        overflow: hidden;
    }

    .rankings-table thead {
        display: none;
    }

    .rankings-table,
    .rankings-table tbody {
        display: block;
        width: 100%;
    }

    .rankings-table tbody tr {
        display: grid;
        width: 100%;
        min-height: 132px;
        grid-template-columns: 58px minmax(180px, 1.5fr) 80px 88px 78px minmax(140px, 1fr);
        grid-template-areas:
            "rank superstar overall record win movement"
            "rank superstar singles tag multiman form";
        grid-template-rows: repeat(2, minmax(48px, auto));
        align-items: stretch;
        gap: 0 10px;
        padding: 16px 18px;
        border-bottom: 1px solid var(--line-strong);
        background:
            linear-gradient(90deg, rgba(242, 182, 50, 0.025), transparent 34%),
            var(--panel);
    }

    .rankings-table tbody tr:last-child {
        border-bottom: 0;
    }

    .rankings-table tbody tr:hover {
        background:
            linear-gradient(90deg, rgba(242, 182, 50, 0.05), transparent 38%),
            rgba(255, 255, 255, 0.02);
    }

    .rankings-table td {
        display: flex;
        width: auto;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 3px;
        padding: 6px 0;
        border: 0;
        white-space: normal;
    }

    .rankings-table td::before {
        color: #747986;
        content: attr(data-label);
        font-family: var(--display);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.09em;
        line-height: 1;
        text-transform: uppercase;
    }

    .rankings-table .ranking-rank {
        grid-area: rank;
        align-items: center;
    }

    .rankings-table .ranking-rank::before,
    .rankings-table .ranking-superstar::before {
        display: none;
    }

    .rankings-table .ranking-superstar { grid-area: superstar; }
    .rankings-table .ranking-overall { grid-area: overall; }
    .rankings-table .ranking-record { grid-area: record; }
    .rankings-table .ranking-win { grid-area: win; }
    .rankings-table .ranking-movement { grid-area: movement; }
    .rankings-table .ranking-singles { grid-area: singles; }
    .rankings-table .ranking-tag { grid-area: tag; }
    .rankings-table .ranking-multiman { grid-area: multiman; }
    .rankings-table .ranking-form { grid-area: form; }

    .rankings-table tbody td.ranking-movement::before {
        display: block;
    }

    .rankings-table .ranking-movement-empty {
        display: none;
    }

    .rankings-table .rank-number-table {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        font-size: 23px;
    }

    .rankings-table tbody tr:nth-child(1) .rank-number-table {
        border-color: rgba(242, 182, 50, 0.5);
        background: rgba(242, 182, 50, 0.09);
        color: #ffd766;
    }

    .rankings-table tbody tr:nth-child(2) .rank-number-table {
        border-color: rgba(188, 199, 215, 0.42);
        background: rgba(188, 199, 215, 0.07);
        color: #dce3ed;
    }

    .rankings-table tbody tr:nth-child(3) .rank-number-table {
        border-color: rgba(197, 128, 77, 0.48);
        background: rgba(197, 128, 77, 0.08);
        color: #d99b6c;
    }

    .rankings-table .table-person {
        width: 100%;
        min-width: 0;
    }

    .rankings-table .table-person > span:last-child {
        min-width: 0;
    }

    .rankings-table .table-person strong,
    .rankings-table .table-person small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rankings-table .rating {
        font-size: 22px;
    }

    .rankings-table .ranking-record-value,
    .rankings-table .ranking-win-value,
    .rankings-table .ranking-split-value {
        color: #dfe2e9;
        font-size: 14px;
        font-weight: 600;
    }

    .rankings-table .ranking-record-value,
    .rankings-table .ranking-win-value {
        font-family: var(--display);
        font-size: 18px;
    }

    .rankings-table .ranking-form {
        align-items: flex-start;
    }

    .rankings-table .ranking-movement-stack {
        font-family: var(--display);
        font-size: 14px;
        font-weight: 800;
    }

    .rankings-table .rankings-empty-row {
        display: block;
        min-height: 0;
        padding: 0;
    }

    .rankings-table .rankings-empty-row td {
        display: block;
        padding: 0;
    }

    .rankings-table .rankings-empty-row td::before {
        display: none;
    }
}

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

    .filter-bar.rankings-filter .button {
        width: 100%;
        grid-column: 1 / -1;
    }

    .rankings-table tbody tr {
        min-height: 0;
        grid-template-columns: 50px minmax(0, 1fr) auto;
        grid-template-areas:
            "rank superstar overall"
            "rank superstar movement"
            "record record win"
            "singles tag multiman"
            "form form form";
        grid-template-rows: auto auto auto auto auto;
        gap: 0 10px;
        padding: 14px;
    }

    .rankings-table td,
    .rankings-table tbody td:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
        padding: 7px 0;
    }

    .rankings-table .ranking-rank {
        grid-area: rank;
        align-self: start;
        padding-top: 2px;
    }

    .rankings-table .ranking-superstar {
        grid-area: superstar;
        justify-content: flex-start;
        padding-top: 2px;
    }

    .rankings-table .ranking-overall {
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 2px;
        text-align: right;
    }

    .rankings-table .ranking-overall::before {
        content: "OVR";
    }

    .rankings-table .ranking-movement {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
        text-align: right;
    }

    .rankings-table tbody td.ranking-movement::before {
        display: none;
    }

    .rankings-table .ranking-record,
    .rankings-table .ranking-win {
        margin-top: 6px;
        padding: 10px 12px;
        border-block: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.018);
    }

    .rankings-table .ranking-record {
        align-items: flex-start;
        border-left: 1px solid var(--line);
        border-radius: 8px 0 0 8px;
    }

    .rankings-table .ranking-win {
        align-items: flex-end;
        border-right: 1px solid var(--line);
        border-radius: 0 8px 8px 0;
        text-align: right;
    }

    .rankings-table .ranking-singles,
    .rankings-table .ranking-tag,
    .rankings-table .ranking-multiman {
        align-items: center;
        padding: 10px 4px 8px;
        text-align: center;
    }

    .rankings-table .ranking-tag {
        border-inline: 1px solid var(--line);
    }

    .rankings-table .ranking-form {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }

    .rankings-table .ranking-form::before {
        flex: 0 0 auto;
    }

    .rankings-table .rank-number-table {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .rankings-table .table-person {
        align-items: flex-start;
    }

    .rankings-table .table-person strong {
        font-size: 15px;
    }

    .rankings-table .table-person small {
        max-width: 175px;
    }

    .rankings-table .rating {
        font-size: 21px;
    }

    .rankings-table .form-strip {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

.form-result,
.result-badge {
    display: inline-grid;
    min-width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    color: #b7bac2;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 900;
}

.result-badge-label {
    width: auto;
    min-width: 72px;
    height: 24px;
    padding-inline: 10px;
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.form-w,
.result-winner {
    border-color: rgba(39, 209, 127, 0.35);
    background: rgba(39, 209, 127, 0.12);
    color: #69e4a4;
}

.form-l,
.result-loser {
    border-color: rgba(255, 82, 99, 0.35);
    background: rgba(255, 82, 99, 0.11);
    color: #ff7c89;
}

.form-d,
.result-draw {
    border-color: rgba(242, 182, 50, 0.35);
    background: rgba(242, 182, 50, 0.1);
    color: var(--gold-bright);
}

.form-nc,
.result-no_contest {
    color: var(--muted);
}

.table-note {
    margin: 13px 4px 0;
    color: var(--muted);
    font-size: 11px;
}

.table-empty {
    min-height: 190px;
    border: 0;
}

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

.superstar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    transition: 180ms ease;
}

.superstar-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--brand-color);
    content: "";
}

.superstar-portrait {
    position: relative;
    display: grid;
    height: 245px;
    min-height: 0;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--brand-color) 18%, transparent), transparent 68%),
        linear-gradient(180deg, #171a22, #101219);
}

.superstar-portrait .avatar-card.avatar-has-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.superstar-portrait .avatar-card.avatar-has-image img {
    width: 100%;
    height: 100%;
    max-width: none;
}

.portrait-glow {
    position: absolute;
    right: 18%;
    bottom: -10px;
    left: 18%;
    height: 30px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-color) 35%, transparent);
    filter: blur(20px);
}

.superstar-card-copy {
    padding: 20px;
}

.superstar-card h2 {
    margin: 12px 0 2px;
    font-size: 28px;
    font-weight: 800;
}

.superstar-card-copy > p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
}

.superstar-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.superstar-meta span {
    display: flex;
    flex-direction: column;
}

.superstar-meta small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.superstar-meta strong {
    font-family: var(--display);
    font-size: 16px;
    text-transform: uppercase;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.page-link {
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--panel);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-link:hover {
    border-color: var(--gold);
}

.page-link.disabled {
    opacity: 0.35;
}

.page-summary {
    color: var(--muted);
    font-size: 12px;
}

.profile-hero,
.event-hero,
.brand-hero,
.team-hero,
.title-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 50%, color-mix(in srgb, var(--brand-color) 18%, transparent), transparent 24rem),
        linear-gradient(110deg, #11141b, #08090c 72%);
}

.profile-hero::after,
.event-hero::after,
.brand-hero::after,
.title-hero::after {
    position: absolute;
    top: -40%;
    right: 8%;
    width: 280px;
    height: 180%;
    background: color-mix(in srgb, var(--brand-color) 8%, transparent);
    content: "";
    transform: rotate(18deg);
}

.profile-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 545px;
    grid-template-columns: 360px 1fr auto;
    align-items: center;
    gap: 45px;
    padding-block: 60px;
}

.profile-portrait {
    position: relative;
    display: grid;
    place-items: center;
}

.profile-portrait::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 35%, transparent);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 70px color-mix(in srgb, var(--brand-color) 14%, transparent);
    transform: translate(-50%, -50%);
}

.profile-portrait-has-image::before {
    top: auto;
    bottom: 36px;
    transform: translateX(-50%);
}

.profile-portrait-has-image .avatar-hero.avatar-has-image img {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.profile-intro h1,
.event-hero h1,
.brand-hero h1,
.team-hero h1,
.title-hero h1 {
    margin: 12px 0 2px;
    font-size: clamp(58px, 8vw, 96px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.profile-handle {
    color: var(--muted);
    font-size: 15px;
}

.profile-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 28px;
}

.profile-facts span {
    display: flex;
    flex-direction: column;
    color: #e2e3e7;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
}

.profile-facts small {
    color: var(--muted);
    font-family: var(--body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-rating {
    display: flex;
    min-width: 160px;
    flex-direction: column;
    align-items: center;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 35%, var(--line));
    border-radius: var(--radius);
    background: rgba(7, 8, 11, 0.7);
}

.profile-rating > span,
.profile-rating small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-rating strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 48px;
    line-height: 1.1;
}

.profile-stat-band {
    border-bottom: 1px solid var(--line);
    background: #0d0f14;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.stat-grid div {
    display: flex;
    min-height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.stat-grid div:first-child {
    border-left: 1px solid var(--line);
}

.stat-grid strong {
    font-family: var(--display);
    font-size: 29px;
}

.stat-grid span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 22px;
}

.profile-main,
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.content-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.trophy-cabinet {
    overflow: hidden;
}

.trophy-cabinet-heading {
    align-items: center;
}

.trophy-total {
    min-width: 66px;
    padding: 8px 12px;
    border: 1px solid rgba(242, 182, 50, 0.35);
    border-radius: 999px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.trophy-card {
    position: relative;
    display: flex;
    min-width: 0;
    gap: 13px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.trophy-card::after {
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: #8d929d;
    content: "";
}

.trophy-card.trophy-rare::after { background: #44a8ff; }
.trophy-card.trophy-epic::after { background: #b978ff; }
.trophy-card.trophy-legendary::after { background: var(--gold); }

.trophy-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid rgba(242, 182, 50, 0.35);
    border-radius: 50%;
    background: rgba(242, 182, 50, 0.1);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 900;
}

.trophy-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.trophy-copy small {
    color: var(--gold-bright);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trophy-copy strong {
    margin-top: 2px;
    font-family: var(--display);
    font-size: 17px;
    text-transform: uppercase;
}

.trophy-copy > span,
.trophy-copy time {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
}

.trophy-copy time {
    margin-top: 7px;
}

.trophy-empty {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
    padding: 18px;
    border: 1px dashed var(--line-strong);
    border-radius: 12px;
}

.trophy-empty strong { font-family: var(--display); text-transform: uppercase; }
.trophy-empty p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }

.trophy-next {
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}

.trophy-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin-top: 12px;
}

.trophy-progress-item > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 10px;
}

.trophy-progress-item strong { font-family: var(--display); text-transform: uppercase; }
.trophy-progress-item span { color: var(--muted); }

.trophy-progress-track {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.trophy-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #b27708, var(--gold-bright));
}

.flush-card {
    padding: 0;
}

.type-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.type-stat-grid > div {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.type-stat-grid span {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.type-stat-grid strong {
    margin: 2px 0;
    font-family: var(--display);
    font-size: 26px;
}

.type-stat-grid small {
    color: #8f929d;
    font-size: 10px;
}

.match-history {
    margin: 0 -25px -25px;
}

.history-row {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 14px;
    padding: 14px 25px;
    border-top: 1px solid var(--line);
    transition: 150ms ease;
}

.history-row:hover {
    background: rgba(255, 255, 255, 0.025);
}

.history-main,
.history-event {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.history-main {
    flex: 1;
}

.history-main strong,
.history-event strong {
    overflow: hidden;
    font-family: var(--display);
    font-size: 16px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.history-main small,
.history-event small {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-event {
    max-width: 180px;
    text-align: right;
}

.compact-empty {
    min-height: 180px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
}

.bio {
    margin: 15px 0 0;
    color: #b9bbc3;
    white-space: pre-line;
}

.achievement-list,
.simple-list {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.achievement-list a,
.simple-list a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.achievement-list a > span:last-child,
.simple-list a {
    min-width: 0;
}

.achievement-list strong,
.achievement-list small,
.simple-list strong,
.simple-list small {
    display: block;
}

.achievement-list strong,
.simple-list strong {
    font-family: var(--display);
    font-size: 15px;
    text-transform: uppercase;
}

.achievement-list small,
.simple-list small {
    color: var(--muted);
    font-size: 10px;
}

.event-hero-inner,
.brand-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding-block: 70px;
}

.event-hero-inner > div:first-of-type {
    max-width: 760px;
}

.event-hero .eyebrow {
    gap: 15px;
}

.event-hero p,
.brand-hero p,
.team-hero p,
.title-hero p {
    color: #b7bac3;
}

.event-hero p span {
    margin-inline: 6px;
    color: var(--brand-color);
}

.event-description {
    max-width: 640px;
    color: var(--muted);
}

.match-count {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.match-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.public-match {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.public-match.main-event {
    border-color: rgba(242, 182, 50, 0.4);
    box-shadow: 0 0 40px rgba(242, 182, 50, 0.06);
}

.match-header,
.match-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-header {
    border-bottom: 1px solid var(--line);
}

.match-header > span:first-child {
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 800;
}

.match-header > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.title-chip {
    border-color: rgba(242, 182, 50, 0.28);
    background: rgba(242, 182, 50, 0.08);
    color: var(--gold-bright);
}

.match-context {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 20px 0;
}

.match-event-name {
    margin: 0;
    color: #e5e7eb;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.015em;
    text-align: center;
    text-transform: uppercase;
}

.season-chip {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding-inline: 9px;
    border: 1px solid rgba(242, 182, 50, 0.28);
    border-radius: 999px;
    background: rgba(242, 182, 50, 0.08);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.match-sides {
    display: flex;
    min-height: 180px;
    align-items: stretch;
    justify-content: center;
    padding: 20px;
}

.match-side {
    position: relative;
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.match-side.result-side-winner {
    border-color: rgba(39, 209, 127, 0.22);
    background:
        linear-gradient(180deg, rgba(39, 209, 127, 0.075), transparent 62%),
        rgba(255, 255, 255, 0.015);
}

.match-side.result-side-loser {
    opacity: 0.86;
}

.side-result {
    min-height: 24px;
    margin-bottom: 9px;
}

.side-name {
    margin-bottom: 10px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
}

.side-participants {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.side-participants a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.side-participants a:hover {
    color: var(--gold-bright);
}

.versus {
    display: grid;
    width: 45px;
    flex: 0 0 45px;
    place-items: center;
    color: #5f626c;
    font-family: var(--display);
    font-size: 17px;
    font-style: italic;
    font-weight: 900;
}

.match-footer {
    border-top: 1px solid var(--line);
}

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

.title-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    transition: 180ms ease;
}

.belt-placeholder {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle, rgba(242, 182, 50, 0.18), transparent 58%),
        linear-gradient(160deg, #191b22, #0c0e12);
}

.belt-placeholder > span {
    display: grid;
    width: 126px;
    height: 72px;
    place-items: center;
    border: 4px solid #8d6411;
    border-radius: 48%;
    background: radial-gradient(circle, #ffdd7f, #ac7613);
    color: #1b1204;
    font-family: var(--display);
    font-size: 31px;
    font-style: italic;
    font-weight: 900;
    box-shadow:
        0 0 0 7px #21190b,
        0 0 0 10px #8d6411,
        0 20px 40px rgba(0, 0, 0, 0.45);
}

.belt-placeholder > small {
    margin-top: 18px;
    color: #c59a3d;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.belt-placeholder img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    padding: 18px;
}

.title-card-copy {
    padding: 22px;
}

.title-card h2 {
    margin: 13px 0 8px;
    font-size: 27px;
}

.current-holder {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.current-holder small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.current-holder strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 21px;
    text-transform: uppercase;
}

.title-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 430px;
    grid-template-columns: 330px 1fr;
    align-items: center;
    gap: 55px;
    padding-block: 65px;
}

.belt-large {
    min-height: 290px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.belt-large > span {
    width: 180px;
    height: 105px;
    font-size: 45px;
}

.belt-large img {
    height: 290px;
}

.hero-champion {
    display: flex;
    width: fit-content;
    min-width: 280px;
    flex-direction: column;
    margin-top: 28px;
    padding: 16px 20px;
    border-left: 3px solid var(--brand-color);
    background: rgba(255, 255, 255, 0.035);
}

.hero-champion small,
.hero-champion span {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.hero-champion strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 29px;
    text-transform: uppercase;
}

.title-description {
    margin-bottom: 45px;
}

.title-description p {
    margin: 0;
    color: #bec0c8;
}

.reign-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}

.reign-timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 1px;
    background: var(--line-strong);
    content: "";
}

.reign-entry {
    position: relative;
    display: grid;
    grid-template-columns: 75px 1fr 220px auto;
    align-items: center;
    gap: 18px;
    min-height: 110px;
    margin-left: 32px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.timeline-marker {
    position: absolute;
    left: -29px;
    width: 13px;
    height: 13px;
    border: 3px solid var(--bg);
    border-radius: 50%;
    background: #5f626c;
    box-shadow: 0 0 0 1px var(--line-strong);
}

.reign-entry.current .timeline-marker {
    background: var(--gold);
    box-shadow: 0 0 14px rgba(242, 182, 50, 0.5);
}

.reign-entry.history-action .timeline-marker {
    background: var(--gold);
}

.reign-number,
.reign-holder,
.reign-dates {
    display: flex;
    flex-direction: column;
}

.reign-number small,
.reign-holder small,
.reign-dates span {
    color: var(--muted);
    font-size: 10px;
}

.reign-number strong,
.reign-holder strong,
.reign-dates strong {
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

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

.team-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    text-align: center;
    transition: 180ms ease;
}

.team-logo {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(145deg, #242834, #0d0f14);
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 900;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-card .title-type {
    margin-top: 20px;
}

.team-card h2 {
    margin: 10px 0 8px;
    font-size: 28px;
}

.team-card > p {
    color: var(--muted);
    font-size: 12px;
}

.team-card-footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.team-hero {
    --brand-color: var(--gold);
}

.team-hero-inner {
    display: grid;
    min-height: 400px;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 45px;
    padding-block: 65px;
}

.team-logo-large {
    width: 180px;
    height: 180px;
    font-size: 50px;
}

.team-hero h1 {
    margin-bottom: 10px;
}

.team-hero p {
    max-width: 600px;
    margin-bottom: 8px;
}

.team-hero small {
    color: var(--muted);
}

.team-record {
    display: grid;
    grid-template-columns: repeat(3, 90px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.team-record span {
    display: flex;
    min-height: 90px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.team-record span:last-child {
    border-right: 0;
}

.team-record strong {
    font-family: var(--display);
    font-size: 29px;
}

.team-record small {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.member-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.member-card strong {
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

.member-card small {
    color: var(--muted);
    font-size: 10px;
}

.brand-hero {
    background:
        linear-gradient(120deg, color-mix(in srgb, var(--brand-color) 25%, transparent), transparent 45%),
        #090b0f;
}

.brand-hero-inner {
    min-height: 460px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.brand-hero h1 {
    color: color-mix(in srgb, var(--brand-color) 70%, white);
    font-size: clamp(80px, 14vw, 160px);
}

.brand-overview {
    gap: 24px;
}

.roster-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.roster-strip > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
}

.roster-strip > a > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.roster-strip strong {
    overflow: hidden;
    font-family: var(--display);
    font-size: 17px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.roster-strip small {
    color: var(--muted);
    font-size: 10px;
}

.site-footer {
    padding: 55px 0;
    border-top: 1px solid var(--line);
    background: #050609;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 13px;
}

.footer-social-links { margin-top: 13px; }
.footer-social-links a { border-color: var(--line); }

.footer-grid p {
    margin: 0;
    color: #6f727d;
    font-size: 11px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.footer-links a {
    color: #9ea1aa;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-meta {
    text-align: right;
}

@media (max-width: 1050px) {
    .primary-nav > a,
    .nav-group-toggle {
        padding-inline: 6px;
        font-size: 12px;
    }

    .brand-copy {
        display: none;
    }

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

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

    .profile-hero-inner {
        grid-template-columns: 300px 1fr;
    }

    .avatar-hero.avatar-has-image {
        width: 300px;
        height: 430px;
    }

    .profile-portrait::before {
        width: 285px;
        height: 285px;
    }

    .profile-rating {
        grid-column: 1 / -1;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .profile-rating strong {
        font-size: 30px;
    }

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

    .stat-grid div:nth-child(4) {
        border-right: 0;
    }

    .stat-grid div:nth-child(n + 5) {
        border-top: 1px solid var(--line);
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .team-hero-inner {
        grid-template-columns: 160px 1fr;
    }

    .team-record {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 780px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-shell {
        min-height: 66px;
    }

    .site-utility-bar,
    .site-utility-shell { min-height: 44px; }

    .site-utility-shell { gap: 8px; }
    .social-follow-label { display: none; }
    .nwa-social-links { gap: 2px; }
    .nwa-social-links a { width: 25px; height: 25px; }
    .account-action { min-height: 30px; padding-inline: 10px; }
    .account-signout { padding-inline: 8px; }
    .utility-help-link { display: none; }
    .site-utility-bar .notification-popover { top: 48px; }

    .league-ticker-shell {
        width: 100%;
        min-height: 54px;
        grid-template-columns: auto minmax(0, 1fr);
        padding-left: 14px;
    }

    .league-ticker-identity {
        min-width: 76px;
        padding-right: 10px;
        font-size: 9px;
    }

    .league-ticker-item {
        width: min(250px, 74vw);
        min-width: min(250px, 74vw);
        padding-inline: 14px;
    }

    .league-ticker-controls {
        display: none;
    }

    .brand-copy {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        padding: 14px;
        border-bottom: 1px solid var(--line);
        background: #090a0e;
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav > a,
    .nav-group-toggle {
        width: 100%;
        padding: 12px 14px;
        border-radius: 6px;
        font-size: 14px;
        text-align: left;
    }

    .primary-nav > a.active,
    .nav-group.active > .nav-group-toggle,
    .nav-group.is-open > .nav-group-toggle {
        background: rgba(255, 255, 255, 0.05);
    }

    .primary-nav > a::after,
    .nav-group-toggle::after {
        display: none;
    }

    .nav-group-toggle {
        justify-content: space-between;
    }

    .nav-group-menu,
    .nav-brand-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 3px 0 7px 12px;
        padding: 5px;
        transform: none;
        border-color: rgba(255, 255, 255, .07);
        border-radius: 7px;
        background: rgba(255, 255, 255, .025);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-group:hover > .nav-group-menu,
    .nav-group:focus-within > .nav-group-menu {
        display: none;
        transform: none;
    }

    .nav-group.is-open > .nav-group-menu,
    .nav-group.is-open:hover > .nav-group-menu,
    .nav-group.is-open:focus-within > .nav-group-menu {
        display: grid;
        transform: none;
    }

    .nav-group-menu a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-group-menu .brand-nav-link--logo {
        min-height: 50px;
        justify-content: flex-start;
        padding-block: 6px;
    }

    .brand-nav-logo-wrap {
        place-items: center start;
    }

    .nav-menu-icon {
        width: 19px;
        height: 19px;
        flex-basis: 19px;
    }

    .hero,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        padding-block: 70px;
    }

    .hero h1 {
        font-size: clamp(55px, 18vw, 82px);
    }

    .hero-stats {
        width: 100%;
    }

    .hero-stats div {
        min-width: 0;
        flex: 1;
        padding-inline: 10px;
        text-align: center;
    }

    .section {
        padding-block: 60px;
    }

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

    .section-heading h2 {
        font-size: 35px;
    }

    .event-grid,
    .event-grid-compact,
    .brand-grid,
    .split-layout,
    .title-grid,
    .team-grid,
    .roster-grid,
    .roster-strip {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: 270px;
    }

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

    .filter-bar label {
        min-width: 0;
    }

    .filter-bar .button {
        width: 100%;
    }

    .data-table thead {
        display: none;
    }

    .data-table,
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table tr {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 14px;
        border-bottom: 1px solid var(--line-strong);
    }

    .data-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 8px;
        border: 0;
        white-space: normal;
    }

    .data-table td::before {
        color: var(--muted);
        content: attr(data-label);
        font-family: var(--display);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .data-table td:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .data-table td:nth-child(2)::before {
        display: none;
    }

    .profile-hero-inner,
    .title-hero-inner,
    .team-hero-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 25px;
        text-align: center;
    }

    .profile-portrait-has-image .avatar-hero.avatar-has-image img {
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
    }

    .profile-hero-inner {
        padding-block: 45px;
    }

    .profile-intro h1,
    .event-hero h1,
    .team-hero h1,
    .title-hero h1 {
        font-size: 57px;
    }

    .profile-intro .brand-badge {
        margin-inline: auto;
    }

    .profile-facts {
        justify-content: center;
    }

    .profile-rating {
        grid-column: auto;
    }

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

    .stat-grid div,
    .stat-grid div:first-child,
    .stat-grid div:nth-child(3) {
        border: 0;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .stat-grid div:nth-child(even) {
        border-right: 0;
    }

    .type-stat-grid,
    .profile-sidebar,
    .member-grid {
        grid-template-columns: 1fr;
    }

    .history-row {
        flex-wrap: wrap;
    }

    .history-event {
        width: 100%;
        max-width: none;
        margin-left: 41px;
        text-align: left;
    }

    .event-hero-inner {
        min-height: 390px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .match-sides {
        flex-direction: column;
        gap: 5px;
    }

    .match-side {
        min-height: 145px;
    }

    .versus {
        width: 100%;
        height: 35px;
        flex-basis: 35px;
    }

    .match-header,
    .match-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .match-header > div {
        justify-content: flex-start;
    }

    .reign-entry {
        grid-template-columns: 60px 1fr;
    }

    .reign-dates {
        grid-column: 2;
    }

    .reign-entry > .status-pill {
        position: absolute;
        top: 15px;
        right: 0;
    }

    .team-record {
        grid-column: auto;
    }

    .brand-hero-inner {
        min-height: 400px;
    }

    .brand-hero h1 {
        font-size: clamp(70px, 25vw, 110px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-meta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-copy strong {
        font-size: 15px;
    }

    .hero-actions,
    .brand-hero-links {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .button,
    .brand-hero-links .button {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stats div {
        flex-basis: 50%;
    }

    .hero-stats div:nth-child(2) {
        border-right: 0;
    }

    .hero-stats div:last-child {
        border-top: 1px solid var(--line);
    }

    .section-heading {
        flex-direction: column;
        gap: 12px;
    }

    .data-table tr {
        grid-template-columns: 1fr;
    }

    .data-table td,
    .data-table td:nth-child(2) {
        grid-column: auto;
    }

    .avatar-hero.avatar-has-image {
        width: 280px;
        height: 380px;
    }

    .profile-portrait-has-image::before {
        bottom: 28px;
    }

    .profile-portrait::before {
        width: 260px;
        height: 260px;
    }

    .profile-facts {
        gap: 14px;
    }

    .profile-rating {
        flex-direction: column;
    }

    .content-card {
        padding: 20px;
    }

    .match-history {
        margin: 0 -20px -20px;
    }

    .history-row {
        padding-inline: 20px;
    }

    .reign-entry {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .reign-dates {
        grid-column: auto;
    }
}

/* Homepage Discord community panel */
.discord-community {
    position: relative;
    overflow: hidden;
    padding-block: clamp(28px, 4vw, 46px);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 12% 50%, rgba(88, 101, 242, 0.14), transparent 34rem),
        #080b11;
}

.discord-community-card {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(138, 147, 255, 0.28);
    border-radius: 16px;
    background:
        linear-gradient(115deg, rgba(88, 101, 242, 0.16), transparent 46%),
        linear-gradient(145deg, #151b29, #0b0f17 72%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.05);
}

.discord-community-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    background: linear-gradient(var(--gold-bright), #5865f2);
    box-shadow: 0 0 28px rgba(88, 101, 242, 0.7);
}

.discord-community-card::after {
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    pointer-events: none;
    content: "";
    background: rgba(88, 101, 242, 0.12);
    filter: blur(70px);
}

.discord-community-copy,
.discord-community-action {
    position: relative;
    z-index: 1;
}

.discord-community-copy {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 32px);
}

.discord-community-brand {
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: linear-gradient(145deg, #7380ff, #5865f2);
    box-shadow: 0 14px 38px rgba(88, 101, 242, 0.3), inset 0 1px rgba(255, 255, 255, 0.3);
}

.discord-community-brand svg {
    width: 46px;
    height: 46px;
    fill: #fff;
}

.discord-community h2 {
    max-width: 760px;
    margin: 7px 0 12px;
    font-size: clamp(34px, 4.5vw, 56px);
    font-style: italic;
    letter-spacing: -0.025em;
}

.discord-community-copy p {
    max-width: 760px;
    margin: 0;
    color: #bdc2cf;
    font-size: 16px;
}

.discord-community-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 13px;
    margin-top: 18px;
    color: #b8becc;
    font-size: 13px;
}

.discord-community-status strong {
    color: #fff;
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.discord-community-status strong + span::before {
    margin-right: 13px;
    color: rgba(255, 255, 255, 0.3);
    content: "/";
}

.discord-online-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #23d681;
    box-shadow: 0 0 0 5px rgba(35, 214, 129, 0.12), 0 0 16px rgba(35, 214, 129, 0.6);
}

.discord-community-action {
    display: flex;
    min-width: 255px;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.discord-community-action > p,
.discord-community-label {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.discord-member-stack {
    display: flex;
    padding-right: 9px;
}

.discord-member {
    display: grid;
    width: 42px;
    height: 42px;
    overflow: hidden;
    place-items: center;
    margin-right: -9px;
    border: 3px solid #101520;
    border-radius: 50%;
    background: #252d3d;
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.32);
}

.discord-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-join-button {
    border-color: #7d88ff;
    background: linear-gradient(135deg, #7289ff, #5865f2);
    color: #fff;
    box-shadow: 0 12px 34px rgba(88, 101, 242, 0.3);
}

.discord-join-button:hover {
    border-color: #a1a9ff;
    background: linear-gradient(135deg, #8390ff, #6571f5);
}

.discord-join-button > span {
    margin-left: 10px;
    transition: margin-left 150ms ease;
}

.discord-join-button:hover > span {
    margin-left: 15px;
}

@media (max-width: 920px) {
    .discord-community-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .discord-community-action {
        min-width: 0;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .discord-community-copy {
        flex-direction: column;
    }

    .discord-community-brand {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        border-radius: 17px;
    }

    .discord-community-brand svg {
        width: 38px;
        height: 38px;
    }

    .discord-community-card {
        padding: 27px 22px 25px 26px;
    }

    .discord-community h2 {
        font-size: 37px;
    }

    .discord-community-status strong + span {
        width: 100%;
        padding-left: 22px;
    }

    .discord-community-status strong + span::before {
        display: none;
    }

    .discord-community-action,
    .discord-join-button {
        width: 100%;
    }
}
/* Live Draft Night */
.live-draft-section { padding-top: 2.5rem; }
.live-draft-command { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr); gap: 1.25rem; margin-bottom: 2rem; }
.live-draft-clock, .live-draft-latest { position: relative; overflow: hidden; min-height: 210px; padding: 2rem; border: 1px solid color-mix(in srgb, var(--draft-brand, #f6c445) 55%, #253047); border-radius: 18px; background: linear-gradient(135deg, color-mix(in srgb, var(--draft-brand, #f6c445) 20%, #0a0e16), #070a10 65%); }
.live-draft-clock::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--draft-brand, #f6c445); }
.live-draft-clock h2, .live-draft-latest h2 { margin: .45rem 0; font: 900 clamp(2.2rem, 5vw, 4.8rem)/.9 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.draft-countdown { display: block; color: var(--draft-brand, #f6c445); font: 900 clamp(2.2rem, 5vw, 4.5rem)/1 'Barlow Condensed', sans-serif; letter-spacing: .06em; }
.draft-countdown.clock-expired { color: #ef4444; animation: draft-pulse 1s infinite alternate; }
.live-draft-board { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 320px); gap: 1.5rem; align-items: start; }
.compact-heading { margin-bottom: 1rem; }
.available-pool-card { position: sticky; top: 7rem; padding: 1.4rem; }
.available-pool-card h2 { margin: .35rem 0 1rem; }
.draft-pool-search { width: 100%; padding: .8rem 1rem; color: #fff; border: 1px solid #293247; border-radius: 9px; background: #090d15; }
.available-pool { display: grid; gap: .35rem; max-height: 520px; margin-top: .85rem; overflow: auto; }
.available-pool-name { padding: .65rem .75rem; color: #e5e7eb; border-radius: 7px; background: rgba(255,255,255,.035); }
.available-pool-name:hover { color: #f6c445; background: rgba(246,196,69,.09); }
.draft-connection-warning::after { content: 'Live connection interrupted — retrying'; position: fixed; right: 1rem; bottom: 1rem; z-index: 20; padding: .7rem 1rem; border-radius: 8px; color: #fff; background: #991b1b; }
.draft-rehearsal-warning { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .65rem 1rem; margin-bottom: 1.25rem; padding: .7rem 1rem; border: 1px solid rgba(239,68,68,.7); border-radius: 8px; color: #fecaca; background: rgba(127,29,29,.55); }
.draft-rehearsal-warning strong { color: #fff; letter-spacing: .12em; }
.draft-rehearsal-page .live-draft-clock, .draft-rehearsal-page .live-draft-latest, .draft-card-rehearsal { border-color: rgba(239,68,68,.6); }
.draft-card-rehearsal { background: linear-gradient(145deg, rgba(127,29,29,.2), var(--panel)); }
@keyframes draft-pulse { to { opacity: .55; } }

.draft-overlay-body { min-height: 100vh; margin: 0; overflow: hidden; color: #fff; background: transparent; }
.draft-overlay { display: grid; grid-template-columns: minmax(300px, 1fr) 180px minmax(340px, 1.3fr); align-items: stretch; width: min(1400px, calc(100vw - 40px)); min-height: 115px; margin: 20px; border: 1px solid rgba(246,196,69,.65); border-radius: 14px; background: rgba(5,8,14,.94); box-shadow: 0 15px 45px rgba(0,0,0,.45); }
.draft-overlay > div { display: flex; flex-direction: column; justify-content: center; padding: 1rem 1.5rem; }
.draft-overlay span { color: #f6c445; font: 800 .75rem/1 Inter, sans-serif; letter-spacing: .18em; }
.draft-overlay strong { margin-top: .35rem; font: 900 2rem/1 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.draft-overlay-clock { align-items: center; color: #f6c445; border-inline: 1px solid #263047; font: 900 2.6rem/1 'Barlow Condensed', sans-serif; }
.draft-overlay-rehearsal { position: relative; border-color: #ef4444; }
.draft-overlay-test-mark { position: absolute; inset: 0 0 auto !important; z-index: 2; display: block !important; padding: .25rem !important; color: #fff; background: #b91c1c; font: 900 .72rem/1 Inter, sans-serif; letter-spacing: .18em; text-align: center; }

@media (max-width: 800px) {
    .live-draft-command, .live-draft-board { grid-template-columns: 1fr; }
    .available-pool-card { position: static; }
    .live-draft-clock, .live-draft-latest { min-height: 170px; padding: 1.4rem; }
    .draft-overlay { grid-template-columns: 1fr 120px; }
    .draft-overlay-latest { display: none !important; }
}

/* Event detail and official brand identity */
.brand-logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-card-logo {
    position: relative;
    z-index: 1;
    width: min(360px, 82%);
    max-height: 118px;
    margin: 17px 0 16px;
    object-position: left center;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}

.nwa-broadcast .brand-hero-inner {
    display: grid;
    min-height: 480px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.brand-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.brand-hero-logo {
    width: min(610px, 78vw);
    max-height: 235px;
    margin: 22px 0 18px;
    object-position: left center;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.5));
}

.brand-hero-signature {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 180px;
    flex-direction: column;
    padding: 23px 26px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 45%, var(--line));
    border-radius: 14px;
    background: rgba(6, 9, 14, 0.72);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.brand-hero-signature span {
    color: color-mix(in srgb, var(--brand-color) 72%, white);
    font-family: var(--display);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.brand-hero-signature small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nwa-broadcast .event-showcase-inner {
    display: grid;
    min-height: 510px;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
    padding-block: 58px;
}

.event-showcase-copy {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.event-showcase-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.nwa-broadcast .event-showcase h1 {
    max-width: 880px;
    margin: 18px 0 25px;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.92;
}

.event-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 24px;
}

.event-showcase-meta > span {
    display: flex;
    min-width: 145px;
    flex-direction: column;
    padding: 2px 24px 2px 0;
    margin: 0 24px 10px 0;
    border-right: 1px solid var(--line);
}

.event-showcase-meta > span:last-child {
    border-right: 0;
}

.event-showcase-meta small,
.event-summary-list dt,
.event-countdown-panel small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-showcase-meta strong {
    margin-top: 4px;
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

.event-showcase .event-description {
    max-width: 680px;
    color: #b7bac3;
    line-height: 1.7;
}

.event-showcase-actions {
    margin-top: 26px;
}

.event-showcase-art {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 0;
    place-items: center;
}

.event-poster-frame {
    position: relative;
    width: min(100%, 350px);
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 36%, var(--line));
    border-radius: 15px;
    background: rgba(8, 11, 17, 0.78);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.5);
    transform: rotate(1.2deg);
}

.event-poster-frame > img:first-child {
    display: block;
    width: 100%;
    max-height: 390px;
    border-radius: 9px;
    object-fit: cover;
}

.event-poster-brand {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 112px;
    max-height: 48px;
    filter: drop-shadow(0 5px 11px rgba(0, 0, 0, 0.75));
}

.event-brand-stage,
.event-monogram {
    display: grid;
    width: min(100%, 390px);
    min-height: 260px;
    place-items: center;
    padding: 38px;
    border: 1px solid color-mix(in srgb, var(--brand-color) 40%, var(--line));
    border-radius: 16px;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--brand-color) 18%, transparent), transparent 65%),
        rgba(7, 10, 16, 0.8);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.38);
}

.event-brand-logo {
    width: 100%;
    max-height: 170px;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

.event-logo-stage {
    padding: 24px;
}

.event-detail-logo {
    display: block;
    width: auto;
    max-width: min(100%, 360px);
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

.event-poster-event-logo {
    width: min(58%, 230px);
    height: auto;
    object-fit: contain;
}

.event-monogram {
    align-content: center;
    gap: 7px;
    color: var(--gold-bright);
    font-family: var(--display);
    text-align: center;
}

.event-monogram span {
    font-size: 92px;
    font-style: italic;
    font-weight: 900;
    line-height: 0.85;
}

.event-monogram small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.event-detail-section {
    padding-top: 50px;
}

.event-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 30px;
}

.event-card-column {
    min-width: 0;
}

.event-card-heading {
    align-items: center;
    margin-bottom: 22px;
}

.event-match-list {
    gap: 13px;
}

.nwa-broadcast .event-match-card {
    border-color: rgba(205, 216, 236, 0.14);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), transparent 48%), var(--panel);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.nwa-broadcast .event-match-card.main-event {
    border-color: color-mix(in srgb, var(--brand-color) 52%, rgba(242, 182, 50, 0.35));
    box-shadow: 0 16px 42px color-mix(in srgb, var(--brand-color) 7%, transparent);
}

.event-match-card .match-sides {
    min-height: 142px;
    padding: 14px 18px;
}

.event-match-card .match-side {
    min-height: 114px;
    padding: 10px 14px;
}

.event-match-card .side-participants a {
    font-size: 16px;
}

.event-match-card .match-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.event-match-card .match-footer .text-link {
    font-size: 10px;
    text-align: right;
}

/* Completed events become a continuous broadcast results experience. */
.event-results-experience {
    display: grid;
    gap: 24px;
}

.event-main-result {
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--brand-color) 48%, var(--line));
    border-radius: 15px;
    background:
        radial-gradient(circle at 18% 8%, color-mix(in srgb, var(--brand-color) 16%, transparent), transparent 34%),
        linear-gradient(145deg, #192231, #0d131d 68%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.event-main-result::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-color) 20% 80%, transparent);
    content: "";
}

.event-main-result-header,
.event-main-result-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
}

.event-main-result-header {
    border-bottom: 1px solid var(--line);
}

.event-main-result-header > div:first-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.event-main-result-kicker,
.event-results-board-heading span,
.event-result-order small,
.event-result-summary > span,
.event-result-final > span {
    color: color-mix(in srgb, var(--brand-color) 68%, white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-main-result-header > div:first-child > strong {
    overflow: hidden;
    font-family: var(--display);
    font-size: clamp(22px, 2.5vw, 31px);
    line-height: 1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.event-result-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.event-main-result-matchup,
.event-result-matchup {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(var(--result-side-count), minmax(0, 1fr));
}

.event-main-result-matchup {
    position: relative;
    z-index: 1;
    min-height: 245px;
    padding: 24px 22px;
}

.event-result-side {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    text-align: center;
}

.event-result-side + .event-result-side::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--brand-color) 42%, var(--line));
    border-radius: 50%;
    background: #0b1018;
    color: #7f8490;
    content: "VS";
    font-family: var(--display);
    font-size: 12px;
    font-style: italic;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.event-main-result-matchup .event-result-side.is-winner {
    background: radial-gradient(circle at 50% 72%, color-mix(in srgb, var(--brand-color) 14%, transparent), transparent 55%);
}

.event-result-side.is-defeated {
    opacity: 0.66;
    filter: saturate(0.62);
}

.event-result-winner,
.event-result-defeated {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    color: color-mix(in srgb, var(--brand-color) 65%, white);
    background: color-mix(in srgb, var(--brand-color) 11%, transparent);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-result-defeated {
    color: #8c919d;
    background: rgba(255, 255, 255, 0.04);
}

.event-result-team {
    color: #f5f6f8;
    font-family: var(--display);
    font-size: clamp(16px, 1.7vw, 22px);
    font-weight: 800;
    line-height: 1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.event-result-participants {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.event-result-participants > a {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: #e7e9ee;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.event-result-participants > a:hover,
.event-result-team:hover {
    color: color-mix(in srgb, var(--brand-color) 64%, white);
}

.event-result-participants > a > span:last-child,
.event-result-snapshot {
    min-width: 0;
    overflow-wrap: anywhere;
}

.event-main-result-matchup .event-result-participants > a {
    flex-direction: column;
    font-size: 20px;
}

.event-main-result-footer {
    border-top: 1px solid var(--line);
    background: rgba(3, 6, 10, 0.28);
}

.event-main-result-footer > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.event-main-result-footer small,
.event-main-result-footer > div:first-child > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-main-result-footer small {
    color: #e2e4e9;
    font-size: 11px;
}

.event-result-actions,
.event-result-detail-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.event-results-board-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 2px 0;
}

.event-results-board-heading > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-results-board-heading strong {
    font-family: var(--display);
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
}

.event-results-board-heading > small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-results-ledger {
    overflow: hidden;
    border: 1px solid rgba(205, 216, 236, 0.15);
    border-radius: 14px;
    background: rgba(12, 17, 25, 0.84);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.event-result-row {
    display: grid;
    grid-template-columns: 66px 145px minmax(0, 1fr) 118px;
    align-items: center;
    min-height: 118px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.012);
}

.event-result-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.026);
}

.event-result-row:last-child {
    border-bottom: 0;
}

.event-result-row:hover {
    background: color-mix(in srgb, var(--brand-color) 5%, rgba(255, 255, 255, 0.024));
}

.event-result-order,
.event-result-summary,
.event-result-final {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    align-self: stretch;
    padding: 16px;
    border-right: 1px solid var(--line);
}

.event-result-order {
    align-items: center;
    padding-inline: 10px;
}

.event-result-order strong {
    color: color-mix(in srgb, var(--brand-color) 68%, white);
    font-family: var(--display);
    font-size: 25px;
    line-height: 1;
}

.event-result-summary > strong {
    color: #d9dce3;
    font-family: var(--display);
    font-size: 14px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.event-result-row .event-result-matchup {
    align-self: stretch;
}

.event-result-row .event-result-side {
    padding: 13px 14px;
}

.event-result-row .event-result-team {
    font-size: 14px;
}

.event-result-row .event-result-participants {
    gap: 8px;
}

.event-result-row .event-result-participants > a {
    font-size: 13px;
}

.event-result-row .event-result-winner {
    min-height: 18px;
    padding-block: 2px;
    font-size: 7px;
}

.event-result-final {
    align-items: flex-end;
    border-right: 0;
    text-align: right;
}

.event-result-final time {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.event-result-final .text-link {
    margin-top: 5px;
    font-size: 9px;
}

.event-result-details {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    background: rgba(3, 6, 10, 0.32);
}

.event-result-details summary {
    padding: 9px 16px;
    color: #aeb3bd;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.event-result-details[open] summary {
    color: color-mix(in srgb, var(--brand-color) 70%, white);
}

.event-result-details > div {
    display: grid;
    gap: 10px;
    padding: 2px 18px 16px;
    color: #c4c8d0;
    font-size: 12px;
    line-height: 1.6;
}

.event-result-details p {
    margin: 0;
}

.event-result-details p > strong {
    margin-right: 8px;
    color: #fff;
    font-family: var(--display);
    text-transform: uppercase;
}

.event-result-details p a {
    color: var(--gold-bright);
}

.participant-snapshot {
    color: #d7d9df;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-detail-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.event-summary-card,
.event-sidebar-callout,
.event-replay-card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%), var(--panel);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-summary-card h2 {
    margin: 6px 0 17px;
    font-size: 31px;
}

.event-summary-list {
    margin: 0;
}

.event-summary-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
}

.event-summary-list dd {
    margin: 0;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
}

.event-countdown-panel {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding: 15px;
    border-left: 3px solid var(--brand-color);
    background: color-mix(in srgb, var(--brand-color) 8%, transparent);
}

.event-countdown-panel .league-countdown {
    margin: 4px 0 0;
    color: color-mix(in srgb, var(--brand-color) 65%, white);
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

.event-live-panel {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    padding: 13px 15px;
    color: #ff98a3;
    background: rgba(255, 82, 99, 0.1);
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
}

.event-live-panel span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 5px rgba(255, 82, 99, 0.12);
}

.event-sidebar-callout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-color: rgba(242, 182, 50, 0.28);
}

.event-sidebar-callout > strong {
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.05;
    text-transform: uppercase;
}

.event-sidebar-callout > small {
    color: var(--muted);
    font-size: 10px;
}

.event-sidebar-callout .button {
    width: 100%;
    margin-top: 5px;
}

.event-replay-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-color: color-mix(in srgb, var(--brand-color) 30%, var(--line));
}

.event-replay-card > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-replay-card strong {
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

.event-replay-card strong span {
    color: var(--gold-bright);
}

@media (max-width: 980px) {
    .nwa-broadcast .brand-hero-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 30px;
    }

    .brand-hero-signature {
        min-width: 145px;
    }

    .nwa-broadcast .event-showcase-inner {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 36px;
    }

    .event-detail-layout {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 20px;
    }

    .event-result-row {
        grid-template-columns: 56px minmax(0, 1fr) 112px;
    }

    .event-result-order {
        grid-row: 1 / span 2;
    }

    .event-result-summary {
        grid-column: 2;
        grid-row: 1;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .event-result-row .event-result-matchup {
        grid-column: 2;
        grid-row: 2;
        min-height: 88px;
    }

    .event-result-final {
        grid-column: 3;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 780px) {
    .nwa-broadcast .brand-hero-inner,
    .nwa-broadcast .event-showcase-inner,
    .event-detail-layout {
        grid-template-columns: 1fr;
    }

    .nwa-broadcast .brand-hero-inner {
        align-items: start;
        gap: 26px;
        padding-block: 50px;
    }

    .brand-hero-logo {
        width: min(520px, 88vw);
        margin-inline: auto;
        object-position: center;
    }

    .brand-hero-signature {
        width: 100%;
    }

    .nwa-broadcast .event-showcase-inner {
        gap: 32px;
        padding-block: 45px;
    }

    .event-showcase-art {
        width: 100%;
    }

    .event-poster-frame,
    .event-brand-stage,
    .event-monogram {
        width: min(100%, 430px);
    }

    .event-detail-sidebar {
        position: static;
        grid-row: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-summary-card {
        grid-row: span 2;
    }

    .event-main-result-header,
    .event-main-result-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-result-chips,
    .event-result-actions {
        justify-content: flex-start;
    }

    .event-results-board-heading {
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .brand-card {
        min-height: 220px;
        padding: 25px;
    }

    .brand-card-logo {
        width: 92%;
        max-height: 90px;
    }

    .event-showcase-meta > span {
        width: 50%;
        min-width: 0;
        padding-right: 12px;
        margin-right: 0;
    }

    .event-showcase-meta > span:nth-child(even) {
        padding-left: 16px;
        border-right: 0;
    }

    .event-detail-sidebar {
        display: flex;
    }

    .event-card-heading {
        align-items: flex-start;
    }

    .event-match-card .match-sides {
        padding: 10px 14px;
    }

    .event-match-card .match-side {
        min-height: 118px;
    }

    .event-match-card .match-footer {
        display: flex;
    }

    .event-match-card .match-footer .text-link {
        text-align: left;
    }

    .event-main-result-header,
    .event-main-result-footer {
        padding: 17px;
    }

    .event-main-result-matchup {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr));
        min-height: 0;
        padding: 8px 12px;
    }

    .event-main-result-matchup .event-result-side {
        min-height: 150px;
        padding: 18px 10px;
    }

    .event-results-board-heading {
        flex-direction: column;
        gap: 5px;
    }

    .event-result-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .event-result-order {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .event-result-summary {
        grid-column: 2;
        grid-row: 1;
        padding: 15px;
    }

    .event-result-row .event-result-matchup {
        grid-column: 1 / -1;
        grid-row: 3;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
        border-top: 1px solid var(--line);
    }

    .event-result-final {
        grid-column: 2;
        grid-row: 2;
        align-items: flex-start;
        padding: 10px 15px 14px;
        border-right: 0;
        text-align: left;
    }

    .event-result-final .text-link {
        margin-top: 3px;
    }

    .event-result-details {
        grid-column: 1 / -1;
    }

    .event-result-details > div {
        padding: 14px 16px 17px;
    }
}
