/* ==========================================================================
   XSport Predictions
   ========================================================================== */

.fks-pred {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e6f1ff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Breadcrumb ── */
.fks-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 10px;
    font-size: 13px;
    overflow-x: auto;
    white-space: nowrap;
}
.fks-bc-sep {
    color: #4a5068;
    margin: 0 10px;
    font-size: 11px;
}
.fks-bc-link {
    color: #8892b0;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fks-bc-link:hover { color: #64ffda; }
.fks-bc-link::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238892b0'%3E%3Cpath d='M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.fks-bc-link + .fks-bc-sep + .fks-bc-link::before,
.fks-bc-current::before { display: none; }
.fks-bc-current {
    color: #e6f1ff;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fks-pred__title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
}

/* ── Filter Tabs ── */
.fks-pred-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.fks-pred-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 999px;
    color: #8892b0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}
.fks-pred-filter:hover { background: rgba(255,255,255,.06); color: #e6f1ff; }
.fks-pred-filter--active {
    background: rgba(100,255,218,.08);
    border-color: #64ffda;
    color: #64ffda;
}
.fks-pred-filter__count {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,.06);
    padding: 1px 8px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}
.fks-pred-filter--active .fks-pred-filter__count {
    background: rgba(100,255,218,.15);
}

/* ── Prediction Card Grid ── */
.fks-pred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.fks-pred-listview {
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 12px;
    overflow: hidden;
    background: #12121f;
}

.fks-pred-row {
    display: grid;
    grid-template-columns: 64px 1fr 88px;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    text-decoration: none;
    color: #e6f1ff;
    background: #131320;
    transition: background .15s;
}
.fks-pred-row:hover {
    background: #1a1a2e;
    color: #e6f1ff;
}
.fks-pred-row:last-child { border-bottom: 0; }

.fks-pred-row__time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}
.fks-pred-row__day {
    font-size: 11px;
    font-weight: 700;
    color: #e6f1ff;
}
.fks-pred-row__clock {
    font-size: 11px;
    color: #8892b0;
    font-variant-numeric: tabular-nums;
}

.fks-pred-row__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fks-pred-row__meta {
    font-size: 10px;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fks-pred-row__teams {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fks-pred-row__team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    min-width: 0;
}
.fks-pred-row__team span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fks-pred-row__logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fks-pred-row__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}
.fks-pred-row__pick {
    font-size: 14px;
    font-weight: 800;
    color: #64ffda;
}
.fks-pred-row__sub {
    font-size: 10px;
    color: #a8b2c8;
    white-space: nowrap;
}
.fks-pred-row__status {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 2px 7px;
    border-radius: 999px;
}
.fks-pred-row__status--verified {
    background: rgba(34,197,94,.12);
    color: #22c55e;
}
.fks-pred-row__status--upcoming {
    background: rgba(100,255,218,.1);
    color: #64ffda;
}

.fks-pred-card {
    background: #12121f;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: transform .15s, border-color .15s;
    text-decoration: none;
    color: #e6f1ff;
    display: block;
}
.fks-pred-card:hover {
    transform: translateY(-2px);
    border-color: rgba(100,255,218,.2);
    color: #e6f1ff;
}

