.single-zc_match {
    --zhm-bg: #01070a;
    --zhm-panel: #061115;
    --zhm-line: rgba(139, 160, 169, .24);
    --zhm-muted: #87949a;
    --zhm-acid: #a8ff1a;
    --zhm-pink: #f72572;
    background: var(--zhm-bg);
}

.single-zc_match .zch-match-hero {
    position: relative;
    min-height: 720px;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid var(--zhm-line);
    background:
        radial-gradient(circle at 17% 38%, rgba(247, 37, 114, .09), transparent 25%),
        radial-gradient(circle at 83% 38%, rgba(168, 255, 26, .1), transparent 28%),
        linear-gradient(112deg, #0b0b20 0%, #031014 47%, #06170f 100%);
}

.single-zc_match .zch-match-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
    pointer-events: none;
}

.single-zc_match .zch-match-hero::after {
    content: "MATCH SIGNAL // LIVE DATA";
    position: absolute;
    right: -18px;
    bottom: 74px;
    color: rgba(255,255,255,.12);
    font: 700 9px/1 "IBM Plex Mono", Consolas, monospace;
    letter-spacing: .22em;
    transform: rotate(-90deg);
    pointer-events: none;
}

.single-zc_match .zch-match-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    min-height: 720px;
    box-sizing: border-box;
    margin-inline: auto;
    padding: 48px 0 72px;
}

.single-zc_match .zch-match-breadcrumb {
    margin: 0 0 42px;
    color: var(--zhm-muted);
    font-size: .63rem;
    letter-spacing: .12em;
}

.single-zc_match .zch-match-breadcrumb a { color: var(--zhm-acid); }

.single-zc_match .zch-match-heading {
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.single-zc_match .zch-match-heading .eyebrow {
    color: #dbe0e2;
    font-size: .64rem;
    letter-spacing: .13em;
}

.single-zc_match .zch-match-heading .eyebrow::before {
    background: linear-gradient(90deg, var(--zhm-pink) 0 62%, var(--zhm-acid) 62%);
}

.single-zc_match .zch-match-status {
    padding: 8px 11px;
    border-color: rgba(168,255,26,.62);
    background: rgba(168,255,26,.055);
    color: var(--zhm-acid);
    letter-spacing: .13em;
}

.single-zc_match .zch-match-hero h1 {
    margin: 0 auto 34px;
    color: #f2f4f4;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.single-zc_match .zch-matchup {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

.single-zc_match .zch-matchup::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, var(--zhm-pink), rgba(247,37,114,0) 36%, rgba(168,255,26,0) 64%, var(--zhm-acid));
    pointer-events: none;
}

.single-zc_match .zch-match-team {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 292px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    border: 1px solid var(--zhm-line);
    background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 48%), rgba(4,13,17,.9);
    text-align: center;
}

.single-zc_match .zch-match-team::before {
    content: "HOME";
    position: absolute;
    top: 17px;
    left: 18px;
    color: var(--zhm-pink);
    font: 700 8px/1 "IBM Plex Mono", Consolas, monospace;
    letter-spacing: .2em;
}

.single-zc_match .zch-match-team--opponent::before {
    content: "AWAY";
    left: auto;
    right: 18px;
    color: var(--zhm-acid);
}

.single-zc_match .zch-match-team::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--zhm-pink);
}

.single-zc_match .zch-match-team--opponent::after { background: var(--zhm-acid); }

.single-zc_match .zch-match-team > div {
    width: 100%;
    min-width: 0;
}

.single-zc_match .zch-match-team__logo {
    width: 148px;
    height: 148px;
    flex: 0 0 148px;
    transition: transform .35s ease;
}

.single-zc_match .zch-match-team:hover .zch-match-team__logo { transform: translateY(-4px) scale(1.025); }

.single-zc_match .zch-match-team__logo--club {
    background-position: center;
    background-size: contain;
}

.single-zc_match .zch-match-team__logo--opponent {
    width: 132px;
    height: 132px;
    flex-basis: 132px;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    background: rgba(0,7,10,.75);
}

