/* ─────────────────────────────────────────
   Events — Public & Admin Shared Styles
   ───────────────────────────────────────── */

/* ── Events list ─────────────────────────────────────────────────────────────── */
.events-group { margin-bottom: 3rem; }

.events-group__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-3);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.events-group__label--live { color: var(--color-red); }

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ── Event card (list item) ──────────────────────────────────────────────────── */
.event-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-2);
    text-decoration: none;
    transition: background 0.12s;
    border-bottom: 1px solid var(--color-border);
}

.event-card:last-child { border-bottom: none; }
.event-card:hover { background: var(--color-bg-3); }

.event-card__poster {
    flex-shrink: 0;
    width: 64px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-3);
}

.event-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card__info { flex: 1; min-width: 0; }

.event-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}

.event-card__date { font-size: 0.82rem; color: var(--color-text-3); }

.event-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.event-card__location { font-size: 0.82rem; color: var(--color-text-3); }

/* ── Event Hero ──────────────────────────────────────────────────────────────── */
.event-hero {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.event-hero__poster-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(20px) brightness(0.3);
    transform: scale(1.1);
}

.event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, var(--color-bg) 100%);
}

.event-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
}

.event-hero__poster-wrap {
    flex-shrink: 0;
    width: 130px;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, var(--color-bg-2) 0%, var(--color-bg-3) 100%);
}
/* GLAU branded placeholder — shows when no poster or image fails to load */
.event-hero__poster-wrap::before {
    content: 'GLAU';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.12);
    pointer-events: none;
    white-space: nowrap;
}
.event-hero__poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.event-hero__info { flex: 1; }

.event-hero__name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.event-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--color-text-3);
}

/* ── Network badge ───────────────────────────────────────────────────────────── */
.event-card-network {
    font-size: 0.78rem;
    color: var(--color-red);
    font-weight: 600;
    background: var(--color-red-dim);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Event Detail Page
   ───────────────────────────────────────────────────────────────────────────── */

.ev-content { padding-top: 0.5rem; }

/* ── Awards summary ──────────────────────────────────────────────────────────── */
.ev-awards-summary {
    background: rgba(201,162,39,0.06);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem 0.75rem;
    margin-bottom: 2rem;
}

.eas-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 0.65rem;
}

.eas-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0;
    border-top: 1px solid rgba(201,162,39,0.1);
    font-size: 0.82rem;
}

.eas-row__key {
    flex-shrink: 0;
    min-width: 160px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-3);
}

.eas-row__val { color: var(--color-text); }

.eas-sub {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* ── Featured bout section ───────────────────────────────────────────────────── */
.fb-section { margin-bottom: 2.5rem; }

.fb-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.fb-header__label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-red);
}

.fb-header__div {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-3);
}
.fb-header__div::before {
    content: '·';
    margin-right: 0.65rem;
    color: var(--color-border-light);
}

/* Featured matchup card */
.fb-matchup {
    display: grid;
    grid-template-columns: minmax(0,5fr) minmax(190px,3fr) minmax(0,5fr);
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    position: relative;
}
.fb-matchup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(210,10,10,0.055) 0%,
        transparent 38%,
        transparent 62%,
        rgba(74,158,255,0.04) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.fb-matchup:hover {
    border-color: rgba(201,162,39,0.35);
    box-shadow: inset 4px 0 0 rgba(201,162,39,0.75), inset -4px 0 0 rgba(201,162,39,0.75), 0 6px 32px rgba(0,0,0,0.35);
}
.fb-matchup:focus-visible { outline: 2px solid var(--color-red); outline-offset: -2px; }

.fb-matchup--done .fb-side--loss { opacity: 0.55; }

/* Fighter sides */
.fb-side {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    padding: 0.5rem 1.25rem 0;
    position: relative;
    z-index: 1;
}

.fb-side--red  { flex-direction: row; }
.fb-side--blue { flex-direction: row; }

.fb-side__img-wrap {
    flex-shrink: 0;
    width: 135px;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    overflow: hidden;
    align-self: stretch;
}

.fb-side__img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.fb-side__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.fb-side__img--flip { transform: scaleX(-1); }

.fb-side__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 2.5rem;
}

.fb-side__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    padding-bottom: 1rem;
}

.fb-side__info--right {
    text-align: right;
    align-items: flex-end;
}

.fb-side__badge { line-height: 1; }

.fb-side__name {
    text-decoration: none;
    display: block;
    line-height: 1.15;
    margin: 0.15rem 0;
}
.fb-side__name:hover .fb-side__last { color: var(--color-red); }

