/* ================================
   Components CSS
   ================================ */

/* ============= Fight cards ============= */

.fight-card-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 40, 104, 0.08) 100%);
}

.fight-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.fight-cards-grid--wide {
    grid-template-columns: 1fr;
}

.fight-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}
.fight-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-deep), 0 0 24px rgba(255, 215, 0, 0.1);
}
.fight-card--title::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hot) 50%, var(--gold) 100%);
}

.fight-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fight-card__weight {
    font-family: var(--f-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}
.fight-card__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.fight-card__fighters {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}
.fight-card__side {
    text-align: center;
}
.fight-card__name {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
    line-height: 1.1;
}
.fight-card__record {
    font-family: var(--f-mono);
    font-size: 0.82rem;
    color: var(--text-dim);
}
.fight-card__vs {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--red);
    letter-spacing: 0.08em;
}

.fight-card__odds {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--r-sm);
    font-family: var(--f-mono);
    font-size: 0.88rem;
}
.fight-card__odds-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-width: 60px;
}
.fight-card__odds-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.fight-card__odds-value {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.2rem 0.55rem;
    border-radius: var(--r-xs);
}
.fight-card__odds-value--favorite {
    background: rgba(0, 40, 104, 0.5);
    border: 1px solid var(--blue-hot);
    color: #7fb0ff;
}
.fight-card__odds-value--underdog {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid var(--gold-dim);
    color: var(--gold);
}
.fight-card__vs-odds { color: var(--text-muted); align-self: center; }

/* ============= Fight preview page ============= */

.fight-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, rgba(0, 40, 104, 0.25) 0%, transparent 100%);
}
.fight-hero__title {
    margin-bottom: 1rem;
}
.fight-hero__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.fight-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.fight-hero__meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.fight-hero__compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    margin: 1.5rem 0;
}
.fighter-block {
    text-align: center;
}
.fighter-block__portrait {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid var(--gold-dim);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 3rem;
    color: var(--gold);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}
.fighter-block--red .fighter-block__portrait {
    border-color: var(--red);
}
.fighter-block--blue .fighter-block__portrait {
    border-color: var(--blue-hot);
}
.fighter-block__corner {
    font-family: var(--f-display);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.fighter-block--red .fighter-block__corner { color: var(--red-hot); }
.fighter-block--blue .fighter-block__corner { color: #7fb0ff; }
.fighter-block__name {
    font-family: var(--f-display);
    font-size: 1.8rem;
    color: var(--text-bright);
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.fighter-block__nick {
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 0.5rem;
}
.fighter-block__record {
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.fighter-block__rank {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    border-radius: var(--r-xs);
    text-transform: uppercase;
}
.fighter-block__country {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vs-divider {
    font-family: var(--f-display);
    font-size: 3rem;
    color: var(--red);
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(191, 10, 48, 0.4);
    line-height: 1;
}
.vs-divider__weight {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    text-shadow: none;
}

/* Tale of the Tape */
.tale-of-tape {
    margin: 2rem 0;
    overflow-x: auto;
}
.tale-of-tape table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-2);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.tale-of-tape th, .tale-of-tape td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.tale-of-tape thead th {
    font-family: var(--f-display);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0, 40, 104, 0.3);
    border-bottom: 2px solid var(--gold-dim);
}
.tale-of-tape td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dim);
}
.tale-of-tape tbody tr:hover td { background: rgba(255, 215, 0, 0.04); }

/* Stats bars comparison */
.stats-compare {
    margin: 2rem 0;
}
.stat-row {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.stat-row__bar-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.stat-row__bar-side--left {
    justify-content: flex-end;
}
.stat-row__label {
    text-align: center;
    font-family: var(--f-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}
.stat-row__value {
    font-family: var(--f-mono);
    font-weight: 700;
    color: var(--text-bright);
    min-width: 50px;
    text-align: center;
}
.stat-row__bar {
    flex: 1;
    max-width: 180px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}
.stat-row__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-hot), var(--gold));
    border-radius: 4px;
    transition: width var(--t-slow);
}
.stat-row__fill--right {
    background: linear-gradient(270deg, var(--red), var(--gold));
}