.fks-pred-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.fks-pred-card__logos { display: flex; align-items: center; gap: 6px; }
.fks-pred-card__logo { width: 28px; height: 28px; border-radius: 50%; }
.fks-pred-card__vs { color: #4a5068; font-size: 11px; font-weight: 700; }
.fks-pred-card__teams { flex: 1; min-width: 0; }
.fks-pred-card__match {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fks-pred-card__meta { font-size: 11px; color: #8892b0; margin-top: 2px; }

.fks-pred-card__consensus {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(100,255,218,.04);
    border-radius: 8px;
    margin-bottom: 12px;
}
.fks-pred-card__pick { font-size: 20px; font-weight: 800; color: #64ffda; min-width: 60px; text-align: center; }
.fks-pred-card__reasoning {
    font-size: 12px;
    color: #a8b2c8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Vote bar in card */
.fks-pred-card__votes {
    margin-bottom: 12px;
}

.fks-pred-card__footer { display: flex; justify-content: space-between; align-items: center; }
.fks-pred-card__status {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; padding: 3px 8px; border-radius: 4px;
}
.fks-pred-card__status--completed { background: rgba(100,255,218,.1); color: #64ffda; }
.fks-pred-card__status--verified { background: rgba(34,197,94,.1); color: #22c55e; }
.fks-pred-card__confidence { font-size: 11px; color: #8892b0; }

/* ── Vote Bar (shared) ── */
.fks-vote-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a2e;
    margin-bottom: 6px;
}
.fks-vote-bar__seg { transition: width .5s ease; min-width: 2px; }
.fks-vote-bar__seg--home { background: #22c55e; }
.fks-vote-bar__seg--draw { background: #f59e0b; }
.fks-vote-bar__seg--away { background: #ef4444; }

.fks-vote-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #8892b0;
}
.fks-vote-labels strong { color: #e6f1ff; }

/* ── Prediction Detail ── */
.fks-pred-detail__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 20px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}
.fks-pred-detail__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 200px;
}
.fks-pred-detail__team-logo { width: 56px; height: 56px; }
.fks-pred-detail__team-name { font-size: 14px; font-weight: 600; text-align: center; }
.fks-pred-detail__center { text-align: center; min-width: 120px; }
.fks-pred-detail__pick { font-size: 28px; font-weight: 800; color: #64ffda; }
.fks-pred-detail__confidence { font-size: 12px; color: #8892b0; margin-top: 4px; }
.fks-pred-detail__league { font-size: 12px; color: #8892b0; margin-top: 8px; }

/* ── Vote Buttons ── */
.fks-vote {
    background: #12121f;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.fks-vote__title {
    font-size: 14px;
    font-weight: 700;
    color: #64ffda;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.fks-vote__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.fks-vote__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    background: rgba(255,255,255,.03);
    border: 2px solid rgba(255,255,255,.06);
    border-radius: 10px;
    color: #a8b2c8;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
}
.fks-vote__btn:hover { border-color: rgba(255,255,255,.15); color: #e6f1ff; background: rgba(255,255,255,.06); }
.fks-vote__btn--home:hover, .fks-vote__btn--home.active { border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,.08); }
.fks-vote__btn--draw:hover, .fks-vote__btn--draw.active { border-color: #f59e0b; color: #f59e0b; background: rgba(245,158,11,.08); }
.fks-vote__btn--away:hover, .fks-vote__btn--away.active { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.08); }
.fks-vote__btn.active { pointer-events: none; }
.fks-vote__btn-label { font-size: 10px; color: #8892b0; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.fks-vote__btn-pct { font-size: 18px; font-weight: 800; }
.fks-vote__btn-count { font-size: 10px; color: #4a5068; }
.fks-vote__total { text-align: center; font-size: 11px; color: #4a5068; margin-top: 4px; }

/* Vote bar in detail (larger) */
.fks-vote .fks-vote-bar { height: 12px; border-radius: 6px; margin-bottom: 10px; }

/* ── Section Card ── */
.fks-pred-section {
    background: #12121f;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.fks-pred-section__title {
    font-size: 16px;
    font-weight: 700;
    color: #64ffda;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Markets grid */
.fks-pred-markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fks-pred-market {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.fks-pred-market__label { font-size: 10px; color: #8892b0; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.fks-pred-market__value { font-size: 18px; font-weight: 800; color: #e6f1ff; }
.fks-pred-market__conf { font-size: 11px; color: #8892b0; margin-top: 4px; }
.fks-pred-market__line { font-size: 11px; color: #64ffda; }

/* Verified badges */
.fks-pred-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; margin-top: 6px; }
.fks-pred-verified--correct { color: #22c55e; }
.fks-pred-verified--wrong { color: #ef4444; }

/* Reasoning */
.fks-pred-reasoning { font-size: 15px; color: #c8cdd8; line-height: 1.7; }

/* Model comparison */
.fks-pred-model {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.fks-pred-model:last-child { border-bottom: none; }
.fks-pred-model__name { font-size: 13px; font-weight: 700; color: #e6f1ff; margin-bottom: 8px; }
.fks-pred-model__picks { display: flex; gap: 10px; flex-wrap: wrap; }
.fks-pred-model__pick {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    color: #a8b2c8;
}
.fks-pred-model__pick strong { color: #e6f1ff; }

/* Actual result */
.fks-pred-actual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px;
    background: rgba(34,197,94,.06);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 8px;
    margin-bottom: 16px;
}
.fks-pred-actual__label { font-size: 11px; color: #8892b0; text-transform: uppercase; }
.fks-pred-actual__score { font-size: 24px; font-weight: 800; }
.fks-pred-actual__result { font-size: 12px; font-weight: 700; text-transform: uppercase; }

/* ── Detail content (single column) ── */
.fks-pred-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Side-by-side row (league position + formation) ── */
.fks-pred-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Key Players 2-col grid ── */
.fks-pred-players-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── Verification badge ── */
.fks-verify-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* ── Model picks with verification colors ── */
.fks-pick--correct { border-left: 3px solid #22c55e; }
.fks-pick--wrong { border-left: 3px solid #ef4444; opacity: .7; }

/* ── Model header (name + badge) ── */
.fks-pred-model__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* ── Model reasoning (collapsible) ── */
.fks-pred-model__details {
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,.04);
    padding-top: 8px;
}
.fks-pred-model__toggle {
    font-size: 12px;
    font-weight: 600;
    color: #64ffda;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
}
.fks-pred-model__toggle::-webkit-details-marker { display: none; }
.fks-pred-model__toggle::before {
    content: '▸';
    font-size: 10px;
    transition: transform .2s;
}
.fks-pred-model__details[open] > .fks-pred-model__toggle::before {
    transform: rotate(90deg);
}
.fks-pred-model__toggle:hover { color: #4cd6b6; }
.fks-pred-model__reasoning {
    font-size: 12px;
    color: #a8b2c8;
    line-height: 1.6;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}
.fks-pred-model__reasoning h3,
.fks-pred-model__reasoning h4 { font-size: 13px; color: #e6f1ff; margin: 12px 0 6px; }
.fks-pred-model__reasoning p { margin: 0 0 8px; }
.fks-pred-model__reasoning strong { color: #e6f1ff; }
.fks-pred-model__reasoning ul, .fks-pred-model__reasoning ol { padding-left: 18px; margin: 6px 0; }
.fks-pred-model__reasoning li { margin-bottom: 4px; }

/* ── Sub-label ── */
.fks-pred-sublabel {
    font-size: 12px;
    color: #8892b0;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Injuries ── */
.fks-pred-injuries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fks-pred-inj-team {
    font-size: 13px;
    font-weight: 700;
    color: #e6f1ff;
    margin: 0 0 8px;
}
.fks-pred-inj-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
    font-size: 12px;
}
.fks-pred-inj-name { color: #c8cdd8; }
.fks-pred-inj-reason {
    color: #ef4444;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ── Standings ── */
.fks-pred-standing {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.fks-pred-standing:last-child { border-bottom: none; }
.fks-pred-standing__name { font-size: 15px; font-weight: 600; flex: 1; }
.fks-pred-standing__rank {
    font-size: 22px;
    font-weight: 800;
    color: #64ffda;
    min-width: 44px;
    text-align: center;
}
.fks-pred-standing__stats { font-size: 13px; color: #8892b0; }

/* ── Key Players ── */
.fks-pred-players-team {
    font-size: 14px;
    font-weight: 700;
    color: #64ffda;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.fks-pred-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: 14px;
}
.fks-pred-player:last-child { border-bottom: none; }
.fks-pred-player__name { color: #e6f1ff; font-weight: 600; }
.fks-pred-player__stat { color: #8892b0; font-size: 13px; white-space: nowrap; }

/* ── Formation ── */
.fks-pred-formation {
    font-size: 15px;
    color: #a8b2c8;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.fks-pred-formation:last-child { border-bottom: none; }
.fks-pred-formation strong {
    color: #64ffda;
    font-size: 20px;
    letter-spacing: 2px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .fks-pred-grid { grid-template-columns: 1fr; }
    .fks-pred-row {
        grid-template-columns: 56px 1fr 74px;
        gap: 10px;
        padding: 9px 10px;
    }
    .fks-pred-row__team { font-size: 12px; }
    .fks-pred-row__pick { font-size: 12px; }
    .fks-pred-row__sub {
        font-size: 9px;
        max-width: 74px;
        white-space: normal;
        line-height: 1.25;
    }
    .fks-pred-markets { grid-template-columns: 1fr; }
    .fks-pred-row2 { grid-template-columns: 1fr; }
    .fks-pred-players-grid { grid-template-columns: 1fr; }
    .fks-pred-detail__header { gap: 12px; padding: 16px 12px; }
    .fks-pred-detail__team-logo { width: 40px; height: 40px; }
    .fks-pred-detail__pick { font-size: 22px; }
    .fks-pred { padding: 0 12px; }
    .fks-vote__buttons { grid-template-columns: 1fr; }
    .fks-pred-injuries { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Freekick666 redesign layer
   ========================================================================== */
.fks-pred {
    --fk-bg: #080d16;
    --fk-panel: #101626;
    --fk-panel-2: #151b29;
    --fk-line: rgba(233,196,106,.18);
    --fk-line-soft: rgba(255,255,255,.07);
    --fk-gold: #e9c46a;
    --fk-gold-2: #caa24a;
    --fk-red: #c0392b;
    --fk-text: #e8edf5;
    --fk-muted: #9aa6b8;
    max-width: 1200px;
    padding: 0 20px 28px;
    color: var(--fk-text);
}

.fks-pred a { text-decoration: none; }

.fks-pred-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 0 0 16px;
    padding: 24px;
    border: 1px solid var(--fk-line);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(202,162,74,.18), rgba(8,13,22,.96) 48%, rgba(192,57,43,.13)),
        #0b111d;
}

.fks-pred-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(233,196,106,.28);
    border-radius: 999px;
    color: var(--fk-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fks-pred-hero h1 {
    margin: 10px 0 6px;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.fks-pred-hero p {
    max-width: 660px;
    margin: 0;
    color: #c7cfdd;
    font-size: 15px;
    line-height: 1.55;
}

.fks-pred-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(86px, 1fr));
    gap: 10px;
}

.fks-pred-hero__stats div {
    min-width: 86px;
    padding: 12px;
    border: 1px solid rgba(233,196,106,.2);
    border-radius: 8px;
    background: rgba(0,0,0,.24);
    text-align: center;
}

.fks-pred-hero__stats strong {
    display: block;
    color: var(--fk-gold);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.fks-pred-hero__stats span {
    display: block;
    margin-top: 6px;
    color: var(--fk-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fks-breadcrumb,
.fks-pred-filters,
.fks-pred-listview,
.fks-pred-section,
.fks-vote,
.fks-pred-actual {
    border-color: var(--fk-line);
}

.fks-breadcrumb {
    background: rgba(16,22,38,.78);
    border-radius: 8px;
}

.fks-bc-link:hover,
.fks-pred-model__toggle:hover {
    color: var(--fk-gold);
}

.fks-pred-filters {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid var(--fk-line);
    border-radius: 10px;
    background: #0b111d;
}

.fks-pred-filter {
    min-height: 38px;
    padding: 0 14px;
    border-color: rgba(233,196,106,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    color: #c7cfdd;
    font-size: 13px;
}

.fks-pred-filter:hover,
.fks-pred-filter--active {
    background: rgba(233,196,106,.14);
    border-color: rgba(233,196,106,.48);
    color: var(--fk-gold);
}

.fks-pred-filter__count,
.fks-pred-filter--active .fks-pred-filter__count {
    background: rgba(0,0,0,.22);
    color: #fff;
}

.fks-pred-listview {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.fks-pred-row {
    grid-template-columns: 82px minmax(0,1fr) minmax(116px, auto);
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.075);
    border-left: 3px solid rgba(233,196,106,.42);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(233,196,106,.08), rgba(16,22,38,.96) 26%, rgba(11,17,29,.96));
    color: var(--fk-text);
    transition: border-color .15s, transform .15s, background .15s;
}

.fks-pred-row:hover {
    transform: translateY(-1px);
    border-color: rgba(233,196,106,.48);
    background: linear-gradient(90deg, rgba(233,196,106,.13), rgba(20,27,42,.98) 28%, rgba(13,19,34,.98));
    color: #fff;
}

.fks-pred-row__time {
    min-height: 62px;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.07);
}

.fks-pred-row__day {
    color: var(--fk-gold);
    font-size: 12px;
}

.fks-pred-row__clock {
    color: #d7deeb;
    font-size: 13px;
    font-weight: 800;
}

.fks-pred-row__meta {
    color: var(--fk-muted);
    font-size: 11px;
    letter-spacing: .06em;
}

.fks-pred-row__team {
    font-size: 14px;
    font-weight: 700;
}

.fks-pred-row__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
}

.fks-pred-row__pick,
.fks-pred-detail__pick,
.fks-pred-section__title,
.fks-vote__title,
.fks-pred-market__line,
.fks-pred-model__toggle,
.fks-pred-standing__rank,
.fks-pred-players-team,
.fks-pred-formation strong {
    color: var(--fk-gold);
}

.fks-pred-row__sub {
    color: #c7cfdd;
}

.fks-pred-row__status {
    border: 1px solid currentColor;
    background: transparent;
}

.fks-pred-row__status--upcoming {
    color: var(--fk-gold);
}

.fks-pred-row__status--verified {
    color: #37d67a;
}

.fks-pred-detail__header {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(180px, auto) minmax(0,1fr);
    gap: 22px;
    padding: 26px;
    border: 1px solid var(--fk-line);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(202,162,74,.18), rgba(8,13,22,.98) 46%, rgba(192,57,43,.12)),
        #0b111d;
}

.fks-pred-detail__team {
    max-width: none;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    background: rgba(0,0,0,.16);
}

.fks-pred-detail__team-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 8px;
}

.fks-pred-detail__team-name {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.fks-pred-detail__center {
    align-self: center;
    min-width: 0;
}

.fks-pred-detail__pick {
    font-size: 30px;
    line-height: 1.05;
}

.fks-pred-detail__confidence,
.fks-pred-detail__league {
    color: #c7cfdd;
}

.fks-vote,
.fks-pred-section {
    border-radius: 10px;
    background: #101626;
}

.fks-pred-section__title,
.fks-vote__title {
    font-size: 13px;
    letter-spacing: .08em;
}

.fks-pred-market {
    border-color: rgba(233,196,106,.16);
    border-radius: 8px;
    background: rgba(0,0,0,.18);
}

.fks-pred-market__value {
    color: #fff;
}

.fks-pred-model {
    border-bottom-color: rgba(233,196,106,.1);
}

.fks-pred-model__pick {
    background: rgba(233,196,106,.08);
    border: 1px solid rgba(233,196,106,.14);
    color: #c7cfdd;
}

.fks-pred-actual {
    border-color: rgba(233,196,106,.24);
    background: rgba(233,196,106,.08);
}

.fks-pred-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
}

.fks-pred-pager__btn {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(233,196,106,.28);
    border-radius: 8px;
    background: #101626;
    color: var(--fk-text);
    font-weight: 800;
    cursor: pointer;
}

.fks-pred-pager__btn:not(:disabled):hover {
    color: var(--fk-gold);
    border-color: rgba(233,196,106,.52);
}

.fks-pred-pager__btn:disabled {
    opacity: .45;
    cursor: default;
}

.fks-pred-pager__info {
    color: var(--fk-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .fks-pred {
        padding: 0 12px 22px;
    }

    .fks-pred-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .fks-pred-hero h1 {
        font-size: 26px;
    }

    .fks-pred-hero__stats {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .fks-pred-hero__stats div {
        min-width: 0;
        padding: 10px 6px;
    }

    .fks-pred-hero__stats strong {
        font-size: 19px;
    }

    .fks-pred-row {
        grid-template-columns: 58px minmax(0,1fr);
        gap: 12px;
        padding: 12px;
    }

    .fks-pred-row__time {
        min-height: 58px;
    }

    .fks-pred-row__side {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,.07);
    }

    .fks-pred-row__sub {
        max-width: none;
    }

    .fks-pred-row__logo {
        width: 24px;
        height: 24px;
    }

    .fks-pred-detail__header {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .fks-pred-detail__team {
        padding: 12px;
    }

    .fks-pred-detail__team-logo {
        width: 58px;
        height: 58px;
    }
}

/* ==========================================================================
   Premium AI prediction experience
   ========================================================================== */
.fks-pred {
    --bg: #060913;
    --card: #0f1726;
    --card-soft: #151e30;
    --border: rgba(255,255,255,.09);
    --border-gold: rgba(229,185,83,.34);
    --text: #edf2fb;
    --text-muted: #9aa7ba;
    --gold: #e5b953;
    --gold-soft: rgba(229,185,83,.13);
    --danger: #ef4444;
    --success: #22c55e;
    width: min(100%, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    color: var(--text);
    font-family: Inter, "Noto Sans Thai", "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 0%, rgba(229,185,83,.12), transparent 32%),
        radial-gradient(circle at 90% 12%, rgba(192,57,43,.10), transparent 34%),
        linear-gradient(180deg, #080d18 0%, var(--bg) 42%, #050810 100%);
    border-radius: 22px;
}

.fks-pred * {
    box-sizing: border-box;
}

.fks-pred a {
    color: inherit;
}

.fks-breadcrumb {
    width: 100%;
    gap: 8px;
    margin: 0 0 18px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(15,23,38,.76);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.fks-bc-link {
    color: var(--text-muted);
}

.fks-bc-link:hover,
.fks-bc-current {
    color: var(--gold);
}

.fks-bc-link::before {
    display: none;
}

.fks-pred-hero,
.prediction-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 0 0 18px;
    padding: 28px;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(229,185,83,.16), rgba(15,23,38,.96) 42%, rgba(4,8,16,.96)),
        var(--card);
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.fks-pred-hero__eyebrow,
.league-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fks-pred h1 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

.fks-pred-hero p,
.prediction-prose,
.fks-pred-reasoning {
    max-width: 900px;
    color: #d4dbea;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
}

.fks-pred-hero__stats,
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 12px;
}

.prediction-stat-card,
.fks-pred-hero__stats > div {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.fks-pred-hero__stats strong,
.prediction-stat-card__pick {
    display: block;
    color: var(--gold);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
}

.fks-pred-hero__stats span,
.prediction-stat-card__label,
.prediction-stat-card__line {
    display: block;
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
}

.prediction-badge,
.confidence-badge,
.fks-pred-row__status,
.fks-verify-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.prediction-badge small {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.prediction-badge--gold,
.prediction-badge--model,
.prediction-badge--league {
    border-color: var(--border-gold);
    background: var(--gold-soft);
    color: var(--gold);
}

.confidence-badge--high {
    border-color: rgba(34,197,94,.35);
    background: rgba(34,197,94,.13);
    color: #6ee7a8;
}

.confidence-badge--medium {
    border-color: rgba(229,185,83,.38);
    background: var(--gold-soft);
    color: var(--gold);
}

.confidence-badge--low {
    border-color: rgba(239,68,68,.30);
    background: rgba(239,68,68,.11);
    color: #fca5a5;
}

.fks-pred-filters {
    gap: 10px;
    margin: 0 0 18px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15,23,38,.78);
}

.fks-pred-filter {
    min-height: 40px;
    border-radius: 999px;
    border-color: transparent;
    background: rgba(255,255,255,.045);
    color: #d2d9e7;
}

.fks-pred-filter--active,
.fks-pred-filter:hover {
    border-color: var(--border-gold);
    background: var(--gold-soft);
    color: var(--gold);
}

.fks-pred-listview {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
}

.fks-pred-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1.25fr) minmax(220px, .95fr) minmax(150px, auto);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(15,23,38,.92));
    color: var(--text);
    box-shadow: 0 16px 42px rgba(0,0,0,.22);
}

.fks-pred-row:hover {
    transform: translateY(-2px);
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(229,185,83,.09), rgba(18,28,45,.96));
}

.fks-pred-row__time {
    min-height: 78px;
    border-right: 1px solid var(--border);
}

.fks-pred-row__day,
.fks-pred-row__clock {
    color: var(--gold);
}

.fks-pred-row__team {
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.team-logo-box,
.fks-pred-row__logo,
.fks-pred-detail__team-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: #fff;
}

.team-logo-box img,
.fks-pred-row__logo img,
.fks-pred-detail__team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fks-pred-row__markets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fks-pred-row__side {
    gap: 8px;
}

.fks-pred-row__cta {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.fks-pred-detail__header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.2fr) minmax(0, 1fr);
}

.team-card {
    min-height: 210px;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.team-card .team-logo-box {
    width: 92px;
    height: 92px;
    border-radius: 22px;
}

.fks-pred-detail__team-label,
.match-time {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.fks-pred-detail__team-name {
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
}

.prediction-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.main-pick {
    margin-top: 4px;
    color: var(--gold);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    font-weight: 950;
}

.prediction-section,
.fks-vote,
.fks-pred-section {
    margin: 0 0 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(15,23,38,.92));
}

.prediction-section h2,
.fks-pred-section__title,
.fks-vote__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.prediction-prose p {
    margin: 0 0 14px;
}

.prediction-prose ul,
.prediction-prose ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

.prediction-prose li {
    margin: 0 0 9px;
}

.prediction-prose strong {
    color: var(--gold);
}

.analysis-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 18px;
    align-items: start;
}

.analysis-side {
    position: sticky;
    top: 16px;
}

.model-consensus-card .fks-pred-markets {
    grid-template-columns: 1fr;
}

.fks-pred-market {
    border-color: var(--border);
    border-radius: 14px;
    background: rgba(0,0,0,.18);
    text-align: left;
}

.fks-pred-market__value {
    color: #fff;
    font-size: 20px;
}

.fks-vote__buttons {
    gap: 12px;
}

.fks-vote__btn {
    min-height: 116px;
    border-width: 1px;
    border-color: var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.fks-vote__btn-label {
    max-width: 100%;
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
}

.fks-vote__btn-pct {
    color: var(--gold);
    font-size: 26px;
}

.fks-vote__empty {
    margin: 10px 0 2px;
    color: var(--text-muted);
    text-align: center;
    font-size: 14px;
}

.model-breakdown__table {
    display: grid;
    gap: 12px;
}

.model-pick-row {
    display: grid;
    grid-template-columns: minmax(160px, .55fr) minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(0,0,0,.18);
}

.fks-pred-model__header {
    align-items: flex-start;
    flex-direction: column;
}

.fks-pred-model__picks {
    align-content: start;
    gap: 8px;
}

.fks-pred-model__pick {
    border-color: var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #d8dfed;
}

.fks-pred-model__details {
    grid-column: 1 / -1;
    border-color: var(--border);
}

.fks-pred-model__reasoning {
    max-height: none;
    color: #d2d9e7;
    font-size: 15px;
    line-height: 1.75;
}

.prediction-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fks-pred-standing,
.fks-pred-player {
    gap: 12px;
    border-color: var(--border);
}

.fks-pred-standing__rank,
.fks-pred-players-team {
    color: var(--gold);
}

.fks-pred-standing__stats,
.fks-pred-player__stat {
    color: var(--text-muted);
    text-align: right;
}

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

.related-prediction-card {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(0,0,0,.18);
}

.related-prediction-card:hover {
    border-color: var(--border-gold);
}

.related-prediction-card__league {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.related-prediction-card strong {
    color: #fff;
    line-height: 1.35;
}

.related-prediction-card > span:not(.prediction-badge):not(.related-prediction-card__league) {
    color: var(--text-muted);
    font-size: 13px;
}

.fks-empty,
.fks-loader {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15,23,38,.82);
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 980px) {
    .fks-pred-row {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .fks-pred-row__markets,
    .fks-pred-row__side {
        grid-column: 1 / -1;
    }

    .fks-pred-row__side {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid var(--border);
        text-align: left;
    }

    .fks-pred-detail__header,
    .analysis-layout,
    .prediction-info-grid,
    .related-predictions {
        grid-template-columns: 1fr;
    }

    .analysis-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .fks-pred {
        padding: 14px;
        border-radius: 0;
    }

    .fks-pred-hero,
    .prediction-hero,
    .prediction-section,
    .fks-vote,
    .fks-pred-section {
        padding: 16px;
        border-radius: 16px;
    }

    .fks-pred-hero,
    .fks-pred-hero__stats,
    .summary-grid,
    .fks-vote__buttons,
    .model-pick-row,
    .fks-pred-players-grid {
        grid-template-columns: 1fr;
    }

    .fks-pred-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .fks-pred-row__time {
        min-height: 0;
        align-items: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 10px;
    }

    .fks-pred-row__side {
        flex-wrap: wrap;
    }

    .team-card {
        min-height: 150px;
    }

    .team-card .team-logo-box {
        width: 72px;
        height: 72px;
    }
}

/* ==========================================================================
   Prediction readability pass
   ========================================================================== */
.fks-pred {
    font-size: 16px;
}

.fks-breadcrumb {
    min-height: 38px;
    font-size: 14px;
    line-height: 1.5;
}

.fks-bc-link,
.fks-bc-current,
.fks-bc-sep {
    font-size: inherit;
}

.fks-pred h1 {
    font-size: clamp(42px, 4.2vw, 48px);
    line-height: 1.08;
}

.fks-pred-hero p,
.prediction-prose,
.prediction-prose p,
.prediction-prose li,
.fks-pred-model__reasoning {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
}

.fks-pred-hero p {
    font-size: 17px;
}

.prediction-meta,
.prediction-league,
.league-label,
.prediction-badge--league,
.related-prediction-card__league {
    min-height: 28px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

.fks-pred-hero__eyebrow {
    font-size: 13px;
    letter-spacing: .02em;
}

.prediction-badge,
.confidence-badge,
.prediction-confidence,
.prediction-status,
.fks-pred-row__status,
.fks-verify-badge,
.fks-pred-verified {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

.prediction-market-badge,
.prediction-badge--market {
    min-height: 30px;
    font-size: 14px;
}

.prediction-badge small,
.prediction-market-badge small {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0;
}

.fks-pred-filter {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.fks-pred-filter__count {
    min-width: 26px;
    min-height: 24px;
    font-size: 13px;
    line-height: 1;
}

.fks-pred-hero__stats strong {
    font-size: clamp(28px, 3vw, 32px);
}

.prediction-stat-card__pick {
    font-size: 26px;
}

.fks-pred-hero__stats span,
.prediction-stat-card__label,
.prediction-stat-card__line {
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

.fks-pred-row__day,
.prediction-date {
    font-size: 14px;
    line-height: 1.3;
}

.fks-pred-row__clock,
.prediction-time {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.fks-pred-row__team,
.prediction-team-name {
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0;
}

.fks-pred-row__sub {
    font-size: 14px;
    line-height: 1.35;
}

.prediction-cta,
.fks-pred-row__cta {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.fks-pred-row:hover .prediction-cta,
.fks-pred-row:hover .fks-pred-row__cta {
    background: rgba(229,185,83,.2);
}

.fks-pred-detail__team-label,
.match-time {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
}

.fks-pred-detail__team-name {
    font-size: 20px;
}

.fks-pred-market__label,
.fks-pred-market__line,
.fks-pred-market__conf,
.fks-pred-model__pick,
.fks-pred-standing__stats,
.fks-pred-player__stat,
.related-prediction-card > span:not(.prediction-badge):not(.related-prediction-card__league) {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
}

.fks-pred-market__value {
    font-size: 21px;
}

.fks-vote__btn-label {
    font-size: 15px;
}

.fks-vote__btn-count,
.fks-vote__total,
.fks-vote-labels,
.fks-vote__empty {
    font-size: 14px;
    line-height: 1.45;
}

.related-prediction-card strong {
    font-size: 16px;
}

.fks-empty,
.fks-loader {
    display: grid;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.fks-empty strong {
    color: #fff;
    font-size: 18px;
}

.fks-pred-card__league,
.fks-pred-card__vs,
.fks-pred-card__meta,
.fks-pred-card__confidence,
.fks-pred-detail__confidence,
.fks-pred-detail__league,
.fks-pred-actual__label,
.fks-pred-actual__result,
.fks-pred-inj-name,
.fks-pred-inj-reason,
.fks-pred-formation,
.fks-pred-pager__btn,
.fks-pred-pager__info {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
}

.fks-pred-card__team,
.fks-pred-card__pick,
.fks-pred-section,
.fks-pred-section p,
.fks-pred-section li {
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .fks-pred h1 {
        font-size: clamp(30px, 9vw, 34px);
    }

    .fks-pred-hero p,
    .prediction-prose,
    .prediction-prose p,
    .prediction-prose li {
        font-size: 15px;
    }

    .fks-pred-row__team,
    .prediction-team-name {
        font-size: 16px;
    }

    .fks-pred-filter {
        font-size: 14px;
    }

    .prediction-cta,
    .fks-pred-row__cta {
        width: 100%;
    }
}