.fb-side__first {
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-2);
}

.fb-side__last {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1;
    transition: color 0.12s;
}

.fb-side--win .fb-side__last { color: #4dd89b; }

.fb-side__rec {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-3);
}

.fb-side__player {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Featured center panel — no column borders; card gradient handles visual separation */
.fb-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.fb-center__title-badge {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4aa35;
    background: rgba(201,162,39,0.16);
    border: 1px solid rgba(201,162,39,0.38);
    border-radius: 4px;
    padding: 0.18rem 0.7rem;
}

/* Result for completed featured bout */
.fb-center__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1.2;
    margin-bottom: 2px;
}
.fb-center__winner {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4dd89b;
}
.fb-center__def {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.fb-center__loser {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-3);
}

.fb-center__method {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
}
.fb-center__detail {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}
.fb-center__time {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-3);
}

.fb-center__draw {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #4a9eff;
}
.fb-center__nc {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* VS for upcoming featured bout */
.fb-center__vs {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-text-2);
    letter-spacing: 0.05em;
    line-height: 1;
}
.fb-center__rounds {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fb-center__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 2px;
}
.fb-center__yt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

/* ── Card section header ─────────────────────────────────────────────────────── */
.ev-card-section { margin-bottom: 2.5rem; }

.ev-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.ev-card-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-3);
}

/* ── Bout list — individual card rows ────────────────────────────────────────── */
.bout-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Bout row ────────────────────────────────────────────────────────────────── */
.bout-row {
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(120px,1fr) minmax(0,3fr);
    align-items: stretch;
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, box-shadow 0.15s;
}
/* Red/blue corner tint — same language as the featured matchup card */
.bout-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(210,10,10,0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(74,158,255,0.035) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.bout-row:hover {
    border-color: rgba(255,255,255,0.13);
    box-shadow: inset 3px 0 0 var(--color-red), inset -3px 0 0 rgba(74,158,255,0.7), 0 2px 14px rgba(0,0,0,0.22);
}
.bout-row:hover::before {
    background: linear-gradient(
        to right,
        rgba(210,10,10,0.09) 0%,
        transparent 30%,
        transparent 70%,
        rgba(74,158,255,0.06) 100%
    );
}
.bout-row:focus-visible { outline: 2px solid var(--color-red); outline-offset: -2px; }

/* ── Fighter panel (both sides) ──────────────────────────────────────────────── */
.bf-panel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem 0;
    position: relative;
    z-index: 1;
    transition: opacity 0.15s;
}

.bf-panel--red  { flex-direction: row; }
.bf-panel--blue { flex-direction: row; }

.bf-panel--loss { opacity: 0.62; }

/* Fighter image */
.bf-img-wrap {
    flex-shrink: 0;
    width: 80px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
}

.bf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.bf-panel--blue .bf-img { transform: scaleX(-1); }

.bf-img--ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.5rem;
}

/* Fighter info */
.bf-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.25rem;
}

.bf-info--right {
    text-align: right;
    align-items: flex-end;
}

.bf-badge { line-height: 1; }

.bf-name {
    text-decoration: none;
    line-height: 1.2;
    display: block;
}
.bf-name:hover .bf-last { color: var(--color-red); }

.bf-first {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-2);
}

.bf-last {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color 0.1s;
}

.bf-panel--win .bf-last { color: #4dd89b; }

.bf-record {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-3);
}

.bf-player {
    font-size: 0.66rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Center result panel ─────────────────────────────────────────────────────── */
.bout-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0.85rem 0.7rem;
    text-align: center;
    position: relative;
    z-index: 1;
    /* Subtle dark well — distinguishes center from fighter panels without column borders */
    background: rgba(0,0,0,0.07);
}

.bc-division {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-red);
}

.bc-title-badge {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a227;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 3px;
    padding: 0.08rem 0.4rem;
}

.bc-vs {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-muted);
    margin: 2px 0;
    letter-spacing: 0.04em;
}

.bc-rounds {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bc-outcome {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
}
.bc-outcome--draw { background: rgba(74,158,255,0.12); color: #4a9eff; }
.bc-outcome--nc   { background: rgba(255,255,255,0.06); color: var(--color-text-muted); }

.bc-method {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
}

.bc-detail {
    font-size: 0.68rem;
    color: var(--color-text-muted);
}

.bc-time {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-3);
}

/* Award chips */
.bc-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    justify-content: center;
    margin-top: 3px;
}