.single-zc_match .zch-match-team__name {
    display: block;
    max-width: calc(100% - 28px);
    min-width: 8ch;
    margin-inline: auto;
    overflow: hidden;
    overflow-wrap: normal;
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    letter-spacing: -.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.single-zc_match .zch-match-team__division {
    margin-top: 9px;
    color: var(--zhm-muted);
    font-size: .56rem;
    letter-spacing: .14em;
}

.single-zc_match .zch-match-scoreboard {
    position: relative;
    display: flex;
    min-height: 292px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px 12px;
    overflow: hidden;
    border-block: 1px solid var(--zhm-line);
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.single-zc_match .zch-match-scoreboard::before,
.single-zc_match .zch-match-scoreboard::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 1px;
    top: 50%;
    background: var(--zhm-pink);
}

.single-zc_match .zch-match-scoreboard::before { left: -16px; }
.single-zc_match .zch-match-scoreboard::after { right: -16px; background: var(--zhm-acid); }

.single-zc_match .zch-match-versus,
.single-zc_match .zch-match-score {
    color: #f5f6f6;
    font-size: clamp(4.2rem, 7.2vw, 6.4rem);
    font-style: italic;
    letter-spacing: -.08em;
    line-height: .82;
    text-shadow: 5px 5px 0 rgba(255,255,255,.035);
}

.single-zc_match .zch-match-time {
    width: auto;
    margin-top: 28px;
    color: #fff;
    font-size: .73rem;
    letter-spacing: .085em;
    white-space: nowrap;
}

.single-zc_match .zch-match-time-note {
    width: auto;
    margin-top: 8px;
    color: #64747a;
    font-size: .5rem;
    letter-spacing: .12em;
}

.single-zc_match .zch-match-actions {
    position: relative;
    z-index: 5;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.single-zc_match .zch-match-button {
    position: relative;
    z-index: 6;
    pointer-events: auto !important;
    min-width: 210px;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 19px;
    border: 1px solid rgba(139,160,169,.34);
    clip-path: none;
    background: rgba(4,13,17,.88);
    font-size: .62rem;
    letter-spacing: .11em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.single-zc_match .zch-match-button:hover {
    transform: translateY(-2px);
    border-color: var(--zhm-acid);
}

.single-zc_match .zch-match-button--primary {
    border-color: var(--zhm-acid);
    background: var(--zhm-acid);
    color: #061014;
}

.single-zc_match .zch-match-information {
    width: min(1180px, calc(100% - 48px));
    grid-template-columns: .72fr 1.55fr;
    gap: 58px;
    margin: 0 auto;
    padding: 90px 0 100px;
}

.single-zc_match .zch-match-information__heading { align-self: center; }

.single-zc_match .zch-match-information__heading h2 {
    margin-top: 16px;
    color: #f3f4f4;
    font-size: clamp(3rem, 5vw, 5.1rem);
    font-style: normal;
    letter-spacing: -.055em;
    line-height: .83;
}

.single-zc_match .zch-match-facts {
    border: 0;
    gap: 1px;
    background: var(--zhm-line);
}

.single-zc_match .zch-match-facts > div {
    position: relative;
    min-height: 124px;
    padding: 25px 24px;
    border: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 58%), var(--zhm-panel);
}

.single-zc_match .zch-match-facts > div::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--zhm-pink);
}

.single-zc_match .zch-match-facts > div:nth-child(even)::after { background: var(--zhm-acid); }

.single-zc_match .zch-match-facts dt {
    color: var(--zhm-pink);
    font-size: .57rem;
    letter-spacing: .14em;
}

.single-zc_match .zch-match-facts dd {
    margin-top: 13px;
    color: #f2f4f4;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    line-height: 1;
}

.single-zc_match .zch-match-notes {
    position: relative;
    width: 100%;
    min-height: 150px;
    padding: 0 max(24px, calc((100% - 1180px) / 2));
    border-block: 1px solid var(--zhm-line);
    background: linear-gradient(90deg, rgba(247,37,114,.1), transparent 34%, transparent 68%, rgba(168,255,26,.055));
}

.single-zc_match .zch-match-notes::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--zhm-pink), var(--zhm-acid));
}

.single-zc_match .zch-match-notes p {
    color: #9aa6ab;
    font-size: .82rem;
    letter-spacing: .03em;
}