/* Radar chart container */
.radar-chart {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.radar-chart svg { width: 100%; height: auto; display: block; }
.radar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.88rem;
}
.radar-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.radar-legend__swatch {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

/* Pick highlight */
.pick-highlight {
    margin: 2rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(191, 10, 48, 0.06) 100%);
    border-left: 4px solid var(--gold);
    border-radius: var(--r-md);
}
.pick-highlight__label {
    font-family: var(--f-display);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.pick-highlight__value {
    font-family: var(--f-display);
    font-size: 1.6rem;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}
.pick-highlight__desc {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Confidence meter */
.confidence-meter {
    margin: 1rem 0;
}
.confidence-meter__label {
    font-family: var(--f-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.confidence-meter__track {
    height: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.confidence-meter__fill {
    height: 100%;
    border-radius: 5px;
    transition: width var(--t-slow);
}
.confidence-meter__fill--high {
    width: 90%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}
.confidence-meter__fill--medium {
    width: 60%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-hot));
}
.confidence-meter__fill--low {
    width: 30%;
    background: linear-gradient(90deg, var(--red-dim), var(--red-hot));
}
.confidence-meter__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Method probability */
.method-probability {
    margin: 1.5rem 0;
}
.method-bar {
    display: flex;
    height: 40px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}
.method-bar__seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    transition: flex-basis var(--t-slow);
}
.method-bar__seg--ko { background: linear-gradient(90deg, var(--red-dim), var(--red)); }
.method-bar__seg--sub { background: linear-gradient(90deg, var(--blue), var(--blue-hot)); }
.method-bar__seg--dec { background: linear-gradient(90deg, var(--gold-dim), var(--gold)); color: var(--blue-dim); }
.method-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.method-legend strong { color: var(--text-bright); }

/* Last 5 fights timeline - visual with odds */
.last-5 {
    margin: 1.5rem 0;
}
.last-5__title {
    font-family: var(--f-display);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.last-5__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}
.last-5__fight {
    position: relative;
    padding: 0.85rem 0.5rem;
    background: var(--bg-3);
    border: 2px solid var(--border);
    border-radius: var(--r-sm);
    text-align: center;
    transition: transform var(--t-fast);
}
.last-5__fight:hover { transform: translateY(-2px); }
.last-5__fight--win { border-color: rgba(76, 175, 80, 0.5); background: rgba(76, 175, 80, 0.08); }
.last-5__fight--loss { border-color: var(--red-dim); background: rgba(191, 10, 48, 0.08); }
.last-5__fight--nc { border-color: var(--text-muted); opacity: 0.75; }

.last-5__result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
}
.last-5__result--w { background: rgba(76, 175, 80, 0.2); color: #5cd65c; border: 2px solid #4caf50; }
.last-5__result--l { background: rgba(191, 10, 48, 0.2); color: var(--red-hot); border: 2px solid var(--red); }
.last-5__result--nc { background: rgba(107, 122, 144, 0.2); color: var(--text-muted); border: 2px solid var(--text-muted); }

.last-5__opponent {
    font-size: 0.78rem;
    color: var(--text-bright);
    font-weight: 600;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.last-5__method {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 0.35rem;
}
.last-5__odds-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}
.last-5__odds-value {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--r-xs);
}
.last-5__odds-value--fav {
    background: rgba(0, 40, 104, 0.4);
    border: 1px solid var(--blue-hot);
    color: #7fb0ff;
}
.last-5__odds-value--dog {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid var(--gold-dim);
    color: var(--gold);
}
.last-5__event {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* X-Factor block */
.x-factor {
    margin: 2rem 0;
    padding: 1.75rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--r-md);
}
.x-factor__label {
    font-family: var(--f-display);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-hot);
    margin-bottom: 0.5rem;
}
.x-factor__headline {
    font-family: var(--f-display);
    font-size: 1.45rem;
    color: var(--text-bright);
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
}
.x-factor__body {
    color: var(--text-dim);
    line-height: 1.75;
    font-size: 1rem;
}

