/* =====================================================
   SEO Match Prediction Page  —  seo- prefix
   ===================================================== */

/* ── Hero ── */
.seo-hero {
    background: linear-gradient(135deg, #111827 0%, #0d1117 60%, #1a0a0a 100%);
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 36px 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.seo-hero__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1;
    text-align: center;
}
.seo-hero__team--away { }
.seo-hero__crest {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.seo-hero__team-name {
    font-size: 15px;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1.3;
    max-width: 160px;
}
.seo-hero__center {
    text-align: center;
    flex-shrink: 0;
}
.seo-hero__score {
    font-size: 52px;
    font-weight: 900;
    color: #f9fafb;
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 6px;
}
.seo-hero__score-label {
    font-size: 11px;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.seo-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}
.seo-hero__dot { color: #374151; }

/* ── Probabilities ── */
.seo-probs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.seo-prob {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}
.seo-prob__top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.seo-prob__short {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    line-height: 1;
}
.seo-prob__pct {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.seo-prob--home .seo-prob__pct { color: #22c55e; }
.seo-prob--draw .seo-prob__pct { color: #f9fafb; }
.seo-prob--away .seo-prob__pct { color: #e8192c; }
.seo-prob__bar {
    height: 4px;
    background: rgba(255,255,255,.06);
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}
.seo-prob__fill {
    height: 100%;
    border-radius: 2px;
    transition: width .6s ease;
}
.seo-prob--home .seo-prob__fill { background: #22c55e; }
.seo-prob--draw .seo-prob__fill { background: #6b7280; }
.seo-prob--away .seo-prob__fill { background: #e8192c; }
.seo-prob__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.seo-prob__label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.seo-prob__odds {
    font-size: 15px;
    font-weight: 800;
    color: #f9fafb;
    background: rgba(255,255,255,.07);
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1.4;
}

/* ── Layout ── */
.seo-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: start;
}

/* ── Card ── */
.seo-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
}
.seo-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
    padding: 14px 18px;
    border-bottom: 1px solid #1f2937;
    margin: 0;
}
.seo-card__body {
    padding: 18px;
}

/* ── Stats grid ── */
.seo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #1f2937;
}
.seo-stat {
    background: #111827;
    padding: 18px 16px;
    text-align: center;
}
.seo-stat__label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
    display: block;
}
.seo-stat__val {
    font-size: 22px;
    font-weight: 800;
    color: #f9fafb;
    display: block;
}
.seo-stat__val--red { color: #e8192c; }

/* ── Analysis text ── */
.seo-analysis {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0 0 18px;
}
.seo-analysis strong { color: #f9fafb; }

/* ── Pick box ── */
.seo-pick {
    background: rgba(232,25,44,.06);
    border: 1px solid rgba(232,25,44,.18);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.seo-pick__outcome {
    display: flex;
    align-items: center;
    gap: 12px;
}
.seo-pick__badge {
    background: #e8192c;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seo-pick__name {
    font-size: 15px;
    font-weight: 700;
    color: #f9fafb;
}
.seo-pick__right {
    text-align: right;
    flex-shrink: 0;
}
.seo-pick__conf {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 3px;
}
.seo-pick__odds {
    font-size: 13px;
    font-weight: 700;
    color: #e8192c;
}

/* ── Form ── */
.seo-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.seo-form-row:last-child { border-bottom: none; }
.seo-form-team {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    min-width: 120px;
}
.seo-form-badges {
    display: flex;
    gap: 6px;
}
.seo-form-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seo-form-badge--w { background: rgba(34,197,94,.15);  color: #22c55e; }
.seo-form-badge--d { background: rgba(255,255,255,.06); color: #9ca3af; }
.seo-form-badge--l { background: rgba(232,25,44,.12);  color: #e8192c; }

/* ── Sidebar cards ── */
.seo-cta-block {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    text-align: center;
}
.seo-cta-block__title {
    font-size: 13px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 6px;
}
.seo-cta-block__sub {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
    line-height: 1.5;
}
.seo-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #e8192c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: background .15s;
}
.seo-cta-btn:hover { background: #c0111f; }
.seo-cta-btn--secondary {
    background: transparent;
    border: 1px solid #374151;
    color: #9ca3af;
}
.seo-cta-btn--secondary:hover { border-color: #6b7280; color: #f9fafb; background: transparent; }

.seo-sidebar-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}
.seo-sidebar-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #1f2937;
}
.seo-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: 13px;
    color: #9ca3af;
    gap: 8px;
}
.seo-sidebar-row:last-child { border-bottom: none; }
.seo-sidebar-row strong { color: #f9fafb; }

/* ── H2H ── */
.seo-h2h-list { padding: 4px 0; }
.seo-h2h__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.seo-h2h__row:last-child { border-bottom: none; }
.seo-h2h__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 90px;
    flex-shrink: 0;
}
.seo-h2h__date {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
}
.seo-h2h__comp {
    font-size: 11px;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}
.seo-h2h__match {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.seo-h2h__team {
    font-size: 13px;
    color: #d1d5db;
    font-weight: 500;
    flex: 1;
}
.seo-h2h__team--home { text-align: right; }
.seo-h2h__team--away { text-align: left; }
.seo-h2h__score {
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: 3px 10px;
    min-width: 52px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.seo-h2h__badge {
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seo-h2h__badge-empty { width: 22px; flex-shrink: 0; }
.seo-h2h__badge--w { background: rgba(34,197,94,.15);  color: #22c55e; }
.seo-h2h__badge--d { background: rgba(255,255,255,.06); color: #9ca3af; }
.seo-h2h__badge--l { background: rgba(232,25,44,.12);  color: #e8192c; }

/* ── Correct Score Grid ── */
.seo-scores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #1f2937;
}
.seo-score-cell {
    background: #111827;
    padding: 14px 8px;
    text-align: center;
    transition: background .15s;
}
.seo-score-cell--best {
    background: rgba(232,25,44,.08);
}
.seo-score-cell__score {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 4px;
    letter-spacing: .03em;
}
.seo-score-cell--best .seo-score-cell__score { color: #e8192c; }
.seo-score-cell__pct {
    display: block;
    font-size: 11px;
    color: #6b7280;
}

/* ── Not-found state ── */
.seo-notfound {
    padding: 2rem 0;
    text-align: center;
}

.seo-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8192c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}
.seo-btn-back:hover { background: #c0111f; }

/* ── Team Comparison Table ── */
.seo-compare-table {
    width: 100%;
    border-collapse: collapse;
}
.seo-compare-table thead th {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    padding: 10px 14px 6px;
    text-align: center;
}
.seo-compare-table thead th.seo-ct-label { color: transparent; }
.seo-compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.seo-compare-table tbody tr:last-child { border-bottom: none; }
.seo-compare-table td {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
}
.seo-ct-label {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #4b5563 !important;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
    text-align: center !important;
}
.seo-ct--win {
    color: #f9fafb !important;
    background: rgba(34,197,94,.07);
}
.seo-ct-home { border-radius: 6px 0 0 6px; }
.seo-ct-away { border-radius: 0 6px 6px 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .seo-layout { grid-template-columns: 1fr; }
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .seo-hero { flex-direction: column; align-items: center; padding: 24px 16px; }
    .seo-hero__score { font-size: 38px; }
    .seo-hero__crest { width: 56px; height: 56px; }
    .seo-probs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .seo-prob { padding: 14px 10px; }
    .seo-prob__pct { font-size: 22px; }
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Similar Predictions ── */
.seo-similar__list { display: flex; flex-direction: column; }
.seo-similar__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 20px;
    border-bottom: 1px solid #1f2937;
    text-decoration: none;
    transition: background .12s;
}
.seo-similar__item:last-child { border-bottom: none; }
.seo-similar__item:hover { background: #111827; }
.seo-similar__teams {
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-similar__teams img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.seo-similar__vs {
    font-size: 13px;
    font-weight: 600;
    color: #f3f4f6;
    flex: 1;
}
.seo-similar__meta { display: flex; align-items: center; gap: 12px; }
.seo-similar__date { font-size: 11px; color: #6b7280; }
.seo-similar__tip  { font-size: 11px; color: #9ca3af; }
.seo-similar__tip strong { color: #e8192c; }
.seo-similar__all {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    border-top: 1px solid #1f2937;
    transition: color .12s;
}
.seo-similar__all:hover { color: #e8192c; }

/* ── Mobile < 480px ── */
@media (max-width: 480px) {
    .seo-hero { padding: 20px 12px; gap: 8px; }
    .seo-hero__crest { width: 44px; height: 44px; }
    .seo-hero__team-name { font-size: 13px; max-width: 110px; }
    .seo-hero__score { font-size: 32px; }
    .seo-hero__score-label { font-size: 10px; }
    .seo-hero__meta { font-size: 11px; gap: 4px; }
    .seo-hero__dot { display: none; }

    .seo-probs { gap: 6px; }
    .seo-prob { padding: 10px 6px; }
    .seo-prob__pct { font-size: 18px; }
    .seo-prob__label { font-size: 10px; }
    .seo-prob__odds { font-size: 10px; }

    .seo-scores-grid { grid-template-columns: repeat(3, 1fr); }
    .seo-score-cell { padding: 10px 4px; }
    .seo-score-cell__score { font-size: 15px; }

    .seo-h2h__row { grid-template-columns: 1fr; gap: 4px; padding: 10px 12px; }
    .seo-h2h__meta { flex-direction: row; gap: 8px; }
    .seo-h2h__match { grid-template-columns: 1fr auto 1fr; }
    .seo-h2h__team--home { text-align: right; }
    .seo-h2h__badge { display: none; }

    .seo-compare-table th, .seo-compare-table td { padding: 8px 6px; font-size: 12px; }

    .seo-card { border-radius: 8px; }
    .seo-card__title { font-size: 14px; padding: 12px 14px 10px; }
    .seo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .seo-stat { padding: 12px; }
    .seo-stat__val { font-size: 20px; }

    .seo-similar__item { padding: 10px 14px; }
}

/* ── Mini Standings ── */
.seo-mini-standings { padding: 0; overflow: hidden; }
.seo-mini-standings .seo-sidebar-card__title { padding: 12px 14px 10px; border-bottom: 1px solid #1f2937; }
.seo-ms-table { display: flex; flex-direction: column; }
.seo-ms-head {
    display: grid;
    grid-template-columns: 22px 1fr 30px 34px 34px;
    gap: 4px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #4b5563;
    border-bottom: 1px solid #1f2937;
}
.seo-ms-row {
    display: grid;
    grid-template-columns: 22px 1fr 30px 34px 34px;
    gap: 4px;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    color: #9ca3af;
    border-bottom: 1px solid rgba(31,41,55,.6);
    text-decoration: none;
    transition: background .1s;
}
.seo-ms-row:last-child { border-bottom: none; }
.seo-ms-row:hover { background: rgba(255,255,255,.03); }
.seo-ms-row--home { background: rgba(232,25,44,.06); color: #f3f4f6; }
.seo-ms-row--away { background: rgba(59,130,246,.06); color: #f3f4f6; }
.seo-ms-row--home:hover { background: rgba(232,25,44,.1); }
.seo-ms-row--away:hover { background: rgba(59,130,246,.1); }
.seo-ms-pos { font-size: 11px; color: #6b7280; text-align: center; }
.seo-ms-team-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.seo-ms-team-name img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.seo-ms-val { text-align: center; font-size: 12px; }
.seo-ms-pts { font-weight: 700; color: #f9fafb; }
.seo-ms-more { border-top: 1px dashed #1f2937; }
.seo-ms-full-link {
    display: block;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    border-top: 1px solid #1f2937;
    text-align: right;
    transition: color .12s;
}
.seo-ms-full-link:hover { color: #e8192c; }

/* ── Home/Away Split (#37) ── */
.seo-ha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #1f2937;
}
.seo-ha-block {
    background: #111827;
    padding: 16px;
}
.seo-ha-block__name {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.seo-ha-block__record {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}
.seo-ha-w { color: #34d399; }
.seo-ha-d { color: #9ca3af; }
.seo-ha-l { color: #f87171; }
.seo-ha-mp { font-size: 11px; font-weight: 400; color: #4b5563; }
.seo-ha-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    background: #1f2937;
    margin-bottom: 6px;
}
.seo-ha-bar__w { background: #16a34a; }
.seo-ha-bar__d { background: #4b5563; }
.seo-ha-bar__l { background: #dc2626; }
.seo-ha-bar__pct { font-size: 11px; color: #6b7280; }
@media (max-width: 480px) {
    .seo-ha-grid { grid-template-columns: 1fr; }
}

/* ── Odds Calculator (#35) ── */
.seo-odds-calc .seo-sidebar-card__title { padding: 12px 14px 10px; }
.seo-odds-calc__body { padding: 12px 14px 14px; }
.seo-odds-calc__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.seo-odds-calc__row label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}
.seo-odds-calc__input {
    width: 90px;
    padding: 6px 10px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    outline: none;
    transition: border-color .15s;
}
.seo-odds-calc__input:focus { border-color: #e8192c; }
.seo-odds-calc__input::-webkit-inner-spin-button,
.seo-odds-calc__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.seo-odds-calc__input { -moz-appearance: textfield; }
.seo-odds-calc__result {
    border-top: 1px solid #1f2937;
    padding-top: 10px;
    margin-top: 4px;
}
.seo-odds-calc__result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 4px;
}
.seo-odds-calc__result-row strong { color: #f9fafb; font-size: 15px; }
.seo-odds-calc__result-row--profit strong { font-size: 17px; }
@media (max-width: 420px) {
    .seo-hero { padding: 20px 14px; }
    .seo-hero__teams { gap: 10px; }
    .seo-hero__crest { width: 50px; height: 50px; }
    .seo-hero__team { font-size: 13px; }
    .seo-hero__vs { font-size: 16px; }
    .seo-hero__badge-row { flex-wrap: wrap; gap: 6px; }
    .seo-prob-grid { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .seo-prob__pct { font-size: 22px; }
    .seo-prob__label { font-size: 10px; }
    .seo-scores-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .seo-score-cell { padding: 8px 4px; }
    .seo-score-cell__score { font-size: 15px; }
    .seo-form-row { gap: 8px; }
    .seo-form-dots { gap: 3px; }
}

/* =====================================================
   Detail Page BEM Components (Sprint HOTFIX-DETAIL-CSS)
   ===================================================== */

/* ── Breadcrumb ── */
.seo-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}
.seo-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .12s;
}
.seo-breadcrumb a:hover { color: #f9fafb; }

/* ── Match Header ── */
.seo-match { margin-bottom: 24px; }
.seo-match__header { margin-bottom: 20px; }
.seo-match__title {
    font-size: 24px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 8px;
    line-height: 1.3;
}
.seo-match__date {
    font-size: 13px;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}
.seo-match__league {
    font-size: 12px;
    color: #9ca3af;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    padding: 2px 8px;
}

/* ── Prediction Summary ── */
.seo-pred-summary {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.seo-pred-summary h2 {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 16px;
}
.seo-pred-summary__probs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.seo-pred-summary__col {
    background: rgba(255,255,255,.04);
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}
.seo-pred-summary__label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}
.seo-pred-summary__val {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #f9fafb;
}
.seo-pred-summary__score {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 6px;
}
.seo-pred-summary__pick {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* ── Detailed Analysis ── */
.seo-pred-detail {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 16px;
    margin-bottom: 16px;
}
.seo-pred-detail h2 {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
}
.seo-pred-detail__table {
    width: 100%;
    border-collapse: collapse;
}
.seo-pred-detail__table tr {
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.seo-pred-detail__table tr:last-child { border-bottom: none; }
.seo-pred-detail__table th {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    padding: 10px 0;
    text-align: left;
    width: 40%;
}
.seo-pred-detail__table td {
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
    padding: 10px 0;
    text-align: right;
}

/* ── Recent Form (detail.php BEM) ── */
.seo-form {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.seo-form h2 {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 16px;
}
.seo-form__teams {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.seo-form__team {
    flex: 1;
    min-width: 180px;
}
.seo-form__team h3 {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 10px;
}
.seo-form__results {
    display: flex;
    gap: 6px;
}
.seo-form__result {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.seo-form__result--w { background: rgba(34,197,94,.15);  color: #22c55e; }
.seo-form__result--d { background: rgba(255,255,255,.06); color: #9ca3af; }
.seo-form__result--l { background: rgba(232,25,44,.12);  color: #e8192c; }

/* ── H2H Table (detail.php BEM) ── */
.seo-h2h {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.seo-h2h h2 {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
}
.seo-h2h__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.seo-h2h__table thead th {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #1f2937;
}
.seo-h2h__table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.seo-h2h__table tbody tr:last-child { border-bottom: none; }
.seo-h2h__table tbody td {
    padding: 10px 10px;
    color: #9ca3af;
    vertical-align: middle;
}
.seo-h2h__table tbody td:nth-child(3) {
    font-weight: 700;
    color: #f9fafb;
    text-align: center;
}

/* ── CTA ── */
.seo-cta {
    text-align: center;
    padding: 20px 0 8px;
}
.seo-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8192c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}
.seo-cta__link:hover { background: #c0111f; }

/* ── Detail Page Responsive ── */
@media (max-width: 600px) {
    .seo-pred-summary__probs { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .seo-pred-summary__val { font-size: 22px; }
    .seo-form__teams { gap: 16px; }
    .seo-h2h__table { display: block; overflow-x: auto; }
}
