/* ============================================================
   LIGA MX PAGE — Ultra Modern Design 2026
   ============================================================ */

/* ─── Hero ─────────────────────────────────────────────────── */
.lmx-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(160deg, #080c14 0%, #0a1520 50%, #080c14 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lmx-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
}

.lmx-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.lmx-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation: orbFloat1 9s ease-in-out infinite;
}

.lmx-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.10) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation: orbFloat2 11s ease-in-out infinite;
}

.lmx-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.lmx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--neon-green);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.lmx-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: dot-blink 1.5s ease-in-out infinite;
}

.lmx-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.lmx-highlight {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lmx-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.lmx-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lmx-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 1rem 1.8rem;
    backdrop-filter: blur(12px);
    min-width: 110px;
}

.lmx-stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.lmx-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── Container ─────────────────────────────────────────────── */
.lmx-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem 5rem;
}

/* ─── Update Bar ─────────────────────────────────────────────── */
.lmx-update-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: var(--r-md);
    padding: 0.65rem 1.2rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lmx-update-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    flex-shrink: 0;
    animation: dot-blink 2s ease-in-out infinite;
}

.lmx-refresh-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-sm);
    border: 1px solid rgba(0, 255, 136, 0.25);
    background: rgba(0, 255, 136, 0.06);
    cursor: pointer;
    transition: var(--t-fast);
    font-family: inherit;
}

.lmx-refresh-btn:hover {
    background: rgba(0, 255, 136, 0.12);
    transform: translateY(-1px);
}

.lmx-refresh-btn.spinning svg {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─── Grid Layout ────────────────────────────────────────────── */
.lmx-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.lmx-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: var(--t-med);
}

.lmx-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1rem;
}

.lmx-card-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.lmx-card-icon {
    font-size: 1.1rem;
}

.lmx-season-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* ─── Standings Table ────────────────────────────────────────── */
.lmx-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lmx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.lmx-table thead tr {
    background: rgba(255, 255, 255, 0.03);
}

.lmx-table th {
    padding: 0.65rem 0.75rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-subtle);
}

.lmx-table th.col-team,
.lmx-table td.col-team {
    text-align: left;
    padding-left: 1rem;
}

.lmx-table th.col-pos,
.lmx-table td.col-pos {
    width: 36px;
    text-align: center;
}

.lmx-table th.col-pts,
.lmx-table td.col-pts {
    font-weight: 800;
    color: var(--text-primary);
}

.lmx-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--t-fast);
    cursor: default;
}

.lmx-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.lmx-table tbody tr:last-child {
    border-bottom: none;
}

.lmx-table td {
    padding: 0.7rem 0.75rem;
    text-align: center;
    color: var(--text-secondary);
    white-space: nowrap;
}

.lmx-table td.col-pts {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Position indicator */
.lmx-pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.lmx-pos-liguilla {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-green);
}