.single-zc_match .zch-match-return { position: relative; z-index: 5; background: transparent; }
.single-zc_match .zch-match-return a { color: var(--zhm-acid); letter-spacing: .1em; }

@media (max-width: 900px) {
    .single-zc_match .zch-match-hero,
    .single-zc_match .zch-match-hero__inner { min-height: 650px; }
    .single-zc_match .zch-matchup { grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr); gap: 12px; }
    .single-zc_match .zch-match-team,
    .single-zc_match .zch-match-scoreboard { min-height: 250px; }
    .single-zc_match .zch-match-team__logo { width: 118px; height: 118px; flex-basis: 118px; }
    .single-zc_match .zch-match-team__logo--opponent { width: 108px; height: 108px; flex-basis: 108px; }
    .single-zc_match .zch-match-information { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 620px) {
    .single-zc_match .zch-match-hero,
    .single-zc_match .zch-match-hero__inner { min-height: 0; }
    .single-zc_match .zch-match-hero__inner { width: min(100% - 24px, 1180px); padding: 24px 0 48px; }
    .single-zc_match .zch-match-breadcrumb { margin-bottom: 30px; }
    .single-zc_match .zch-match-heading { align-items: center; flex-direction: row; gap: 9px; }
    .single-zc_match .zch-match-heading .eyebrow { font-size: .53rem; }
    .single-zc_match .zch-match-status { padding: 6px 7px; font-size: .49rem; }
    .single-zc_match .zch-match-hero h1 { margin: 10px auto 22px; font-size: .72rem; text-align: center; }
    .single-zc_match .zch-matchup { grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr); gap: 7px; }
    .single-zc_match .zch-match-team,
    .single-zc_match .zch-match-scoreboard { min-height: 190px; }
    .single-zc_match .zch-match-team { gap: 10px; padding: 28px 5px 17px; }
    .single-zc_match .zch-match-team::before { top: 10px; left: 10px; font-size: 6px; }
    .single-zc_match .zch-match-team--opponent::before { left: auto; right: 10px; }
    .single-zc_match .zch-match-team__logo { width: 78px; height: 78px; flex-basis: 78px; }
    .single-zc_match .zch-match-team__logo--opponent { width: 70px; height: 70px; flex-basis: 70px; }
    .single-zc_match .zch-match-team > div,
    .single-zc_match .zch-match-team__name { width: 100%; }
    .single-zc_match .zch-match-team__name { max-width: calc(100% - 8px); min-width: 8ch; font-size: clamp(.8rem, 4.1vw, 1rem); letter-spacing: -.05em; }
    .single-zc_match .zch-match-team__division { display: none; }
    .single-zc_match .zch-match-scoreboard { padding-inline: 2px; }
    .single-zc_match .zch-match-scoreboard::before,
    .single-zc_match .zch-match-scoreboard::after { width: 20px; }
    .single-zc_match .zch-match-versus,
    .single-zc_match .zch-match-score { font-size: clamp(2.6rem, 13vw, 3.8rem); }
    .single-zc_match .zch-match-time { width: 154px; margin-top: 22px; font-size: .54rem; }
    .single-zc_match .zch-match-time-note { width: 135px; font-size: .42rem; }
    .single-zc_match .zch-match-actions { align-items: stretch; flex-direction: column; margin: 12px 0 0; }
    .single-zc_match .zch-match-button { width: 100%; min-width: 0; min-height: 48px; }
    .single-zc_match .zch-match-information { width: min(100% - 24px, 1180px); padding: 64px 0 72px; }
    .single-zc_match .zch-match-information__heading h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .single-zc_match .zch-match-facts { grid-template-columns: 1fr 1fr; }
    .single-zc_match .zch-match-facts > div { min-height: 105px; padding: 20px 17px; }
    .single-zc_match .zch-match-facts > div::after { left: 17px; }
    .single-zc_match .zch-match-facts dd { font-size: 1rem; }
    .single-zc_match .zch-match-notes { min-height: 134px; padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .single-zc_match .zch-match-team__logo,
    .single-zc_match .zch-match-button { transition: none; }
}