.bout-award-chip {
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    white-space: nowrap;
    text-transform: uppercase;
}
.bout-award-chip--fotn {
    background: rgba(210,10,10,0.14);
    color: var(--color-red);
    border: 1px solid rgba(210,10,10,0.22);
}
.bout-award-chip--potn {
    background: rgba(201,162,39,0.11);
    color: #c9a227;
    border: 1px solid rgba(201,162,39,0.22);
}

/* YouTube links */
.bc-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.bc-yt-link {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.1s;
}
.bc-yt-link:hover { color: #ff4444; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
    /* Featured bout stacks vertically */
    .fb-matchup {
        grid-template-columns: 1fr;
    }
    .fb-side {
        padding: 1.1rem 1rem;
        align-items: center;
    }
    .fb-side__img-wrap { width: 80px; }
    .fb-side__last { font-size: 1.2rem; }
    .fb-side__info--right { text-align: left; align-items: flex-start; }
    .fb-side__img--flip { transform: none; }
    .fb-center {
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 0.85rem 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
    }

    /* Normal bouts stack vertically */
    .bout-row { grid-template-columns: 1fr; }
    .bout-center {
        border-top: 1px solid rgba(255,255,255,0.05);
        padding: 0.7rem 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
        background: rgba(0,0,0,0.12);
    }
    .bf-panel--blue .bf-img { transform: none; }
    .bf-info--right { text-align: left; align-items: flex-start; }
    .bf-img-wrap { width: 62px; }

    /* Hero */
    .event-hero__inner { flex-direction: column; align-items: flex-start; }
    .event-hero__poster-wrap { width: 90px; }

    /* Awards summary */
    .eas-row { flex-direction: column; gap: 0.15rem; }
    .eas-row__key { min-width: 0; }
}

/* ── Tournament bracket (public event page) ──────────────────────────────────── */
.pub-tourn-section {
    margin: 2rem 0;
}

.pub-tourn-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.6rem;
}

.pub-tourn-header__label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-red);
}