/* Bookmaker card */
.bookmaker-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color var(--t-base);
}
.bookmaker-card:hover { border-color: var(--gold-dim); }
.bookmaker-card__rank {
    font-family: var(--f-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}
.bookmaker-card__body h3 {
    margin-bottom: 0.35rem;
    font-size: 1.5rem;
}
.bookmaker-card__tagline {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.bookmaker-card__vip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.bookmaker-card__vip-label {
    color: var(--gold);
    font-family: var(--f-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.bookmaker-card__vip-value { color: var(--text-bright); }
.bookmaker-card__cta {
    padding: 0.75rem 1.5rem;
}
.bookmaker-card__rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--f-mono);
    font-weight: 700;
    color: var(--gold);
}
.bookmaker-card__rating-star { color: var(--gold); }

@media (max-width: 720px) {
    .bookmaker-card { grid-template-columns: 1fr; text-align: center; }
    .bookmaker-card__cta { width: 100%; }
}

/* Article body (markdown-rendered) */
.article-body {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
}
.article-body h2 {
    font-family: var(--f-display);
    font-size: 1.9rem;
    color: var(--text-bright);
    letter-spacing: 0.01em;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}
.article-body h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 0.6rem;
    border-radius: 2px;
}
.article-body h3 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin: 2rem 0 0.75rem;
}
.article-body p { margin-bottom: 1.2rem; }
.article-body p strong { color: var(--text-bright); }
.article-body a {
    color: var(--gold);
    border-bottom: 1px dashed var(--gold-dim);
    transition: color var(--t-fast);
}
.article-body a:hover { color: var(--gold-hot); border-bottom-style: solid; }
.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}
.article-body li { margin-bottom: 0.6rem; }
.article-body li strong { color: var(--text-bright); }
.article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(255, 215, 0, 0.04);
    color: var(--text);
    font-style: italic;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-body .table-wrap {
    margin: 1.75rem 0;
    overflow-x: auto;
    border-radius: var(--r-md);
}
.article-body table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-2);
    font-size: 0.94rem;
}
.article-body table th {
    background: rgba(0, 40, 104, 0.3);
    color: var(--gold);
    font-family: var(--f-display);
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gold-dim);
}
.article-body table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
    line-height: 1.55;
}
.article-body table tr:hover td { background: rgba(255, 215, 0, 0.03); }
.article-body table td strong { color: var(--text-bright); }

/* SEO block */
.seo-block {
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}
.seo-block > h2 {
    font-family: var(--f-display);
    font-size: 2rem;
    line-height: 1.25;
    color: var(--text-bright);
    margin: 0 0 1.75rem 0;
    padding-bottom: 0.75rem;
    letter-spacing: 0.01em;
}
.seo-block > h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 0.75rem;
    border-radius: 2px;
}
.seo-block h3 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin: 2.5rem 0 1rem 0;
    letter-spacing: 0.01em;
}
.seo-block h4 {
    font-family: var(--f-display);
    font-size: 1.08rem;
    color: var(--red-hot);
    margin: 1.75rem 0 0.75rem 0;
}
.seo-block p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 1.2rem 0;
}
.seo-block p strong { color: var(--text-bright); font-weight: 600; }
.seo-block a {
    color: var(--gold);
    border-bottom: 1px dashed var(--gold-dim);
}
.seo-block a:hover { color: var(--gold-hot); border-bottom-style: solid; }
.seo-block ul, .seo-block ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}
.seo-block li {
    margin-bottom: 0.65rem;
    color: var(--text-dim);
    line-height: 1.75;
    font-size: 1rem;
}
.seo-block li strong { color: var(--text-bright); font-weight: 600; }

/* Blog card */
.blog-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
}
.blog-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-dim);
}
.blog-card__category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(191, 10, 48, 0.15);
    color: var(--red-hot);
    font-family: var(--f-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--r-xs);
    margin-bottom: 0.75rem;
}
.blog-card__title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.blog-card__excerpt {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

/* Hero image (OG-banner inside page) */
.hero-image {
    margin: 1.5rem 0 2rem 0;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.1);
}
.hero-image img { display: block; width: 100%; height: auto; }

/* Responsive */
@media (max-width: 900px) {
    .fight-cards-grid { grid-template-columns: 1fr; }
    .fight-hero__compare {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .fighter-block__portrait { width: 140px; height: 140px; font-size: 2.5rem; }
    .vs-divider { font-size: 2rem; }
    .stat-row { grid-template-columns: 1fr; gap: 0.35rem; text-align: center; }
    .stat-row__bar-side { justify-content: center; }
    .last-5__grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
}

@media (max-width: 520px) {
    .cover { padding: 6rem 0 3rem; min-height: auto; }
    .cover__main-card { padding: 1.25rem 1rem; }
    .fighter-vs { gap: 0.5rem; }
    .cover__cta-row .btn { width: 100%; }
    .fight-card__fighters { gap: 0.4rem; }
}