.lmx-pos-repechaje {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.lmx-pos-normal {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.lmx-pos-descenso {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Row zone highlights */
.lmx-table tbody tr.zone-liguilla {
    border-left: 2px solid rgba(0, 255, 136, 0.4);
}

.lmx-table tbody tr.zone-repechaje {
    border-left: 2px solid rgba(251, 191, 36, 0.4);
}

.lmx-table tbody tr.zone-descenso {
    border-left: 2px solid rgba(239, 68, 68, 0.4);
}

/* Team cell */
.lmx-team-cell {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lmx-team-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
}

.lmx-team-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.lmx-team-abbr {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Form dots */
.lmx-form {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.lmx-form-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.lmx-form-dot.w {
    background: var(--neon-green);
}

.lmx-form-dot.d {
    background: #fbbf24;
}

.lmx-form-dot.l {
    background: #ef4444;
    color: #fff;
}

/* Legend */
.lmx-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
}

.lmx-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lmx-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.lmx-dot-liguilla {
    background: var(--neon-green);
}

.lmx-dot-repechaje {
    background: #fbbf24;
}

.lmx-dot-descenso {
    background: #ef4444;
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.lmx-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Scorers */
.lmx-scorers-list {
    list-style: none;
    padding: 0.5rem 0;
}

.lmx-scorer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--t-fast);
}

.lmx-scorer-item:last-child {
    border-bottom: none;
}

.lmx-scorer-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.lmx-scorer-rank {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.lmx-scorer-rank.top {
    color: var(--neon-green);
}

.lmx-scorer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lmx-scorer-info {
    flex: 1;
    min-width: 0;
}

.lmx-scorer-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lmx-scorer-team {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.lmx-scorer-goals {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

/* ─── Predict Widget ─────────────────────────────────────────── */
.lmx-predict-body {
    padding: 1rem 1.25rem 1.25rem;
}

.lmx-predict-match {
    text-align: center;
    margin-bottom: 1rem;
}

.lmx-predict-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.lmx-predict-vs {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.lmx-predict-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lmx-predict-bars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.lmx-predict-bar-item {
    flex: 1;
    text-align: center;
}

.lmx-predict-bar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lmx-predict-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.lmx-predict-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s var(--spring);
}

.lmx-predict-bar-fill.home {
    background: var(--neon-green);
}

.lmx-predict-bar-fill.draw {
    background: #fbbf24;
}

.lmx-predict-bar-fill.away {
    background: #a855f7;
}

.lmx-predict-bar-pct {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
}

.lmx-predict-tip {
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--r-sm);
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    color: var(--neon-green);
    font-weight: 600;
    text-align: center;
}

/* ─── Sections ───────────────────────────────────────────────── */
.lmx-section {
    margin-bottom: 3rem;
}

.lmx-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lmx-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.lmx-section-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Match Cards Grid ───────────────────────────────────────── */
.lmx-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* ─── Match Card (Results) ───────────────────────────────────── */
.lmx-match-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    transition: var(--t-med);
    position: relative;
    overflow: hidden;
}

.lmx-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    opacity: 0;
    transition: var(--t-med);
}

.lmx-match-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lmx-match-card:hover::before {
    opacity: 1;
}

.lmx-match-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.lmx-match-league {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lmx-match-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.lmx-match-status.finished {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.lmx-match-status.upcoming {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.lmx-match-status.live {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.25);
    animation: badgePulse 2s ease-in-out infinite;
}

.lmx-match-teams {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lmx-match-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lmx-match-team.away {
    flex-direction: row-reverse;
    text-align: right;
}

.lmx-match-team-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.lmx-match-team-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.lmx-match-team-name.winner {
    color: var(--neon-green);
}

.lmx-match-score {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.lmx-score-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    min-width: 28px;
    text-align: center;
    line-height: 1;
}

.lmx-score-sep {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.lmx-match-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-align: center;
    min-width: 60px;
}

/* ─── Prediction Match Card ──────────────────────────────────── */
.lmx-pred-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t-med);
}

.lmx-pred-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.05);
}

.lmx-pred-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
}

.lmx-pred-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.lmx-pred-confidence {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.lmx-pred-confidence.high {
    background: rgba(0, 255, 136, 0.12);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.lmx-pred-confidence.medium {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.lmx-pred-body {
    padding: 1.1rem;
}

.lmx-pred-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lmx-pred-team {
    flex: 1;
    text-align: center;
}

.lmx-pred-team-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.lmx-pred-team-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.lmx-pred-vs-block {
    text-align: center;
    flex-shrink: 0;
}

.lmx-pred-vs-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: block;
    margin-bottom: 0.2rem;
}

.lmx-pred-time-text {
    font-size: 0.7rem;
    color: var(--neon-blue);
    font-weight: 600;
}

/* Probability bars */
.lmx-prob-bars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.lmx-prob-item {
    flex: 1;
    text-align: center;
}

.lmx-prob-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.lmx-prob-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.lmx-prob-fill {
    height: 100%;
    border-radius: 3px;
}

.lmx-prob-fill.home {
    background: var(--neon-green);
}

.lmx-prob-fill.draw {
    background: #fbbf24;
}

.lmx-prob-fill.away {
    background: #a855f7;
}

.lmx-prob-pct {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Prediction tip */
.lmx-pred-tip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: var(--r-sm);
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.75rem;
}

.lmx-pred-tip-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lmx-pred-tip-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-green);
    flex: 1;
}

.lmx-pred-tip-odds {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Expert tag */
.lmx-pred-expert {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.lmx-pred-expert-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .lmx-grid {
        grid-template-columns: 1fr;
    }

    .lmx-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .lmx-hero {
        padding: 3.5rem 1.25rem 3rem;
    }

    .lmx-container {
        padding: 1.5rem 1rem 4rem;
    }

    .lmx-sidebar {
        grid-template-columns: 1fr;
    }

    .lmx-matches-grid {
        grid-template-columns: 1fr;
    }

    .lmx-table th.col-form,
    .lmx-table td.col-form,
    .lmx-table th:nth-child(7),
    .lmx-table td:nth-child(7),
    .lmx-table th:nth-child(8),
    .lmx-table td:nth-child(8) {
        display: none;
    }

    .lmx-update-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}