.pub-tourn-header__div {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.pub-tourn-header__name {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.pub-bracket {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.pub-bracket__col {
    flex: 1;
    min-width: 148px;
    display: flex;
    flex-direction: column;
}

.pub-bracket__col-head {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-align: center;
    padding: 0.4rem 0.5rem 0.6rem;
}

.pub-bracket__slots {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pub-bracket__slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    box-sizing: border-box;
}

.pub-match {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 0.45rem 0.55rem;
    gap: 0.15rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

a.pub-match:hover,
a.pub-match:focus-visible {
    border-color: rgba(201,162,39,0.45);
    background: var(--color-bg-3);
    box-shadow: 0 0 0 1px rgba(201,162,39,0.15), 0 4px 12px rgba(0,0,0,0.28);
}
a.pub-match:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: -2px;
}

.pub-match--empty {
    opacity: 0.4;
    cursor: default;
}

.pub-match__fighter {
    display: flex;
    align-items: center;
    min-height: 1.2em;
}

.pub-match__fighter--win .pub-match__name {
    color: #fff;
    font-weight: 600;
}

.pub-match__fighter--loss .pub-match__name {
    color: var(--color-muted);
    opacity: 0.7;
}

.pub-match__name {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.pub-match__tbd {
    font-size: 0.72rem;
    color: var(--color-muted);
    font-style: italic;
}

.pub-match__result {
    font-size: 0.62rem;
    color: var(--color-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.1rem 0;
    text-align: center;
}

.pub-match__result--pending {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pub-match__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 0.2rem;
}

@media (max-width: 720px) {
    .pub-bracket {
        flex-direction: column;
        overflow-x: visible;
    }

    .pub-bracket__col {
        min-width: 0;
        width: 100%;
    }

    .pub-bracket__col + .pub-bracket__col {
        border-top: 1px solid rgba(255,255,255,0.06);
        margin-top: 1rem;
        padding-top: 0.5rem;
    }

    .pub-bracket__slots {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 6px;
    }

    .pub-bracket__slot {
        padding: 0;
        flex-grow: unset !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Events listing page — schedule / archive
   ═══════════════════════════════════════════════════════════════════════════════ */

.ev-sched__head {
    margin-bottom: 1.5rem;
}

.ev-sched__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

/* ── Tab switcher ────────────────────────────────────────────────────────────── */
.ev-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.ev-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.ev-tab:hover {
    color: var(--color-text-2);
}

.ev-tab--active {
    color: var(--color-text);
    border-bottom-color: var(--color-red);
}

.ev-tab__count {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255,255,255,0.07);
    color: var(--color-text-muted);
    border-radius: 10px;
    padding: 0.1rem 0.5rem;
    min-width: 1.4em;
    text-align: center;
}

.ev-tab--active .ev-tab__count {
    background: rgba(210,10,10,0.15);
    color: var(--color-red);
}

/* ── Event list ──────────────────────────────────────────────────────────────── */
.ev-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Event card ──────────────────────────────────────────────────────────────── */
.ev-ec {
    display: flex;
    align-items: stretch;
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    min-height: 120px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ev-ec:hover {
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.ev-ec:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: -2px;
}

.ev-ec--live {
    border-color: rgba(210,10,10,0.35);
}

/* ── Visual: red fighter | brand tile | blue fighter ────────────────────────── */
.ev-ec__visual {
    flex-shrink: 0;
    width: 256px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        to right,
        rgba(210,10,10,0.1) 0%,
        transparent 35%,
        transparent 65%,
        rgba(74,158,255,0.07) 100%
    );
}

/* Fighter image panels */
.ev-ec__fighter {
    flex: 1;
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.ev-ec__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ev-ec__img--flip {
    transform: scaleX(-1);
}

.ev-ec__img-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.09);
    font-size: 2rem;
}

/* Brand tile — center column of the visual area */
.ev-ec__brand {
    flex-shrink: 0;
    width: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0.7rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ev-ec__brand-lines {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ev-ec__brand-lines span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.ev-ec__brand-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.88);
    margin-top: 2px;
}

/* ── Event info ──────────────────────────────────────────────────────────────── */
.ev-ec__info {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.ev-ec__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ev-ec__date {
    font-size: 0.8rem;
    color: var(--color-text-3);
}

.ev-ec__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ev-ec__matchup {
    font-size: 0.82rem;
    color: var(--color-text-2);
    line-height: 1.4;
    margin-top: 0.1rem;
}

.ev-ec__winner { font-weight: 600; color: var(--color-text); }
.ev-ec__def    { color: var(--color-text-muted); font-size: 0.76rem; }
.ev-ec__loser  { color: var(--color-text-3); }
.ev-ec__vs     { color: var(--color-text-2); }
.ev-ec__nc     { color: var(--color-text-muted); font-size: 0.76rem; }
.ev-ec__tba    { color: var(--color-text-muted); font-style: italic; }

.ev-ec__awards {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-top: 0.15rem;
}

/* ── Action button ───────────────────────────────────────────────────────────── */
.ev-ec__action {
    flex-shrink: 0;
    width: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.ev-ec__btn {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

/* ── Empty state ─────────────────────────────────────────────────────────────── */
.ev-empty {
    padding: 4.5rem 2rem;
    text-align: center;
    color: var(--color-text-muted);
}

.ev-empty__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.ev-empty__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-2);
    margin-bottom: 0.4rem;
}

.ev-empty__sub {
    font-size: 0.88rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 780px) {
    .ev-ec {
        flex-direction: column;
    }

    .ev-ec__visual {
        width: 100%;
        min-height: 140px;
    }

    .ev-ec__action {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding: 0.8rem 1rem;
        justify-content: flex-start;
    }

    .ev-ec__btn {
        width: auto;
        min-width: 160px;
    }

    .ev-tabs { gap: 0; }

    .ev-tab { padding: 0.75rem 1rem; font-size: 0.72rem; }
}

/* ── Event related news ──────────────────────────────────────────────────────── */
.ev-rn-section { padding-top: 0; }

.ev-rn-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--color-border);
}

.ev-rn-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}

.ev-rn-viewall {
    font-size: 0.72rem;
    color: var(--color-red);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
}
.ev-rn-viewall:hover { opacity: .75; }

.ev-rn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.ev-rn-card {
    display: block;
    padding: 1rem 1.1rem;
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-red);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .15s;
}
.ev-rn-card:hover { background: var(--color-bg-3); }

.ev-rn-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.ev-rn-card__date {
    font-size: 0.7rem;
    color: var(--color-text-3);
}

.ev-rn-card__tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-red);
    padding: 0.15rem 0.4rem;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.ev-rn-card__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.ev-rn-card__excerpt {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-text-3);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 600px) {
    .ev-rn-grid { grid-template-columns: 1fr; }
    .ev-rn-header { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}
