﻿/**
 * Tyso Football Plugin - Global Premium Stylesheet
 * Brand Color Palette:
 * - Primary Bright Accent: #2dbe6c (dynamic var --tyso-accent)
 * - Pure Bright Canvas: #f5fbf7 (light green-gray tone)
 * - Text/Ink: #0f1c14 (deep charcoal-emerald)
 * - Cards: #ffffff (pure white)
 * - Borders: #edf2ef
 * - Live Alert: #ff5c35
 */

:root {
    --tyso-accent: #2dbe6c;
    --tyso-accent-hover: #26a35c;
    --tyso-bg-canvas: #f5fbf7;
    --tyso-bg-card: #ffffff;
    --tyso-text-main: #0f1c14;
    --tyso-text-muted: #627269;
    --tyso-border: #dbeee4;
    --tyso-live-color: #ff5c35;
    --tyso-live-bg: #ffece8;
    --tyso-radius-lg: 16px;
    --tyso-radius-md: 10px;
    --tyso-shadow: 0 10px 30px -10px rgba(15, 28, 20, 0.05), 0 1px 3px rgba(15, 28, 20, 0.02);
    --tyso-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilities */
.font-bold { font-weight: 600; }
.font-black { font-weight: 600; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.p-6 { padding: 24px; }
.text-muted { color: var(--tyso-text-muted); }
.text-success { color: var(--tyso-accent); }
.text-danger { color: #e03b24; }
.text-warning { color: #f5a623; }
.bg-success { background-color: var(--tyso-accent); }
.bg-warning { background-color: #f5a623; }
.bg-danger { background-color: #e03b24; }
.bg-gray { background-color: #a0aec0; }
.text-xl { font-size: 20px; }
.text-lg { font-size: 17px; }
.text-xs { font-size: 11px; }

/* 1. Common Layout Elements */
.tyso-section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}
.tyso-section-desc {
    font-size: 14px;
    color: var(--tyso-text-muted);
    margin-bottom: 24px;
}

.tyso-empty-box {
    text-align: center;
    padding: 48px 24px;
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
}
.tyso-empty-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin-bottom: 8px;
}
.tyso-empty-desc {
    font-size: 14px;
    color: var(--tyso-text-muted);
}

/* 2. Date Navigation Bar */
.tyso-date-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--tyso-bg-card);
    padding: 12px;
    border-radius: var(--tyso-radius-lg);
    border: 1px solid var(--tyso-border);
    box-shadow: var(--tyso-shadow);
    margin-bottom: 24px;
    gap: 16px;
}
.tyso-date-items {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}
.tyso-date-items::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.tyso-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 58px;
    border-radius: var(--tyso-radius-md);
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: var(--tyso-transition);
}
.tyso-date-item:hover {
    background: var(--tyso-bg-canvas);
    border-color: var(--tyso-border);
}
.tyso-date-item.active {
    background: var(--tyso-accent);
    color: #ffffff !important;
}
.tyso-date-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tyso-text-muted);
}
.tyso-date-item.active .tyso-date-label {
    color: rgba(255, 255, 255, 0.85);
}
.tyso-date-day {
    font-size: 15px;
    font-weight: 600;
    color: var(--tyso-text-main);
}
.tyso-date-item.active .tyso-date-day {
    color: #ffffff;
}
.tyso-date-input {
    padding: 8px 12px;
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--tyso-text-main);
    background: var(--tyso-bg-canvas);
    outline: none;
    cursor: pointer;
}

/* 3. League Tournament Groups */
.tyso-league-group {
    margin-bottom: 32px;
}
.tyso-league-header {
    display: flex;
    align-items: center;
    background: #f8faf9;
    padding: 12px 18px;
    border-radius: var(--tyso-radius-md);
    border: 1px solid var(--tyso-border);
    margin-bottom: 16px;
}
.tyso-league-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tyso-league-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.tyso-league-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--tyso-text-main);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* 4. Match Grid and Cards */
.tyso-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}
.tyso-match-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.tyso-match-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.tyso-match-card {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 18px;
    transition: var(--tyso-transition);
    position: relative;
    overflow: hidden;
}
.tyso-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -12px rgba(15, 28, 20, 0.1), 0 1px 3px rgba(15, 28, 20, 0.02);
    border-color: var(--tyso-accent);
}
.tyso-match-card.tyso-card-live {
    border-left: 4px solid var(--tyso-live-color);
}

.tyso-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.tyso-team-side {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.tyso-team-home {
    justify-content: flex-start;
    text-align: left;
}
.tyso-team-away {
    justify-content: flex-end;
    text-align: right;
}
.tyso-team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.tyso-team-logo.size-sm {
    width: 24px;
    height: 24px;
}
.tyso-team-logo-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #edf2ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--tyso-text-muted);
}
.tyso-team-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--tyso-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.tyso-center-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}
.tyso-vs-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    background: var(--tyso-bg-canvas);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid var(--tyso-border);
}
.tyso-match-time-only {
    font-size: 14px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin-top: 4px;
}
.tyso-match-score {
    font-size: 18px;
    font-weight: 600;
    color: var(--tyso-text-main);
    letter-spacing: 0.05em;
}
.live-color {
    color: var(--tyso-live-color) !important;
}

/* Badges for Status */
.tyso-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: inline-block;
}
.tyso-badge-ns {
    background: #edf2ef;
    color: var(--tyso-text-muted);
}
.tyso-badge-live {
    background: var(--tyso-live-bg);
    color: var(--tyso-live-color);
    font-weight: 600;
}
.tyso-badge-ft {
    background: #f3f4f6;
    color: var(--tyso-text-muted);
}
.tyso-badge-pst {
    background: #fff5f5;
    color: #e53e3e;
}

.tyso-card-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #edf2ef;
    padding-top: 10px;
    font-size: 11px;
    color: var(--tyso-text-muted);
}

/* Compact layout modifications */
.compact-card {
    padding: 12px 14px;
}
.compact-card .tyso-card-body {
    margin-bottom: 0;
}

/* 5. Standings Table */
.tyso-standings-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--tyso-accent);
    padding-bottom: 12px;
}
.tyso-standings-league-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.tyso-standings-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin: 0;
}
.tyso-standing-group-box {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 20px;
    margin-bottom: 24px;
    overflow: hidden;
}
.tyso-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--tyso-border);
}
.tyso-table-responsive {
    overflow-x: auto;
}
.tyso-table-standings {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}
.tyso-table-standings th {
    background: #f8faf9;
    color: var(--tyso-text-muted);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 2px solid var(--tyso-border);
}
.tyso-table-standings td {
    padding: 12px 10px;
    border-bottom: 1px solid #edf2ef;
    vertical-align: middle;
    font-size: 13px;
}
.tyso-table-standings tr:last-child td {
    border-bottom: none;
}
.tyso-team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tyso-standing-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.tyso-standing-logo-fallback {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #edf2ef;
}
.tyso-rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    background: #edf2ef;
}
.tyso-rank-number.rank-1 {
    background: #fff3cd;
    color: #856404;
}
.tyso-rank-number.rank-2 {
    background: #e2e3e5;
    color: #383d41;
}

/* 6. Scoreboard Hero and Match Details */
.tyso-scoreboard-hero {
    background: linear-gradient(135deg, #0e2015 0%, #173822 100%);
    border-radius: var(--tyso-radius-lg);
    padding: 30px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(14, 32, 21, 0.15);
}
.tyso-scoreboard-hero.theme-teal {
    background: linear-gradient(135deg, #091e23 0%, #153f47 100%);
}
.tyso-scoreboard-hero.theme-dark {
    background: linear-gradient(135deg, #101518 0%, #202b31 100%);
}
.tyso-hero-league {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    opacity: 0.85;
}
.tyso-hero-league-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.tyso-hero-league-name {
    font-size: 12px;
}
.tyso-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
.tyso-hero-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.tyso-hero-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}
.tyso-logo-fallback.large {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}
.tyso-hero-team-name {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}
.tyso-hero-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tyso-hero-vs {
    font-size: 22px;
    font-weight: 600;
    opacity: 0.3;
    letter-spacing: 0.1em;
}
.tyso-hero-time {
    font-size: 24px;
    margin-top: 8px;
}
.tyso-hero-score {
    font-size: 40px;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 12px;
}
.tyso-hero-meta {
    font-size: 12px;
    opacity: 0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tyso-separator {
    opacity: 0.3;
}

/* Tabs */
.tyso-detail-tabs {
    display: flex;
    border-bottom: 2px solid var(--tyso-border);
    margin: 24px 0;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.tyso-detail-tabs::-webkit-scrollbar {
    display: none;
}
.tyso-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--tyso-transition);
}
.tyso-tab-btn:hover {
    color: var(--tyso-text-main);
}
.tyso-tab-btn.active {
    color: var(--tyso-accent);
    border-bottom-color: var(--tyso-accent);
}

.tyso-tab-pane {
    display: none;
}
.tyso-tab-pane.active {
    display: block;
}

.tyso-detail-card {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 24px;
    margin-bottom: 24px;
}
.card-title {
    font-size: 16px;
    color: var(--tyso-text-main);
    margin: 0 0 16px 0;
}
.border-bottom {
    border-bottom: 1px solid var(--tyso-border);
    padding-bottom: 12px;
}
.tyso-detail-table {
    width: 100% !important;
    border-collapse: collapse !important;
}
.tyso-detail-table td {
    padding: 10px 0;
    border-bottom: 1px solid #edf2ef;
    font-size: 13px;
}
.tyso-detail-table tr:last-child td {
    border-bottom: none;
}

.tyso-h2h-legacy {
    display: none;
}
.tyso-h2h-card {
    overflow: hidden;
}
.tyso-h2h-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--tyso-border);
    padding-bottom: 16px;
    margin-bottom: 18px;
}
.tyso-h2h-heading .card-title {
    margin: 0 0 6px 0;
    font-size: 20px;
}
.tyso-h2h-heading p {
    margin: 0;
    color: var(--tyso-text-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}
.tyso-h2h-total {
    flex-shrink: 0;
    border-radius: 999px;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
}
.tyso-h2h-summary {
    display: grid;
    grid-template-columns: 1fr 0.82fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.tyso-h2h-stat {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    border: 1px solid #edf2ef;
    border-radius: 14px;
    background: #fbfdfc;
    padding: 12px;
}
.tyso-h2h-stat img,
.tyso-h2h-draw-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
}
.tyso-h2h-draw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 18px;
    font-weight: 600;
}
.tyso-h2h-stat-label {
    min-width: 0;
    color: #132018;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-h2h-stat strong {
    color: #0f8a4b;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}
.tyso-h2h-stat small {
    grid-column: 2 / 4;
    color: var(--tyso-text-muted);
    font-size: 11px;
    font-weight: 600;
    margin-top: -4px;
}
.tyso-h2h-stat.is-draw strong {
    color: #d97706;
}
.tyso-h2h-ratebar {
    display: flex;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2ef;
    margin: 10px 0 12px;
}
.tyso-h2h-ratebar span {
    min-width: 0;
}
.tyso-h2h-ratebar .home {
    background: #0f8a4b;
}
.tyso-h2h-ratebar .draw {
    background: #d97706;
}
.tyso-h2h-ratebar .away {
    background: #e03b24;
}
.tyso-h2h-insight {
    margin: 0 0 18px 0;
    border-left: 4px solid var(--tyso-accent);
    border-radius: 0 10px 10px 0;
    background: #f5fbf7;
    color: #314239;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    padding: 12px 14px;
}
.tyso-h2h-list {
    display: grid;
    gap: 12px;
}
.tyso-h2h-match {
    display: grid;
    grid-template-columns: 168px 1fr;
    align-items: center;
    gap: 14px;
    border: 1px solid #edf2ef;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px 14px;
    box-shadow: 0 8px 18px -14px rgba(15, 28, 20, 0.22);
}
.tyso-h2h-match-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.tyso-h2h-match-meta span {
    color: var(--tyso-text-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}
.tyso-h2h-match-meta strong {
    color: #132018;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-h2h-match-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.tyso-h2h-team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.tyso-h2h-team.is-left {
    justify-content: flex-end;
    text-align: right;
}
.tyso-h2h-team.is-right {
    justify-content: flex-start;
    text-align: left;
}
.tyso-h2h-team img {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.tyso-h2h-team span {
    min-width: 0;
    color: #132018;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-h2h-team.is-winner span {
    color: #0f8a4b;
    font-weight: 500;
    background: #eef9f2;
    border-radius: 999px;
    padding: 3px 8px;
}
.tyso-h2h-team.is-winner img {
    filter: drop-shadow(0 2px 5px rgba(15, 138, 75, 0.22));
}
.tyso-h2h-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
    background: #132018;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 10px;
    text-align: center;
}
.tyso-h2h-score em {
    color: rgba(255, 255, 255, 0.55);
    font-style: normal;
}
@media (max-width: 768px) {
    .tyso-h2h-heading,
    .tyso-h2h-match {
        grid-template-columns: 1fr;
    }
    .tyso-h2h-heading {
        display: grid;
    }
    .tyso-h2h-summary {
        grid-template-columns: 1fr;
    }
    .tyso-h2h-match-main {
        grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
        gap: 8px;
    }
    .tyso-h2h-team {
        flex-direction: column;
        justify-content: center !important;
        text-align: center !important;
    }
    .tyso-h2h-team span {
        max-width: 92px;
        font-size: 11px;
    }
    .tyso-h2h-score {
        font-size: 15px;
        padding: 7px 8px;
    }
}

/* formations */
.tyso-formations-comparison {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}
.formation-home, .formation-away {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.formation-badge {
    font-size: 16px;
    background: var(--tyso-bg-canvas);
    color: var(--tyso-accent);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--tyso-border);
}

/* Timeline */
.tyso-timeline-container {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 24px;
}
.tyso-timeline-axis {
    position: relative;
    padding: 20px 0;
}
.tyso-timeline-axis::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45px;
    width: 2px;
    background: var(--tyso-border);
}
.tyso-timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}
.timeline-time {
    width: 36px;
    font-size: 12px;
    color: var(--tyso-accent);
    text-align: right;
    margin-right: 20px;
}
.timeline-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tyso-bg-card);
    border: 2px solid var(--tyso-border);
    border-radius: 50%;
    z-index: 2;
    margin-right: 16px;
}
.timeline-content {
    font-size: 13px;
    color: var(--tyso-text-main);
}

/* Stats */
.tyso-stats-container {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 24px;
}
.tyso-stat-compare-row {
    margin-bottom: 18px;
}
.tyso-stat-compare-row:last-child {
    margin-bottom: 0;
}
.stat-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}
.stat-bar-comparison {
    display: flex;
    height: 8px;
    background: #edf2ef;
    border-radius: 4px;
    overflow: hidden;
}
.stat-bar-home {
    background: var(--tyso-accent);
}
.stat-bar-away {
    background: #e03b24;
    margin-left: auto;
}

/* Lineups */
.tyso-lineups-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.lineup-header-box {
    background: #f8faf9;
    padding: 12px 18px;
    border-radius: var(--tyso-radius-md);
    border: 1px solid var(--tyso-border);
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
}
.players-section-title {
    font-size: 12px;
    color: var(--tyso-text-muted);
    border-bottom: 1px solid var(--tyso-border);
    padding-bottom: 6px;
    margin-bottom: 10px;
}
.lineup-table {
    width: 100% !important;
}
.lineup-table td {
    padding: 8px 0;
    font-size: 13px;
}

/* 7. Predictions Grid and Article List */
.tyso-ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.tyso-ai-card {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 20px;
    transition: var(--tyso-transition);
}
.tyso-ai-card:hover {
    transform: translateY(-4px);
    border-color: var(--tyso-accent);
}
.ai-card-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #edf2ef;
    padding-bottom: 10px;
    font-size: 11px;
    color: var(--tyso-text-muted);
    text-transform: uppercase;
}
.ai-card-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 18px 0;
}
.team-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}
.team-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.ai-advice {
    background: var(--tyso-bg-canvas);
    border: 1px solid var(--tyso-border);
    padding: 10px 14px;
    border-radius: var(--tyso-radius-md);
    font-size: 12px;
    margin-bottom: 16px;
    color: var(--tyso-text-main);
    line-height: 1.4;
}
.ai-bars-comparison .compare-row {
    margin-bottom: 10px;
}
.compare-row .row-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}
.row-label {
    font-size: 11px;
}
.row-val {
    float: right;
    font-size: 12px;
}
.bar-bg {
    height: 6px;
    background: #edf2ef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.bar-fill {
    height: 100%;
}
.tyso-btn-ai-detail {
    display: block;
    text-align: center;
    background: var(--tyso-accent);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px;
    border-radius: var(--tyso-radius-md);
    font-size: 13px;
    margin-top: 18px;
    transition: var(--tyso-transition);
}
.tyso-btn-ai-detail:hover {
    background: var(--tyso-accent-hover);
}

.tyso-predictions-heading {
    margin: 0 0 28px;
}
.tyso-heading-kicker {
    display: block;
    color: #0f8a4b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tyso-predictions-heading h1 {
    margin: 8px 0 12px !important;
    color: #132018 !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
}
.tyso-predictions-heading p {
    max-width: 760px;
    margin: 0 !important;
    color: #66746b;
    font-size: 15px;
    line-height: 1.7;
}
.tyso-prediction-section {
    margin-bottom: 40px;
}
.tyso-section-copy {
    margin-bottom: 20px;
}
.match-time-badge {
    background: #edf2ef;
    border-radius: 999px;
    color: #66746b;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
}
.match-time-badge.is-live {
    background: #fff0e6;
    color: #ff7a1a;
}
.logo-fallback {
    align-items: center;
    background: #edf7f0;
    border-radius: 50%;
    color: #0f8a4b;
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.logo-fallback.small {
    flex-shrink: 0;
    font-size: 9px;
    height: 24px;
    width: 24px;
}
.tyso-predictions-container .tyso-match-row {
    grid-template-columns: 80px 1fr 76px 1fr;
    gap: 10px;
    padding: 14px 16px;
}
.tyso-predictions-container .tyso-row-time {
    align-items: center;
    border-right: 1px solid #edf2ef;
    color: #66746b;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    padding-right: 10px;
    text-align: center;
}
.tyso-row-date {
    font-size: 10px;
    text-transform: uppercase;
}
.tyso-row-hour {
    color: #132018;
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
}
.tyso-row-team-home-cell,
.tyso-row-team-away-cell {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}
.tyso-row-team-home-cell {
    justify-content: flex-end;
    text-align: right;
}
.tyso-row-team-away-cell {
    justify-content: flex-start;
    text-align: left;
}
.tyso-predictions-container .tyso-row-team-name {
    color: #132018;
    font-size: 14px;
    font-weight: 500;
    max-width: none;
}
.tyso-row-score-badge {
    align-items: center;
    background: #edf7f0;
    border-radius: 8px;
    color: #0f8a4b;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    min-width: 56px;
    padding: 6px 8px;
}
.tyso-row-score-badge.is-live {
    background: #fff0e6;
    color: #c94d00;
}
.tyso-live-mini {
    color: #ff7a1a;
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-transform: uppercase;
}
.tyso-ft-mini {
    color: #4b5563;
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-transform: uppercase;
}
.tyso-back-link {
    color: #0f8a4b !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .tyso-predictions-heading h1 {
        font-size: 32px !important;
    }
    .tyso-predictions-container .tyso-match-row {
        grid-template-columns: 54px 1fr 50px 1fr;
        gap: 6px;
        padding: 12px 10px;
    }
    .tyso-predictions-container .tyso-row-team-name {
        font-size: 11px;
    }
    .tyso-row-score-badge {
        min-width: 42px;
        padding: 5px 6px;
        font-size: 11px;
    }
}

/* Predictions Detail styling */
.tyso-prediction-detail-box .prob-row {
    margin-bottom: 16px;
}
.prob-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 4px;
}
.prob-bar-container {
    height: 10px;
    background: #edf2ef;
    border-radius: 5px;
    overflow: hidden;
}
.prob-bar {
    height: 100%;
}
.expected-score-badge {
    background: var(--tyso-bg-canvas);
    border: 1px solid var(--tyso-border);
    padding: 12px 18px;
    border-radius: var(--tyso-radius-md);
    font-size: 14px;
    display: inline-block;
}
.tyso-advice-alert {
    background: #eef9f2;
    border-left: 4px solid var(--tyso-accent);
    padding: 16px;
    border-radius: 0 var(--tyso-radius-md) var(--tyso-radius-md) 0;
    font-size: 14px;
    color: var(--tyso-text-main);
    line-height: 1.5;
}
.tyso-comparison-row {
    margin-bottom: 14px;
}
.comp-row-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}
.comp-row-values {
    display: flex;
    gap: 8px;
}
.comp-row-bar {
    display: flex;
    height: 8px;
    background: #edf2ef;
    border-radius: 4px;
    overflow: hidden;
}
.comp-bar-fill {
    height: 100%;
}
.tyso-form-circle {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 4px;
}
.tyso-forms-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--tyso-border);
    padding-bottom: 8px;
}

/* Articles */
.tyso-expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.tyso-article-card {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    overflow: hidden;
    transition: var(--tyso-transition);
}
.tyso-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -12px rgba(15, 28, 20, 0.1), 0 1px 3px rgba(15, 28, 20, 0.02);
}
.article-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.article-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--tyso-accent);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
}
.article-body {
    padding: 18px;
}
.article-date {
    font-size: 11px;
    display: block;
    margin-bottom: 6px;
}
.article-title {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}
.article-title a {
    color: var(--tyso-text-main) !important;
    text-decoration: none !important;
}
.article-title a:hover {
    color: var(--tyso-accent) !important;
}
.article-excerpt {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
}

/* 8. Table Top Scorers Styling */
.tyso-table-scorers {
    width: 100% !important;
    border-collapse: collapse !important;
}
.tyso-table-scorers th {
    background: #f8faf9;
    color: var(--tyso-text-muted);
    font-weight: 600;
    font-size: 11px;
    padding: 10px;
    border-bottom: 2px solid var(--tyso-border);
}
.tyso-table-scorers td {
    padding: 12px 10px;
    border-bottom: 1px solid #edf2ef;
    vertical-align: middle;
}
.tyso-player-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tyso-player-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #edf2ef;
}
.tyso-player-photo-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #edf2ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    .tyso-match-grid {
        grid-template-columns: 1fr;
    }
    .tyso-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-home {
        order: 1;
    }
    .tyso-hero-score-box {
        order: 2;
        margin: 10px 0;
    }
    .team-away {
        order: 3;
    }
    .tyso-lineups-grid {
        grid-template-columns: 1fr;
    }
    .tyso-forms-split-container {
        grid-template-columns: 1fr;
    }
    .hide-desktop {
        display: inline-block !important;
    }
    .tyso-timeline-axis::before {
        left: 20px;
    }
    .timeline-time {
        width: auto;
        margin-right: 12px;
        text-align: left;
    }
    .timeline-icon {
        margin-right: 12px;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* 9. Three Column Layout & Sidebar Styles */
.tyso-three-column-layout {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 24px;
    max-width: 100%;
    margin: 20px auto;
    align-items: start;
    padding: 0 15px;
}
.tyso-middle-column {
    min-width: 0; /* Prevents flex/grid blowouts */
}

/* Left Sidebar Styles */
.tyso-left-sidebar, .tyso-right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tyso-sidebar-widget {
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    padding: 16px;
}
.tyso-widget-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--tyso-text-main);
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--tyso-accent);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.tyso-widget-empty {
    font-size: 12px;
    color: var(--tyso-text-muted);
    text-align: center;
    padding: 10px 0;
}

/* Search Box */
.tyso-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
#tyso-team-search {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-md);
    font-size: 13px;
    background: var(--tyso-bg-canvas);
    outline: none;
    transition: var(--tyso-transition);
}
#tyso-team-search:focus {
    border-color: var(--tyso-accent);
    background: #ffffff;
}
.tyso-search-icon {
    position: absolute;
    right: 10px;
    font-size: 13px;
    color: var(--tyso-text-muted);
    pointer-events: none;
}

/* Sidebar Menu */
.tyso-sidebar-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tyso-sidebar-menu li {
    margin-bottom: 4px;
}
.tyso-sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--tyso-radius-md);
    color: var(--tyso-text-main) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    transition: var(--tyso-transition);
}
.tyso-sidebar-menu li a:hover, .tyso-sidebar-menu li.active a {
    background: var(--tyso-bg-canvas);
    color: var(--tyso-accent) !important;
}
.tyso-menu-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.tyso-menu-bullet {
    display: none;
}
.tyso-menu-logo[style*="display: none"] + .tyso-menu-bullet {
    display: inline;
}

/* Country Menu specific */
.tyso-country-menu li a {
    font-size: 13px;
}

/* Sidebar Tables (BXH) */
.tyso-sidebar-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}
.tyso-sidebar-table th {
    font-size: 10px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    text-transform: uppercase;
    padding: 6px 4px;
    border-bottom: 1px solid var(--tyso-border);
}
.tyso-sidebar-table td {
    padding: 8px 4px;
    border-bottom: 1px solid #edf2ef;
    font-size: 12px;
    vertical-align: middle;
}
.tyso-sidebar-table tr:last-child td {
    border-bottom: none;
}
.tyso-rank-num {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    background: #edf2ef;
}
.tyso-rank-num.top-rank {
    background: var(--tyso-accent);
    color: #ffffff;
}
.tyso-table-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tyso-sidebar-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.tyso-sidebar-team-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    font-weight: 600;
    color: var(--tyso-text-main);
}
.txt-center {
    text-align: center;
}
.tyso-sidebar-more {
    text-align: right;
    margin-top: 10px;
}
.tyso-sidebar-more-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--tyso-accent) !important;
    text-decoration: none !important;
}
.tyso-sidebar-more-link:hover {
    color: var(--tyso-accent-hover) !important;
}

/* Sidebar Top Scorers List */
.tyso-sidebar-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tyso-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #edf2ef;
}
.tyso-sidebar-list li:last-child {
    border-bottom: none;
}
.tyso-sidebar-rank-bullet {
    font-size: 11px;
    font-weight: 600;
    color: var(--tyso-text-muted);
}
.tyso-sidebar-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: #edf2ef;
}
.tyso-sidebar-player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.tyso-sidebar-player-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--tyso-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tyso-sidebar-player-team {
    font-size: 10px;
    color: var(--tyso-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tyso-sidebar-goals-badge {
    font-size: 11px;
    white-space: nowrap;
}

/* Compact Row-Based Matches List styling */
.tyso-match-rows-list {
    display: flex;
    flex-direction: column;
    background: var(--tyso-bg-card);
    border: 1px solid var(--tyso-border);
    border-radius: var(--tyso-radius-lg);
    box-shadow: var(--tyso-shadow);
    overflow: hidden;
}
.tyso-match-row-link {
    text-decoration: none !important;
    color: inherit !important;
    border-bottom: 1px solid #edf2ef;
}
.tyso-match-row-link:last-child {
    border-bottom: none;
}
.tyso-match-row {
    display: grid;
    grid-template-columns: 80px 1fr 90px 1fr 80px;
    align-items: center;
    padding: 12px 16px;
    transition: var(--tyso-transition);
}
.tyso-match-row:hover {
    background: var(--tyso-bg-canvas);
}
.tyso-row-live {
    border-left: 0 !important;
    background: var(--tyso-live-bg) !important;
}
.tyso-row-time {
    font-size: 12px;
    font-weight: 600;
}
.tyso-time-start {
    color: var(--tyso-text-muted);
    background: var(--tyso-bg-canvas);
    padding: 3px 6px;
    border-radius: 4px;
}
.tyso-time-live {
    color: var(--tyso-live-color);
    font-weight: 600;
}
.tyso-row-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tyso-team-home {
    justify-content: flex-end;
    text-align: right;
}
.tyso-team-away {
    justify-content: flex-start;
    text-align: left;
}
.tyso-row-team-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tyso-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}
.tyso-row-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.tyso-row-score {
    text-align: center;
}
.tyso-vs-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--tyso-text-muted);
    background: rgba(15, 28, 20, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}
.tyso-score-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--tyso-text-main);
    letter-spacing: 2px;
}
.tyso-row-actions {
    text-align: right;
}
.tyso-row-detail-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--tyso-accent);
    opacity: 0;
    transition: var(--tyso-transition);
}
.tyso-match-row:hover .tyso-row-detail-btn {
    opacity: 1;
}

/* Responsive sidebars container */
@media (max-width: 1024px) {
    .tyso-three-column-layout {
        grid-template-columns: 200px 1fr;
    }
    .tyso-right-sidebar {
        display: none;
    }
}
@media (max-width: 768px) {
    .tyso-three-column-layout {
        grid-template-columns: 1fr;
    }
    .tyso-left-sidebar {
        display: none;
    }
    .tyso-match-row {
        grid-template-columns: 60px 1fr 60px 1fr;
    }
    .tyso-row-actions {
        display: none;
    }
    .tyso-row-team-name {
        max-width: 80px;
    }
}

/* 10. GoalVN Layout & Sidebar Premium Aesthetics */
.tyso-left-sidebar-goalvn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025);
    overflow: hidden;
}
.tyso-widget-header-green {
    background: #0e7f3d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.tyso-sidebar-menu-clean {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tyso-sidebar-menu-clean li {
    margin: 0;
    border-bottom: 1px solid #f3f4f6;
}
.tyso-sidebar-menu-clean li:last-child {
    border-bottom: none;
}
.tyso-sidebar-menu-clean li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #4b5563 !important;
    text-decoration: none !important;
    font-size: 13.5px;
    transition: all 0.2s ease;
}
.tyso-sidebar-menu-clean li a:hover {
    background: #f9fafb;
    color: #0e7f3d !important;
}
.tyso-sidebar-menu-clean li.active a {
    background: #f3f4f6;
    color: #0e7f3d !important;
    font-weight: 600;
}
.tyso-sidebar-menu-clean .menu-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.tyso-sidebar-menu-clean .tyso-menu-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}
.tyso-sidebar-menu-clean .tyso-menu-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tyso-menu-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    flex-shrink: 0;
}
.tyso-badge-hot {
    background: #ff5a00;
    color: #ffffff;
}
.tyso-badge-vn {
    background: #e11d48;
    color: #ffffff;
}

/* Right Sidebar Premium Styles */
.tyso-right-sidebar-goalvn {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tyso-right-sidebar-goalvn .tyso-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025);
    overflow: hidden;
}

/* Live Widget */
.live-matches-widget .live-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    background: #ffffff;
}
.live-matches-widget .live-header-left {
    display: flex;
    flex-direction: column;
}
.live-matches-widget .live-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}
.live-matches-widget .live-subtext {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}
.live-matches-widget .live-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fee2e2;
    color: #ef4444;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.live-matches-widget .no-live-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    text-align: center;
    background: #ffffff;
}
.live-matches-widget .info-circle-icon {
    color: #10b981;
    background: #ecfdf5;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.live-matches-widget .info-circle-icon svg {
    width: 24px;
    height: 24px;
}
.live-matches-widget .no-live-title {
    font-size: 13.5px;
    color: #1f2937;
    margin-bottom: 6px;
}
.live-matches-widget .no-live-desc {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
    max-width: 200px;
}

/* Live Match Rows */
.live-match-rows {
    display: flex;
    flex-direction: column;
}
.live-match-row-link {
    text-decoration: none !important;
    color: inherit !important;
    border-bottom: 1px solid #f3f4f6;
}
.live-match-row-link:last-child {
    border-bottom: none;
}
.live-match-sidebar-row {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    transition: background 0.2s ease;
}
.live-match-sidebar-row:hover {
    background: #f9fafb;
}
.sidebar-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 70px;
}
.sidebar-team-row .team-name {
    font-size: 12.5px;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-team-row .team-score {
    font-size: 13.5px;
}
.sidebar-row-status {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    padding: 4px 8px;
    border-radius: 6px;
}
.sidebar-row-status .status-elapsed {
    font-size: 10px;
    color: #10b981;
}
.live-dot-blink {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: tyso-pulse 1.5s infinite;
}

/* Standings Widget */
.tyso-widget-header-blue {
    background: #0284c7;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.standings-tabs-bar {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.standings-tabs-bar::-webkit-scrollbar {
    display: none;
}
.standings-tab-btn {
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 9999px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
}
.standings-tab-btn.active {
    background: #0284c7;
    color: #ffffff;
}
.standings-panes {
    background: #ffffff;
}
.standings-tab-pane {
    display: none;
}
.standings-tab-pane.active {
    display: block;
}
.pane-empty-text {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    padding: 24px 10px;
}

/* Standings Table GoalVN style */
.tyso-sidebar-table-goalvn {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}
.tyso-sidebar-table-goalvn th {
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    padding: 8px 10px;
    border-bottom: 1px solid #f3f4f6;
    letter-spacing: 0.02em;
}
.tyso-sidebar-table-goalvn td {
    padding: 8px 10px;
    border-bottom: 1px solid #f9fafb;
    font-size: 12px;
    vertical-align: middle;
}
.tyso-sidebar-table-goalvn tr:last-child td {
    border-bottom: none;
}
.rank-badge {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 10px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}
.rank-badge.rank-1 {
    background: #ef4444;
    color: #ffffff;
}
.rank-badge.rank-2 {
    background: #f59e0b;
    color: #ffffff;
}
.rank-badge.rank-3 {
    background: #10b981;
    color: #ffffff;
}
.team-cell-goalvn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.team-cell-goalvn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.team-cell-goalvn .team-name {
    font-size: 12.5px;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}
.score-highlight {
    color: #0284c7;
}
.standings-widget-footer {
    padding: 12px 16px;
    border-top: 1px solid #f3f4f6;
    text-align: center;
    background: #f9fafb;
}
.view-all-bxh-link {
    font-size: 11px;
    color: #0284c7 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: color 0.2s ease;
}
.view-all-bxh-link:hover {
    color: #0369a1 !important;
}

@keyframes tyso-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Adjust three column grid to GoalVN layout dimensions */
@media (min-width: 1025px) {
    .tyso-three-column-layout {
        grid-template-columns: 260px 1fr 310px;
        gap: 30px;
    }
}

/* 11. Complete Flatsome CSS Specificity Overrides & Style resets */
.tyso-three-column-layout ul,
.tyso-three-column-layout ol,
.tyso-three-column-layout li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.tyso-three-column-layout a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.tyso-three-column-layout a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.tyso-three-column-layout table,
.tyso-three-column-layout table.tyso-sidebar-table-goalvn,
.tyso-three-column-layout table.tyso-sidebar-table {
    border: none !important;
    border-collapse: collapse !important;
    background: transparent !important;
    margin: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
}

.tyso-three-column-layout table th,
.tyso-three-column-layout table td {
    border: none !important;
    background: transparent !important;
}

.tyso-three-column-layout table.tyso-sidebar-table-goalvn td,
.tyso-three-column-layout table.tyso-sidebar-table-goalvn th {
    border: none !important;
    border-bottom: 1px solid #f3f4f6 !important;
    background: transparent !important;
    padding: 8px 10px !important;
}

.tyso-three-column-layout table.tyso-sidebar-table-goalvn tr {
    background: transparent !important;
}

.tyso-three-column-layout table.tyso-sidebar-table-goalvn tr:last-child td {
    border-bottom: none !important;
}

/* Form resets */
.tyso-three-column-layout input[type="text"],
.tyso-three-column-layout input[type="date"] {
    box-shadow: none !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    color: #374151 !important;
    font-family: inherit !important;
    height: auto !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
}

.tyso-three-column-layout input[type="text"]:focus,
.tyso-three-column-layout input[type="date"]:focus {
    border-color: #0e7f3d !important;
    outline: none !important;
}

.row-main:has(.tyso-three-column-layout) > .col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.col-inner:has(.tyso-three-column-layout) {
    padding: 0 !important;
}

/* 12. Date Navigation Bar Premium Styling */
.tyso-date-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 16px 20px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03) !important;
    margin-bottom: 24px !important;
}

.tyso-date-items {
    display: flex !important;
    gap: 8px !important;
    flex: 1 !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

.tyso-date-items::-webkit-scrollbar {
    display: none !important;
}

.tyso-date-item {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    color: #4b5563 !important;
    text-decoration: none !important;
    min-width: 65px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    line-height: 1.2 !important;
}

.tyso-date-item:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    color: #0e7f3d !important;
}

.tyso-date-item.active {
    background: #0e7f3d !important;
    border-color: #0e7f3d !important;
    color: #ffffff !important;
}

.tyso-date-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #9ca3af !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.tyso-date-item.active .tyso-date-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.tyso-date-day {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    display: block !important;
}

.tyso-date-item.active .tyso-date-day {
    color: #ffffff !important;
}

.tyso-custom-date {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.tyso-custom-date .tyso-date-input {
    padding: 10px 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    background: #ffffff !important;
    outline: none !important;
    cursor: pointer !important;
}

/* Match Groups Layout enhancements */
.tyso-match-groups-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.tyso-match-group {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.tyso-group-header {
    background: #ffffff !important;
    border-bottom: 1px solid #f3f4f6 !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tyso-group-header .league-logo {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
}

.tyso-group-header .league-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

/* Left Sidebar active state enhancements */
.tyso-sidebar-menu-clean li.active {
    background-color: #f0fdf4 !important;
}

.tyso-sidebar-menu-clean li.active a {
    background-color: #f0fdf4 !important;
    color: #0e7f3d !important;
    font-weight: 600 !important;
    border-left: 3px solid #0e7f3d !important;
    padding-left: 13px !important; /* adjust for border */
}

.tyso-sidebar-menu-clean .tyso-menu-text {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #374151 !important;
}

/* Premium Homepage Hero Styling */
.tyso-premium-hero {
    position: relative;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 32px 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
    .tyso-premium-hero {
        min-height: 320px;
        padding: 24px 20px;
    }
}
.hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 600px;
}
.hero-tag {
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    color: #0f8a4b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-title {
    font-size: 46px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    color: #132018 !important;
    margin: 16px 0 12px 0 !important;
    letter-spacing: -0.02em !important;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px !important;
    }
}
.hero-description {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #374b3f !important;
    margin-bottom: 24px !important;
}
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-btn-green, .hero-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}
.hero-btn-green {
    background-color: #0f8a4b !important;
    color: #ffffff !important;
}
.hero-btn-green:hover {
    background-color: #0a6937 !important;
    transform: translateY(-1px);
}
.hero-btn-white {
    background-color: #ffffff !important;
    color: #c94d00 !important;
    border: 1px solid #e5e7eb;
}
.hero-btn-white:hover {
    background-color: #f9fafb !important;
    transform: translateY(-1px);
}

/* Tab Switches & Active Highlight */
.tyso-tab-btn {
    transition: all 0.2s ease;
}
.tyso-tab-btn:hover {
    color: #0f8a4b !important;
}
.tyso-tab-btn.active {
    color: #0f8a4b !important;
    border-bottom-color: #0f8a4b !important;
}

.tyso-tab-pane {
    display: none !important;
}
.tyso-tab-pane.active {
    display: block !important;
}

/* Today Match rows hover */
.tyso-home-section .tyso-card-group .tyso-match-row-item {
    border-bottom: 1px solid #edf2ef !important;
}

.tyso-home-section .tyso-card-group .tyso-match-row-item:last-child {
    border-bottom: 0 !important;
}

.tyso-match-row-item:hover {
    background-color: #f7fbf8 !important;
}

/* Blinking Animation */
@keyframes tyso-blink {
    50% { opacity: 0.4; }
}
.blinking-text {
    animation: tyso-blink 1.2s infinite ease-in-out;
}

/* Left Sidebar Full Width Parity Fixes */
.tyso-left-sidebar-goalvn {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-widget {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.tyso-left-sidebar-goalvn .tyso-widget-header-green {
    width: 100% !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 14px 16px !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li.active a {
    border-left: 3px solid #0e7f3d !important;
    padding-left: 13px !important;
    background-color: #f0fdf4 !important;
}

/* Right Sidebar Full Width Parity Fixes */
.tyso-right-sidebar-goalvn .tyso-sidebar-widget {
    padding: 0 !important;
}

.tyso-widget-header-blue {
    width: 100% !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}


/* Responsive mobile view for match schedules: Stacked logos & names */
@media (max-width: 767px) {
    .tyso-match-row {
        grid-template-columns: 70px 1fr 64px 1fr !important;
        gap: 6px !important;
        padding: 10px 8px !important;
    }
    
    /* Stack Home Team: Logo on top, Name below */
    .tyso-row-team-home-cell {
        flex-direction: column-reverse !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 4px !important;
    }
    
    /* Stack Away Team: Logo on top, Name below */
    .tyso-row-team-away-cell {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 4px !important;
    }
    
    /* Center logos and text on mobile */
    .tyso-row-team-home-cell img,
    .tyso-row-team-away-cell img {
        margin: 0 !important;
        display: block !important;
    }
    
    .tyso-row-team-home-cell span,
    .tyso-row-team-away-cell span {
        font-size: 12px !important;
        white-space: normal !important;
        word-break: break-word !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.2 !important;
    }
    
    /* Shrink VS and Score badges on mobile */
    .tyso-row-score div {
        font-size: 12px !important;
        min-width: 48px !important;
        padding: 5px 6px !important;
    }
    
    .tyso-row-time {
        padding-right: 6px !important;
    }
}

/* Standings AJAX & Premium design upgrades */
.tyso-standings-league-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: flex-start;
}

.tyso-standings-league-pills a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tyso-standings-league-pills a:hover {
    background-color: #e5e7eb;
}

.tyso-standings-league-pills a.active {
    background-color: #07824b !important;
    color: #ffffff !important;
}

.tyso-standings-league-pills a .pill-icon {
    font-size: 14px;
}

/* Recent Form Badges */
.tyso-form-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tyso-form-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff !important;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.tyso-form-circle.win {
    background-color: #07824b !important;
}

.tyso-form-circle.draw {
    background-color: #9ca3af !important;
}

.tyso-form-circle.lose {
    background-color: #dc2626 !important;
}

.tyso-pjax-loading {
    pointer-events: none;
}

/* League overview page */
.tyso-league-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tyso-league-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #dceee6;
    border-radius: 12px;
    background: #ffffff;
}

.tyso-league-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid #e3ede9;
    border-radius: 999px;
    background: #ffffff;
    color: #1c2c25;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.tyso-league-switcher a.active,
.tyso-league-switcher a:hover {
    border-color: #07824b;
    background: #07824b;
    color: #ffffff;
}

.tyso-league-switcher img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.tyso-league-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 154px;
    padding: 26px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ccefe6 0%, #64c7bd 100%);
    color: #17362f;
}

.tyso-league-hero-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(10, 72, 55, 0.24));
}

.tyso-league-hero-main h1 {
    margin: 0 0 8px;
    color: #183a33;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 600;
}

.tyso-league-meta,
.tyso-league-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tyso-league-meta {
    color: #49635b;
    font-size: 13px;
    font-weight: 500;
}

.tyso-league-quick-links {
    margin-top: 18px;
}

.tyso-league-quick-links a,
.tyso-league-section-tabs button,
.tyso-league-season-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.34);
    color: #10241f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.tyso-league-section-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 4px 0 0;
}

.tyso-league-section-tabs button {
    background: transparent;
    color: #7a8580;
    cursor: pointer;
}

.tyso-league-section-tabs button.active {
    background: #07824b;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(7, 130, 75, 0.2);
}

.tyso-league-season-pill {
    margin-left: auto;
    min-width: 90px;
    background: #ffffff;
    color: #9aa6a0;
    border: 1px solid #e4ebe8;
}

.tyso-league-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tyso-league-stats-grid > div {
    min-height: 84px;
    padding: 16px;
    border: 1px solid #e1e8e5;
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
}

.tyso-league-stats-grid > div.highlight {
    border-color: #86cfc1;
    background: linear-gradient(135deg, #edf7f4, #cbeae4);
}

.tyso-league-stats-grid strong {
    display: block;
    color: #078a82;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.tyso-league-stats-grid span {
    display: block;
    margin-top: 9px;
    color: #7b8681;
    font-size: 12px;
    font-weight: 600;
}

.tyso-league-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tyso-league-panel {
    min-width: 0;
    padding: 18px 18px 16px;
    border: 1px solid #dfe8e4;
    border-radius: 10px;
    background: #ffffff;
}

.tyso-league-panel header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.tyso-league-panel h2 {
    margin: 0;
    color: #0f1d17;
    font-size: 16px;
    font-weight: 600;
}

.tyso-league-panel header a {
    color: #07824b;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.tyso-league-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.tyso-league-mini-table th,
.tyso-league-mini-table td {
    height: 34px;
    border-bottom: 1px solid #edf2ef;
    color: #1b2923;
    font-size: 13px;
    text-align: left;
}

.tyso-league-mini-table th {
    color: #899690;
    font-size: 11px;
    font-weight: 600;
}

.tyso-league-mini-table td:first-child {
    width: 34px;
    color: #0f9b59;
    font-weight: 600;
}

.tyso-league-mini-table td:nth-child(3),
.tyso-league-mini-table td:nth-child(4),
.tyso-league-mini-table td:nth-child(5),
.tyso-league-mini-table th:nth-child(3),
.tyso-league-mini-table th:nth-child(4),
.tyso-league-mini-table th:nth-child(5) {
    width: 44px;
    text-align: center;
}

.tyso-league-mini-table td:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-weight: 600;
}

.tyso-league-mini-table img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tyso-league-mini-table .points {
    color: #66adff;
    font-weight: 600;
}

.tyso-league-scorer-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.tyso-league-scorer-podium article {
    min-width: 0;
    padding: 14px 10px;
    border: 1px solid #efd89b;
    border-radius: 10px;
    background: #fff9ea;
    text-align: center;
}

.tyso-league-scorer-podium .medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: #f0bd35;
    color: #111915;
    font-size: 12px;
    font-weight: 600;
}

.tyso-league-scorer-podium img {
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 8px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.tyso-league-scorer-podium strong,
.tyso-league-scorer-podium small,
.tyso-league-scorer-podium b {
    display: block;
}

.tyso-league-scorer-podium strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #17231f;
    font-size: 13px;
    font-weight: 600;
}

.tyso-league-scorer-podium small {
    margin-top: 3px;
    color: #8a948f;
    font-size: 11px;
    font-weight: 600;
}

.tyso-league-scorer-podium b {
    margin-top: 8px;
    color: #19b94d;
    font-size: 16px;
    font-weight: 600;
}

.tyso-league-scorer-list {
    margin-top: 10px;
}

.tyso-league-scorer-list div {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    border-bottom: 1px solid #edf2ef;
    color: #1c2b24;
    font-size: 13px;
}

.tyso-league-scorer-list span {
    color: #899690;
    font-weight: 600;
}

.tyso-league-scorer-list strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tyso-league-scorer-list b {
    color: #19a850;
    font-weight: 600;
}

.tyso-league-tab-panel {
    display: none;
}

.tyso-league-tab-panel.active {
    display: block;
}

.tyso-league-tab-panel[data-league-panel="overview"].active {
    display: grid;
    gap: 16px;
}

.tyso-league-stats-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    border-radius: 12px;
    background: transparent;
}

.tyso-league-tab-panel[data-league-panel="honors"].active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tyso-league-tab-panel[data-league-panel="honors"],
.tyso-league-tab-panel[data-league-panel="about"] {
    background: transparent;
    border-radius: 12px;
}

.tyso-league-dark-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid #dfe8e4;
    border-radius: 10px;
    background: #ffffff;
    color: #17231f;
    box-shadow: 0 8px 22px rgba(10, 47, 33, 0.04);
}

.tyso-league-dark-card.wide {
    grid-column: 1 / -1;
}

.tyso-league-dark-card h2 {
    margin: 0 0 16px;
    color: #0f1d17;
    font-size: 16px;
    font-weight: 600;
}

.tyso-league-stat-row {
    display: grid;
    grid-template-columns: 24px 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    border-bottom: 1px solid #24342a;
}

.tyso-league-stat-row:last-child {
    border-bottom: 0;
}

.tyso-league-stat-row span {
    color: #0f9b59;
    font-weight: 600;
}

.tyso-league-stat-row img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.tyso-league-stat-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #15251f;
    font-size: 13px;
    font-weight: 600;
}

.tyso-league-stat-row b {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.tyso-league-stat-row b.green {
    color: #10a154;
}

.tyso-league-stat-row b.cyan {
    color: #078a82;
}

.tyso-league-stat-row b.yellow {
    color: #f6b92f;
}

.tyso-league-stat-row b.blue {
    color: #2775db;
}

.tyso-league-form-badges {
    display: inline-flex;
    gap: 4px;
}

.tyso-league-form-badges em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}

.tyso-league-form-badges em.win {
    background: #116d38;
}

.tyso-league-form-badges em.draw {
    background: #755c1d;
}

.tyso-league-form-badges em.lose {
    background: #873436;
}

.tyso-league-dark-table {
    width: 100%;
    border-collapse: collapse;
}

.tyso-league-dark-table th,
.tyso-league-dark-table td {
    height: 38px;
    border-bottom: 1px solid #edf2ef;
    color: #17231f;
    font-size: 13px;
    text-align: left;
}

.tyso-league-dark-table th {
    color: #899690;
    font-size: 11px;
    font-weight: 600;
}

.tyso-league-dark-table td:first-child,
.tyso-league-dark-table .value {
    color: #0f9b59;
    font-weight: 600;
}

.tyso-league-dark-table .player {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.tyso-league-dark-table .player img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.tyso-league-tab-panel[data-league-panel="about"] {
    padding: 18px;
}

.tyso-league-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tyso-league-about-grid div {
    padding: 14px;
    border: 1px solid #edf2ef;
    border-radius: 8px;
    background: #fbfdfc;
}

.tyso-league-about-grid span {
    display: block;
    margin-bottom: 8px;
    color: #87938d;
    font-size: 12px;
    font-weight: 500;
}

.tyso-league-about-grid strong {
    color: #17231f;
    font-size: 14px;
    font-weight: 600;
}

.tyso-league-dark-card p {
    margin: 18px 0 0;
    color: #56665f;
    font-size: 14px;
    line-height: 1.7;
}

.tyso-league-record-box {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #edf2ef;
    border-radius: 10px;
    background: #fbfdfc;
}

.tyso-league-champions-list {
    display: grid;
    gap: 12px;
}

.tyso-league-champions-list div {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 12px;
}

.tyso-league-champions-list span {
    color: #10b9ae;
    font-size: 13px;
    font-weight: 600;
}

.tyso-league-champions-list strong {
    color: #17231f;
    font-size: 14px;
    font-weight: 600;
}

.tyso-league-about-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .tyso-league-hero {
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding: 18px 16px;
        border-radius: 12px;
    }

    .tyso-league-hero-logo {
        width: 54px;
        height: 54px;
    }

    .tyso-league-hero-main {
        min-width: 0;
    }

    .tyso-league-hero-main h1 {
        margin-bottom: 6px;
        font-size: 20px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .tyso-league-meta {
        gap: 6px;
        font-size: 11px;
        line-height: 1.35;
    }

    .tyso-league-quick-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        margin-top: 12px;
    }

    .tyso-league-quick-links a {
        min-height: 32px;
        padding: 7px 6px;
        border-radius: 8px;
        font-size: 11px;
        line-height: 1.1;
        text-align: center;
    }

    .tyso-league-stats-grid,
    .tyso-league-panels,
    .tyso-league-stats-panels,
    .tyso-league-tab-panel[data-league-panel="honors"],
    .tyso-league-about-grid,
    .tyso-league-about-grid.compact {
        grid-template-columns: 1fr;
    }

    .tyso-league-section-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
        padding-top: 0;
    }

    .tyso-league-section-tabs button {
        width: 100%;
        min-height: 36px;
        padding: 8px 6px;
        border-radius: 9px;
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .tyso-league-season-pill {
        grid-column: 1 / -1;
        justify-self: end;
        min-height: 32px;
        margin-left: 0;
        padding: 7px 14px;
    }
}

@media (max-width: 380px) {
    .tyso-league-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .tyso-league-hero-logo {
        width: 48px;
        height: 48px;
    }
}

/* Standings Skeleton Loader */
.tyso-standings-skeleton {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
}

.tyso-skeleton-line {
    height: 20px;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: tyso-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.tyso-skeleton-line.header {
    height: 38px;
    margin-bottom: 20px;
}

@keyframes tyso-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Standing Table details */
@media (max-width: 768px) {
    .tyso-table-standings th:nth-child(4),
    .tyso-table-standings td:nth-child(4), /* THẮNG */
    .tyso-table-standings th:nth-child(5),
    .tyso-table-standings td:nth-child(5), /* HÒA */
    .tyso-table-standings th:nth-child(6),
    .tyso-table-standings td:nth-child(6), /* THUA */
    .tyso-table-standings th:nth-child(9),
    .tyso-table-standings td:nth-child(9)  /* FORM */ {
        display: none !important;
    }
}

/* wc.local page shell parity */
.tyso-page-heading {
    margin: 0 0 28px;
}
.tyso-page-heading .tyso-heading-kicker,
.tyso-heading-kicker {
    display: block;
    color: #0f8a4b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tyso-page-heading h1 {
    margin: 8px 0 12px !important;
    color: #132018 !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.08 !important;
}
.tyso-page-heading p {
    max-width: 760px;
    margin: 0 !important;
    color: #66746b;
    font-size: 15px;
    line-height: 1.7;
}
.tyso-schedule-container,
.tyso-live-wrapper,
.tyso-predictions-container {
    min-width: 0;
}

.tyso-ai-pending-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.tyso-ai-pending-card {
    overflow: hidden;
    border: 1px solid #edf2ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--tyso-shadow);
}

.tyso-ai-pending-card.is-detail {
    max-width: 760px;
    margin: 0 auto 24px;
}

.tyso-ai-pending-main {
    display: block;
    padding: 20px;
    color: inherit;
    text-align: center;
    text-decoration: none !important;
}

.tyso-ai-pending-league {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #506158;
    font-size: 13px;
    font-weight: 600;
}

.tyso-ai-pending-league img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tyso-ai-pending-card h3,
.tyso-ai-pending-card h1 {
    margin: 10px 0 8px !important;
    color: #132018 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: center;
}

.tyso-ai-pending-time {
    color: #66746b;
    font-size: 13px;
    font-weight: 600;
}

.tyso-ai-pending-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    max-width: 360px;
    margin: 24px auto 8px;
}

.tyso-ai-pending-teams > div {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
}

.tyso-ai-pending-teams img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.tyso-ai-pending-teams strong {
    overflow: hidden;
    max-width: 120px;
    color: #132018;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.tyso-ai-pending-teams > span {
    color: #26342e;
    font-size: 20px;
    font-weight: 600;
}

.tyso-ai-pending-status {
    margin: 0 20px 20px;
    padding: 16px;
    border: 1px solid #edf2ef;
    border-radius: 10px;
    background: #fbfdfc;
    color: #8a9b90;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.tyso-ai-pending-status.is-detail {
    max-width: 760px;
    margin: 0 auto;
    border-color: #dce9e3;
    background: #ffffff;
    box-shadow: var(--tyso-shadow);
}

.tyso-schedule-table-head {
    display: grid;
    grid-template-columns: 80px 1fr 76px 1fr;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 10px 16px;
    border: 1px solid #dbe8df;
    border-radius: 14px;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tyso-schedule-table-head span:first-child,
.tyso-schedule-table-head span:nth-child(3) {
    text-align: center;
}
.tyso-schedule-table-head span:nth-child(2) {
    padding-right: 40px;
    text-align: right;
}
.tyso-schedule-table-head span:nth-child(4) {
    padding-left: 40px;
    text-align: left;
}
.tyso-match-groups-wrapper .tyso-league-group {
    overflow: hidden;
    margin: 0 0 20px !important;
    border: 1px solid #edf3f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--tyso-shadow);
}
.tyso-match-groups-wrapper .tyso-league-header {
    justify-content: space-between;
    margin: 0 !important;
    padding: 14px 16px !important;
    border: 0;
    border-bottom: 1px solid #edf2ef;
    border-radius: 0;
    background: #f7fbf8;
}
.tyso-match-groups-wrapper .tyso-league-info {
    min-width: 0;
}
.tyso-league-text {
    display: grid;
    min-width: 0;
}
.tyso-match-groups-wrapper .tyso-league-name {
    overflow: hidden;
    color: #0f8a4b;
    font-size: 15px;
    font-weight: 600;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
}
.tyso-league-subtitle {
    overflow: hidden;
    color: #66746b;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-league-count {
    flex-shrink: 0;
    border-radius: 999px;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
}
.tyso-match-groups-wrapper .tyso-match-rows-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.tyso-match-row-link:hover {
    background: #edf7f0;
}
.tyso-row-team-name {
    font-weight: 500 !important;
}
.tyso-live-content-area .tyso-match-rows-list {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.tyso-live-header-bar .tyso-schedule-title {
    color: #132018 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}
.tyso-dynamic-page-wrapper .tyso-three-column-layout {
    margin-top: 32px;
}
.tyso-dynamic-match-card {
    min-width: 0;
}
.tyso-match-detail-wrapper {
    box-shadow: var(--tyso-shadow) !important;
}
.tyso-match-detail-wrapper [style*="font-weight: 900"][style*="color: #132018"] {
    letter-spacing: 0 !important;
}

@media (max-width: 1024px) {
    .tyso-three-column-layout {
        grid-template-columns: 220px minmax(0, 1fr) !important;
    }
    .tyso-three-column-layout > .tyso-right-sidebar-goalvn {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .tyso-three-column-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        padding: 0 12px !important;
    }
    .tyso-three-column-layout > .tyso-left-sidebar-goalvn {
        display: none !important;
    }
    .tyso-page-heading h1 {
        font-size: 32px !important;
    }
    .tyso-schedule-table-head {
        grid-template-columns: 60px 1fr 60px 1fr;
        gap: 6px;
        padding: 9px 10px;
        font-size: 9px;
    }
    .tyso-schedule-table-head span:nth-child(2) {
        padding-right: 12px;
    }
    .tyso-schedule-table-head span:nth-child(4) {
        padding-left: 12px;
    }
}

/* Right sidebar standings parity with wc.local */
.tyso-right-sidebar-goalvn {
    display: grid;
    gap: 24px;
    min-width: 0;
}
.tyso-right-sidebar-goalvn .standings-tabs-widget {
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid #edf3f0 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: var(--tyso-shadow) !important;
}
.tyso-right-sidebar-goalvn .tyso-widget-header-blue {
    justify-content: center;
    gap: 10px;
    border-radius: 0 !important;
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 52%, #3a7bd5 100%) !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 16px !important;
    text-align: center;
}
.tyso-right-sidebar-goalvn .standings-tabs-bar {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 12px 14px;
    border-bottom: 1px solid #edf2ef;
    background: #f8faf9;
    scrollbar-width: none;
}
.tyso-right-sidebar-goalvn .standings-tabs-bar::-webkit-scrollbar {
    display: none;
}
.tyso-right-sidebar-goalvn .standings-tab-btn {
    flex-shrink: 0;
    border: 1px solid #edf2ef;
    border-radius: 999px;
    background: #ffffff;
    color: #66746b;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
}
.tyso-right-sidebar-goalvn .standings-tab-btn.active {
    border-color: #0f8a4b;
    background: #0f8a4b;
    color: #ffffff;
}
.tyso-sidebar-standings-head,
.tyso-sidebar-standing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 42px 42px;
    align-items: center;
    gap: 1px;
}
.tyso-sidebar-standings-head {
    padding: 8px 16px;
    border-bottom: 1px solid #edf2ef;
    background: #f8faf9;
    color: #66746b;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.tyso-sidebar-standings-head span:not(:first-child) {
    text-align: center;
}
.tyso-sidebar-standings-body {
    display: grid;
}
.tyso-sidebar-standing-row {
    min-height: 42px;
    padding: 8px 16px;
    border-bottom: 1px solid #edf2ef;
    color: #132018;
    font-size: 12px;
    transition: background 0.2s ease;
}
.tyso-sidebar-standing-row:last-child {
    border-bottom: 0;
}
.tyso-sidebar-standing-row:hover {
    background: #edf7f0;
}
.tyso-sidebar-standing-row > span {
    font-weight: 600;
}
.tyso-sidebar-standing-row .score-highlight {
    color: #132018;
    font-size: 13px;
    font-weight: 600;
}
.tyso-sidebar-standing-row .team-cell-goalvn {
    display: flex;
    align-items: center;
    min-width: 0;
}
.tyso-sidebar-standing-row .team-cell-main {
    display: flex;
    align-items: center;
    min-width: 0;
}
.tyso-sidebar-standing-row .rank-badge {
    flex-shrink: 0;
    margin-right: 8px;
}
.tyso-sidebar-standing-row .team-logo {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}
.tyso-sidebar-standing-row .team-name {
    min-width: 0;
    max-width: 132px;
    overflow: hidden;
    color: #132018;
    font-size: 12px;
    font-weight: 500 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-right-sidebar-goalvn .standings-widget-footer {
    padding: 12px 16px;
    border-top: 1px solid #edf2ef;
    background: #f8faf9;
}
.tyso-right-sidebar-goalvn .view-all-bxh-link {
    color: #0f8a4b !important;
    font-size: 12px;
    font-weight: 600 !important;
}

@media (min-width: 1200px) {
    .tyso-three-column-layout {
        grid-template-columns: 240px minmax(0, 1fr) 380px !important;
        gap: 24px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .tyso-three-column-layout {
        grid-template-columns: 220px minmax(0, 1fr) 340px !important;
        gap: 20px !important;
    }
}

.tyso-right-sidebar-goalvn .tyso-sidebar-standings-head,
.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row {
    grid-template-columns: minmax(0, 1fr) 34px 38px 40px !important;
}

.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row {
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.tyso-right-sidebar-goalvn .team-cell-goalvn {
    gap: 0 !important;
}

.tyso-right-sidebar-goalvn .team-cell-main {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.tyso-right-sidebar-goalvn .team-cell-goalvn .team-name,
.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row .team-name {
    display: block !important;
    max-width: none !important;
    width: 100% !important;
    color: #132018 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row > span:not(.score-highlight) {
    font-weight: 500 !important;
}

/* Final compact row override */
.tyso-match-groups-wrapper .tyso-match-row-link,
.tyso-live-content-area .tyso-match-row-link,
.tyso-match-row-link,
.tyso-match-row-item {
    padding: 4px 10px !important;
}
.tyso-match-groups-wrapper .tyso-match-row,
.tyso-live-content-area .tyso-match-row,
.tyso-match-row {
    min-height: 20px !important;
    padding: 0 !important;
}

/* Live page layout matched to wc.local */
.tyso-live-page {
    width: min(1320px, calc(100vw - 32px));
    margin: 32px auto;
}

.tyso-live-page .tyso-page-heading {
    margin-bottom: 32px;
}

.tyso-live-page .tyso-live-layout {
    margin: 0 auto !important;
    padding: 0 !important;
}

.tyso-live-page .tyso-live-content-area {
    display: block;
    min-width: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: opacity 0.2s ease;
}

.tyso-live-groups-wrapper {
    display: grid;
    gap: 20px;
}

.tyso-live-table-head {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: -4px;
    padding: 10px 16px;
    border: 1px solid #dbe8df;
    border-radius: 14px;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(19, 32, 24, 0.04);
}

.tyso-live-table-head span:first-child,
.tyso-live-table-head span:nth-child(3) {
    text-align: center;
}

.tyso-live-table-head span:nth-child(2) {
    padding-right: 40px;
    text-align: right;
}

.tyso-live-table-head span:nth-child(4) {
    padding-left: 40px;
    text-align: left;
}

.tyso-live-league-group {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #edf3f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--tyso-shadow);
}

.tyso-live-league-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2ef;
    background: #f7fbf8;
}

.tyso-live-league-info {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.tyso-live-league-info img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.tyso-live-league-text {
    display: grid;
    min-width: 0;
}

.tyso-live-league-text h2 {
    overflow: hidden;
    margin: 0 !important;
    color: #0f8a4b !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tyso-live-league-text p {
    overflow: hidden;
    margin: 3px 0 0 !important;
    color: #66746b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tyso-live-league-count {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 999px;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 12px;
    font-weight: 600;
}

.tyso-live-match-list {
    display: flex;
    flex-direction: column;
}

.tyso-live-match-row-link {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2ef;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.tyso-live-match-row-link:last-child {
    border-bottom: 0;
}

.tyso-live-match-row-link:hover {
    background: rgba(237, 247, 240, 0.36);
}

.tyso-live-match-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.tyso-live-row-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    border-right: 1px solid #edf2ef;
    color: #66746b;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.tyso-live-row-time span {
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.tyso-live-row-time strong {
    margin-top: 2px;
    color: #132018;
    font-size: 14px;
    font-weight: 600;
}

.tyso-live-row-team {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.tyso-live-row-team.is-home {
    justify-content: flex-end;
    text-align: right;
}

.tyso-live-row-team.is-away {
    justify-content: flex-start;
    text-align: left;
}

.tyso-live-row-team span {
    overflow: hidden;
    min-width: 0;
    color: #132018;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tyso-live-row-team img,
.tyso-live-row-team em {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    object-fit: contain;
}

.tyso-live-row-team em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf7f0;
    color: #0f8a4b;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
}

.tyso-live-row-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tyso-live-row-score b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff0e6;
    color: #c94d00;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.tyso-live-row-score small {
    margin-top: 5px;
    color: #ff7a1a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    animation: tyso-blink 1.2s infinite ease-in-out;
}

.tyso-live-row-venue {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    margin-top: 6px;
    padding-left: 96px;
    color: #8a9b90;
    font-size: 12px;
    font-weight: 600;
}

.tyso-live-row-venue span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tyso-live-empty-state {
    padding: 24px;
    border: 1px dashed #cfe0d4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.tyso-live-empty-state .tyso-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #0f8a4b;
    border-radius: 50%;
    color: #0f8a4b;
    font-size: 15px;
    font-weight: 600;
}

.tyso-live-empty-state .tyso-empty-title,
.tyso-live-empty-state .tyso-empty-desc {
    display: block;
}

.tyso-live-empty-state .tyso-empty-title {
    margin-top: 12px;
    color: #132018;
    font-size: 15px;
    font-weight: 600;
}

.tyso-live-empty-state .tyso-empty-desc {
    max-width: 560px;
    margin: 8px auto 0;
    color: #66746b;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tyso-live-page {
        width: min(100%, calc(100vw - 24px));
        margin: 24px auto;
    }

    .tyso-live-table-head,
    .tyso-live-match-row {
        grid-template-columns: 52px minmax(0, 1fr) 44px minmax(0, 1fr);
        gap: 4px;
    }

    .tyso-live-table-head {
        padding: 10px 8px;
        font-size: 9px;
    }

    .tyso-live-table-head span:nth-child(2) {
        padding-right: 16px;
    }

    .tyso-live-table-head span:nth-child(4) {
        padding-left: 16px;
    }

    .tyso-live-match-row-link {
        padding: 12px 8px;
    }

    .tyso-live-row-time {
        padding-right: 4px;
        font-size: 9px;
    }

    .tyso-live-row-time span {
        font-size: 8px;
    }

    .tyso-live-row-time strong {
        font-size: 10px;
    }

    .tyso-live-row-team {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center;
    }

    .tyso-live-row-team.is-home,
    .tyso-live-row-team.is-away {
        justify-content: center;
        text-align: center;
    }

    .tyso-live-row-team.is-home img,
    .tyso-live-row-team.is-home em {
        order: -1;
    }

    .tyso-live-row-team span {
        width: 100%;
        font-size: 10px;
    }

    .tyso-live-row-team img,
    .tyso-live-row-team em {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tyso-live-row-score b {
        min-width: 38px;
        padding: 5px 4px;
        border-radius: 6px;
        font-size: 10px;
    }

    .tyso-live-row-score small {
        font-size: 10px;
    }

    .tyso-live-row-venue {
        padding-left: 58px;
        font-size: 9px;
    }
}

/* Dynamic match detail route is outside Flatsome's constrained row wrapper. */
.tyso-dynamic-page-wrapper .tyso-match-detail-layout {
    width: min(1320px, calc(100vw - 32px)) !important;
    max-width: 1320px !important;
    margin: 32px auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 768px) {
    .tyso-dynamic-page-wrapper .tyso-match-detail-layout {
        width: min(100%, calc(100vw - 24px)) !important;
        margin-top: 24px !important;
    }
}

/* Match detail AI prediction tab */
.tyso-ai-empty {
    padding: 36px 0;
    text-align: center;
    color: #98a09b;
    font-size: 14px;
    font-weight: 600;
}
.tyso-ai-panel {
    display: grid;
    gap: 18px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}
.tyso-ai-box {
    border: 1px solid #edf2ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--tyso-shadow);
    padding: 16px;
}
.tyso-ai-box h3 {
    margin: 0 0 14px !important;
    border-bottom: 1px solid #edf2ef;
    padding-bottom: 10px;
    color: #132018 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.tyso-ai-box h3 span {
    color: #8a9b90;
    font-size: 12px;
    font-weight: 600;
}
.tyso-ai-winner {
    margin: 0 0 14px !important;
    color: #66746b;
    font-size: 13px;
    font-weight: 600;
}
.tyso-ai-winner strong {
    color: #d68b00;
    font-weight: 600;
}
.tyso-ai-probabilities {
    display: grid;
    gap: 10px;
}
.tyso-ai-prob-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px;
    color: #314239;
    font-size: 12px;
    font-weight: 600;
}
.tyso-ai-prob-row > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-ai-prob-row strong {
    color: #dfe8e2;
    font-size: 11px;
    font-weight: 600;
    text-align: right;
}
.tyso-ai-prob-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2ef;
}
.tyso-ai-prob-track span {
    display: block;
    height: 100%;
    border-radius: 999px;
}
.tyso-ai-prob-track .home {
    background: #5aa7ff;
}
.tyso-ai-prob-track .draw {
    background: #4b5563;
}
.tyso-ai-prob-track .away {
    background: #ef4444;
}
.tyso-ai-advice {
    margin-top: 14px;
    border-left: 4px solid #d89b12;
    border-radius: 0 10px 10px 0;
    background: #fff8ec;
    padding: 10px 12px;
}
.tyso-ai-advice p {
    margin: 0 !important;
    color: #5f4a1d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}
.tyso-ai-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.tyso-ai-form-grid > div {
    display: grid;
    gap: 8px;
}
.tyso-ai-form-grid strong {
    color: #132018;
    font-size: 13px;
    font-weight: 600;
}
.tyso-ai-form-grid small {
    color: #66746b;
    font-size: 11px;
    font-weight: 600;
}
.tyso-ai-form-dots {
    display: flex;
    gap: 4px;
}
.tyso-ai-form-dots span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}
.tyso-ai-form-dots .win {
    background: #10b981;
}
.tyso-ai-form-dots .draw {
    background: #9ca3af;
}
.tyso-ai-form-dots .lose {
    background: #ef4444;
}
.tyso-ai-muted {
    color: #98a09b;
    font-size: 12px;
    font-weight: 600;
}
.tyso-ai-comparison-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #66746b;
    font-size: 12px;
    font-weight: 600;
}
.tyso-ai-comparison {
    display: grid;
    gap: 10px;
}
.tyso-ai-compare-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}
.tyso-ai-compare-row > span {
    color: #66746b;
    font-size: 12px;
    font-weight: 600;
}
.tyso-ai-compare-bar {
    display: flex;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2ef;
}
.tyso-ai-compare-bar b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}
.tyso-ai-compare-bar .home {
    background: #5aa7ff;
}
.tyso-ai-compare-bar .away {
    background: #ef4444;
}
.tyso-ai-h2h-list {
    display: grid;
}
.tyso-ai-h2h-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid #edf2ef;
    padding: 8px 0;
}
.tyso-ai-h2h-row:last-child {
    border-bottom: 0;
}
.tyso-ai-h2h-row span {
    color: #66746b;
    font-size: 11px;
    font-weight: 600;
}
.tyso-ai-h2h-row strong {
    overflow: hidden;
    color: #314239;
    font-size: 12px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tyso-ai-h2h-row em {
    color: #d68b00;
    font-style: normal;
    font-weight: 600;
}
@media (max-width: 768px) {
    #prediction.tyso-tab-pane {
        margin: 0 -14px !important;
    }

    #prediction .tyso-ai-panel {
        max-width: none !important;
        margin: 0 !important;
        gap: 12px !important;
    }

    #prediction .tyso-ai-box {
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 14px 12px !important;
    }

    .tyso-ai-form-grid {
        grid-template-columns: 1fr;
    }
    .tyso-ai-prob-row {
        grid-template-columns: 86px minmax(0, 1fr) 40px;
    }
    .tyso-ai-compare-row {
        grid-template-columns: 68px minmax(0, 1fr);
    }
}

/* Compact match cards and rows */
.tyso-match-groups-wrapper {
    gap: 14px !important;
}
.tyso-match-groups-wrapper .tyso-league-group {
    margin-bottom: 14px !important;
}
.tyso-match-groups-wrapper .tyso-league-header {
    padding: 11px 14px !important;
}
.tyso-match-groups-wrapper .tyso-league-logo {
    width: 24px !important;
    height: 24px !important;
}
.tyso-match-groups-wrapper .tyso-league-name {
    font-size: 14px !important;
    line-height: 1.25 !important;
}
.tyso-match-groups-wrapper .tyso-league-subtitle {
    font-size: 11px !important;
    line-height: 1.25 !important;
}
.tyso-match-groups-wrapper .tyso-league-count {
    padding: 4px 10px !important;
    font-size: 11px !important;
}
.tyso-match-row-link,
.tyso-match-row-item,
.tyso-live-content-area .tyso-match-row-link {
    padding: 8px 12px !important;
}
.tyso-match-row {
    min-height: 46px !important;
    padding: 0 !important;
}
.tyso-row-time {
    padding-right: 8px !important;
}
.tyso-row-date {
    font-size: 10px !important;
    line-height: 1.15 !important;
}
.tyso-row-hour {
    font-size: 13px !important;
    line-height: 1.15 !important;
}
.tyso-row-team-home-cell,
.tyso-row-team-away-cell {
    gap: 8px !important;
}
.tyso-row-logo,
.tyso-row-team-home-cell img,
.tyso-row-team-away-cell img {
    width: 22px !important;
    height: 22px !important;
}
.tyso-row-team-name,
.tyso-row-team-home-cell span,
.tyso-row-team-away-cell span {
    font-size: 13px !important;
    line-height: 1.25 !important;
}
.tyso-row-score-badge,
.tyso-row-score > div {
    min-width: 52px !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
}
.tyso-live-mini,
.tyso-ft-mini,
.tyso-row-score .blinking-text {
    margin-top: 2px !important;
    font-size: 9px !important;
}
.tyso-schedule-table-head {
    margin-bottom: 12px !important;
    padding: 9px 14px !important;
}
.tyso-date-bar {
    margin-bottom: 16px !important;
}

@media (max-width: 768px) {
    .tyso-match-row-link,
    .tyso-match-row-item,
    .tyso-live-content-area .tyso-match-row-link {
        padding: 8px 10px !important;
    }
    .tyso-match-row {
        min-height: 58px !important;
    }
}

/* Row separators for fixture lists on home and schedule pages. */
.tyso-home-section .tyso-card-group .tyso-match-row-item:not(:last-child),
.tyso-match-groups-wrapper .tyso-league-group .tyso-match-row-link:not(:last-child),
.tyso-schedule-container .tyso-league-group .tyso-match-row-link:not(:last-child) {
    border-bottom: 1px solid #edf3f0 !important;
    box-shadow: none !important;
}

.tyso-home-section .tyso-card-group .tyso-match-row-item:last-child,
.tyso-match-groups-wrapper .tyso-league-group .tyso-match-row-link:last-child,
.tyso-schedule-container .tyso-league-group .tyso-match-row-link:last-child {
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Global typography tuning: keep the UI lighter and more compact. */
.tyso-three-column-layout,
.tyso-football-wrapper,
.tyso-middle-column,
.tyso-live-page,
.tyso-live-wrapper,
.tyso-schedule-container,
.tyso-predictions-container,
.tyso-league-page,
.tyso-match-detail-wrapper,
.tyso-standings-page,
.tyso-home-section {
    font-family: Inter, Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.tyso-three-column-layout *,
.tyso-football-wrapper *,
.tyso-middle-column *,
.tyso-live-page *,
.tyso-live-wrapper *,
.tyso-schedule-container *,
.tyso-predictions-container *,
.tyso-league-page *,
.tyso-match-detail-wrapper *,
.tyso-standings-page *,
.tyso-home-section * {
    letter-spacing: 0 !important;
}

.tyso-three-column-layout [style*="font-weight: 900"],
.tyso-football-wrapper [style*="font-weight: 900"],
.tyso-middle-column [style*="font-weight: 900"],
.tyso-live-page [style*="font-weight: 900"],
.tyso-schedule-container [style*="font-weight: 900"],
.tyso-match-detail-wrapper [style*="font-weight: 900"],
.tyso-home-section [style*="font-weight: 900"],
.tyso-three-column-layout [style*="font-weight:900"],
.tyso-football-wrapper [style*="font-weight:900"],
.tyso-middle-column [style*="font-weight:900"],
.tyso-live-page [style*="font-weight:900"],
.tyso-schedule-container [style*="font-weight:900"],
.tyso-match-detail-wrapper [style*="font-weight:900"],
.tyso-home-section [style*="font-weight:900"] {
    font-weight: 600 !important;
}

.tyso-three-column-layout [style*="font-weight: 700"],
.tyso-football-wrapper [style*="font-weight: 700"],
.tyso-middle-column [style*="font-weight: 700"],
.tyso-live-page [style*="font-weight: 700"],
.tyso-schedule-container [style*="font-weight: 700"],
.tyso-match-detail-wrapper [style*="font-weight: 700"],
.tyso-home-section [style*="font-weight: 700"],
.tyso-three-column-layout [style*="font-weight:700"],
.tyso-football-wrapper [style*="font-weight:700"],
.tyso-middle-column [style*="font-weight:700"],
.tyso-live-page [style*="font-weight:700"],
.tyso-schedule-container [style*="font-weight:700"],
.tyso-match-detail-wrapper [style*="font-weight:700"],
.tyso-home-section [style*="font-weight:700"] {
    font-weight: 500 !important;
}

.tyso-section-title,
.tyso-page-heading h1,
.tyso-predictions-heading h1,
.tyso-league-title,
.tyso-league-page-title,
.tyso-card-title,
.card-title,
.tyso-empty-title,
.tyso-standing-title,
.tyso-home-title,
.tyso-ai-pending-card h1,
.tyso-ai-pending-card h3 {
    font-weight: 600 !important;
}

.tyso-page-heading h1,
.tyso-predictions-heading h1 {
    font-size: 30px !important;
    line-height: 1.15 !important;
}

.tyso-section-title,
.tyso-league-title,
.tyso-league-page-title {
    font-size: 20px !important;
    line-height: 1.25 !important;
}

.tyso-card-title,
.card-title,
.tyso-empty-title,
.tyso-ai-pending-card h1,
.tyso-ai-pending-card h3 {
    font-size: 17px !important;
    line-height: 1.28 !important;
}

.tyso-league-menu a,
.tyso-sidebar a,
.tyso-tab-btn,
.tyso-date-label,
.tyso-date-day,
.tyso-row-team-name,
.tyso-standing-team-name,
.team-name,
.player-name,
.league-name,
.tyso-btn-ai-detail,
.section-view-all,
.tyso-league-count,
.tyso-row-score-badge,
.tyso-row-score > div,
.tyso-vs-badge {
    font-weight: 500 !important;
}

.tyso-row-hour,
.tyso-standing-points,
.col-pts,
.text-success,
.text-danger,
.text-warning,
.live-color {
    font-weight: 600 !important;
}

.hero-title {
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.16 !important;
}

.tyso-league-stats-grid strong,
.tyso-h2h-stat strong,
.tyso-hero-score,
.score-highlight {
    font-weight: 600 !important;
}

.tyso-league-stats-grid strong {
    font-size: 26px !important;
}

.tyso-hero-score {
    font-size: 32px !important;
}

.tyso-league-meta {
    font-weight: 500 !important;
}

/* Sidebar typography parity with the rest of the site. */
.font-semibold {
    font-weight: 500 !important;
}

.tyso-left-sidebar-goalvn,
.tyso-right-sidebar-goalvn,
.tyso-left-sidebar-goalvn *,
.tyso-right-sidebar-goalvn * {
    font-family: Inter, Roboto, Arial, sans-serif;
    letter-spacing: 0 !important;
}

.tyso-left-sidebar-goalvn,
.tyso-right-sidebar-goalvn {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.tyso-left-sidebar-goalvn .tyso-widget-header-green,
.tyso-right-sidebar-goalvn .tyso-widget-header-blue,
.tyso-right-sidebar-goalvn .tyso-widget-header-green,
.tyso-sidebar-widget > h3,
.live-matches-widget .live-header-left,
.tyso-sidebar-standings-head {
    font-size: 12px !important;
    font-weight: 600 !important;
}

.tyso-sidebar-menu-clean li a,
.tyso-sidebar-menu-clean .tyso-menu-text,
.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li a,
.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean .tyso-menu-text {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}

.tyso-sidebar-menu-clean li.active a,
.tyso-sidebar-menu-clean li.active .tyso-menu-text,
.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li.active a,
.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li.active .tyso-menu-text {
    font-weight: 500 !important;
}

.tyso-menu-badge,
.tyso-sidebar-rank-bullet,
.tyso-sidebar-standing-row .rank-badge,
.standings-tab-btn,
.tyso-right-sidebar-goalvn .standings-tab-btn,
.tyso-right-sidebar-goalvn .view-all-bxh-link {
    font-weight: 500 !important;
}

.tyso-sidebar-standing-row > span,
.tyso-sidebar-standing-row .team-name,
.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row > span,
.tyso-right-sidebar-goalvn .tyso-sidebar-standing-row .team-name,
.sidebar-team-row .team-name,
.tyso-sidebar-team-name,
.tyso-sidebar-player-name {
    font-weight: 400 !important;
}

.tyso-sidebar-standing-row .score-highlight,
.sidebar-team-row .team-score,
.tyso-sidebar-goals-badge {
    font-weight: 600 !important;
}

.tyso-left-sidebar-goalvn [style*="font-weight: 900"],
.tyso-left-sidebar-goalvn [style*="font-weight:900"],
.tyso-right-sidebar-goalvn [style*="font-weight: 900"],
.tyso-right-sidebar-goalvn [style*="font-weight:900"] {
    font-weight: 600 !important;
}

.tyso-left-sidebar-goalvn [style*="font-weight: 700"],
.tyso-left-sidebar-goalvn [style*="font-weight:700"],
.tyso-right-sidebar-goalvn [style*="font-weight: 700"],
.tyso-right-sidebar-goalvn [style*="font-weight:700"] {
    font-weight: 500 !important;
}

/* Final typography harmonization across all football UI surfaces. */
.tyso-three-column-layout .font-bold,
.tyso-three-column-layout .font-black,
.tyso-three-column-layout .font-semibold,
.tyso-football-wrapper .font-bold,
.tyso-football-wrapper .font-black,
.tyso-football-wrapper .font-semibold,
.tyso-middle-column .font-bold,
.tyso-middle-column .font-black,
.tyso-middle-column .font-semibold,
.tyso-live-page .font-bold,
.tyso-live-page .font-black,
.tyso-live-page .font-semibold {
    font-weight: 500 !important;
}

.tyso-three-column-layout strong,
.tyso-three-column-layout b,
.tyso-football-wrapper strong,
.tyso-football-wrapper b,
.tyso-middle-column strong,
.tyso-middle-column b,
.tyso-live-page strong,
.tyso-live-page b {
    font-weight: 500 !important;
}

.tyso-three-column-layout h1,
.tyso-three-column-layout h2,
.tyso-three-column-layout h3,
.tyso-football-wrapper h1,
.tyso-football-wrapper h2,
.tyso-football-wrapper h3,
.tyso-middle-column h1,
.tyso-middle-column h2,
.tyso-middle-column h3,
.tyso-live-page h1,
.tyso-live-page h2,
.tyso-live-page h3 {
    font-weight: 600 !important;
}

.tyso-standings-container,
.tyso-standings-container table,
.tyso-standings-container a,
.tyso-standings-container span,
.tyso-standings-container td,
.tyso-standings-container th,
.tyso-league-page,
.tyso-league-page a,
.tyso-league-page button,
.tyso-league-page span,
.tyso-league-page td,
.tyso-league-page th,
.tyso-left-sidebar-goalvn,
.tyso-left-sidebar-goalvn a,
.tyso-left-sidebar-goalvn span,
.tyso-right-sidebar-goalvn,
.tyso-right-sidebar-goalvn a,
.tyso-right-sidebar-goalvn span {
    font-weight: 400 !important;
}

.tyso-standings-league-pills a,
.tyso-league-switcher a,
.tyso-league-section-tabs button,
.standings-tab-btn,
.tyso-right-sidebar-goalvn .standings-tab-btn,
.tyso-detail-tabs .tyso-tab-btn,
.tyso-match-detail-wrapper .tyso-tab-btn {
    font-size: 12.5px !important;
    font-weight: 400 !important;
}

.tyso-standings-league-pills a.active,
.tyso-league-switcher a.active,
.tyso-league-section-tabs button.active,
.standings-tab-btn.active,
.tyso-right-sidebar-goalvn .standings-tab-btn.active,
.tyso-detail-tabs .tyso-tab-btn.active,
.tyso-match-detail-wrapper .tyso-tab-btn.active {
    font-weight: 500 !important;
}

.tyso-table-standings th,
.tyso-league-mini-table th,
.tyso-league-dark-table th,
.tyso-sidebar-standings-head,
.tyso-sidebar-table th,
.tyso-sidebar-table-goalvn th {
    font-size: 10.5px !important;
    font-weight: 500 !important;
}

.tyso-table-standings td,
.tyso-league-mini-table td,
.tyso-league-dark-table td,
.tyso-sidebar-standing-row,
.tyso-sidebar-standing-row > span,
.tyso-sidebar-table td,
.tyso-sidebar-table-goalvn td {
    font-size: 12.5px !important;
    font-weight: 400 !important;
}

.tyso-standing-team-name,
.tyso-table-standings .tyso-standing-team-name,
.tyso-table-standings .col-team,
.tyso-table-standings .col-played,
.tyso-table-standings .col-stat,
.tyso-table-standings .col-diff,
.tyso-league-mini-table td:nth-child(2),
.tyso-league-dark-table .player,
.team-cell-goalvn .team-name,
.tyso-sidebar-standing-row .team-name,
.tyso-sidebar-menu-clean .tyso-menu-text {
    font-weight: 400 !important;
}

.tyso-table-standings .col-pts,
.tyso-table-standings .points,
.tyso-league-mini-table .points,
.tyso-league-dark-table .value,
.tyso-sidebar-standing-row .score-highlight,
.tyso-rank-number,
.tyso-form-circle,
.tyso-menu-badge,
.tyso-league-count,
.tyso-sidebar-goals-badge {
    font-weight: 500 !important;
}

.tyso-standings-title,
.tyso-group-title,
.tyso-league-hero-main h1,
.tyso-league-card h3,
.tyso-league-tab-panel h3,
.tyso-widget-header-green,
.tyso-widget-header-blue,
.live-matches-widget .live-header-left {
    font-weight: 600 !important;
}

.tyso-left-sidebar-goalvn .tyso-widget-header-green,
.tyso-right-sidebar-goalvn .tyso-widget-header-blue,
.tyso-right-sidebar-goalvn .tyso-widget-header-green {
    font-weight: 500 !important;
}

.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li.active a,
.tyso-left-sidebar-goalvn .tyso-sidebar-menu-clean li.active .tyso-menu-text,
.tyso-sidebar-menu-clean li.active a,
.tyso-sidebar-menu-clean li.active .tyso-menu-text {
    font-weight: 500 !important;
}

.tyso-score-text,
.tyso-row-score-badge,
.tyso-row-score > div,
.tyso-row-hour,
.tyso-row-team-name,
.tyso-row-team-home-cell span,
.tyso-row-team-away-cell span,
.tyso-live-table-head,
.tyso-schedule-table-head {
    font-weight: 500 !important;
}

/* Standings league pills must stay light, including the active tab. */
.tyso-three-column-layout .tyso-standings-container .tyso-standings-league-pills a,
.tyso-three-column-layout .tyso-standings-container .tyso-standings-league-pills a.active,
.tyso-three-column-layout .tyso-standings-container .tyso-standings-league-pills a:hover,
.tyso-standings-container .tyso-standings-league-pills a,
.tyso-standings-container .tyso-standings-league-pills a.active,
.tyso-standings-container .tyso-standings-league-pills a:hover {
    font-family: Inter, Roboto, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.tyso-three-column-layout .tyso-standings-container .tyso-standings-pill-label,
.tyso-standings-container .tyso-standings-pill-label {
    display: inline-block;
    font-family: Inter, Roboto, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.tyso-three-column-layout .tyso-standings-container .tyso-standings-league-pills a.active .tyso-standings-pill-label,
.tyso-standings-container .tyso-standings-league-pills a.active .tyso-standings-pill-label {
    font-weight: 400 !important;
}

/* Compact right-sidebar standings tabs so more leagues fit without clipping. */
.tyso-right-sidebar-goalvn .standings-tabs-bar {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 2px !important;
    padding: 8px 7px !important;
    overflow: hidden !important;
}

.tyso-right-sidebar-goalvn .standings-tab-btn {
    min-width: 0 !important;
    width: 100% !important;
    padding: 5px 0 !important;
    border-width: 0 !important;
    font-size: 9.5px !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    text-align: center !important;
}

.tyso-right-sidebar-goalvn .standings-tab-btn.active {
    font-weight: 500 !important;
}

/* Flatsome theme main menu polish. */
body .header-bottom {
    border-top: 1px solid #edf2ef !important;
    border-bottom: 1px solid #dfe9e4 !important;
    background: #ffffff !important;
    box-shadow: 0 8px 18px rgba(20, 54, 40, 0.04) !important;
}

body .header-bottom .flex-row {
    min-height: 42px !important;
}

body .header-bottom .header-nav {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

body .header-bottom .nav > li {
    margin: 0 !important;
}

body .header-bottom .nav > li > a.nav-top-link {
    position: relative !important;
    min-height: 34px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    color: #64706b !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    transition: color .18s ease, background-color .18s ease, box-shadow .18s ease !important;
}

body .header-bottom .nav > li > a.nav-top-link::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 3px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #087c49 !important;
    opacity: 0 !important;
    transform: scaleX(.45) !important;
    transition: opacity .18s ease, transform .18s ease !important;
}

body .header-bottom .nav > li:hover > a.nav-top-link,
body .header-bottom .nav > li > a.nav-top-link:hover {
    background: #f3fbf7 !important;
    color: #087c49 !important;
}

body .header-bottom .nav > li.active > a.nav-top-link,
body .header-bottom .nav > li.current-menu-item > a.nav-top-link,
body .header-bottom .nav > li.current_page_item > a.nav-top-link,
body .header-bottom .nav > li.current-menu-ancestor > a.nav-top-link {
    background: #eef9f3 !important;
    color: #075f3a !important;
    font-weight: 600 !important;
}

body .header-bottom .nav > li.active > a.nav-top-link::after,
body .header-bottom .nav > li.current-menu-item > a.nav-top-link::after,
body .header-bottom .nav > li.current_page_item > a.nav-top-link::after,
body .header-bottom .nav > li.current-menu-ancestor > a.nav-top-link::after,
body .header-bottom .nav > li > a.nav-top-link:hover::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

@media (max-width: 849px) {
    body .header-bottom {
        overflow: hidden !important;
    }

    body .header-bottom .header-nav {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body .header-bottom .header-nav::-webkit-scrollbar {
        display: none;
    }

    body .header-bottom .nav > li {
        flex: 0 0 auto !important;
    }

    body .header-bottom .nav > li > a.nav-top-link {
        min-height: 32px !important;
        padding: 8px 10px !important;
        font-size: 11.5px !important;
        border-radius: 999px !important;
    }

    body .off-canvas .nav-sidebar.nav-vertical > li > a,
    body .mobile-sidebar .nav-sidebar.nav-vertical > li > a {
        min-height: 42px !important;
        padding: 10px 14px !important;
        border-radius: 9px !important;
        color: #3f4f48 !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        letter-spacing: 0 !important;
    }

    body .off-canvas .nav-sidebar.nav-vertical > li.active > a,
    body .off-canvas .nav-sidebar.nav-vertical > li.current-menu-item > a,
    body .mobile-sidebar .nav-sidebar.nav-vertical > li.active > a,
    body .mobile-sidebar .nav-sidebar.nav-vertical > li.current-menu-item > a {
        background: #eef9f3 !important;
        color: #075f3a !important;
    }
}

/* Match detail events: keep timeline readable on mobile. */
.tyso-events-list {
    width: 100%;
}

.tyso-event-row,
.tyso-event-side,
.tyso-event-content {
    min-width: 0;
}

.tyso-event-player {
    min-width: 0;
}

/* Match detail lineups/H2H tab should use the full tab width. */
.tyso-match-detail-wrapper #lineups.tyso-tab-pane {
    width: calc(100% + 8px) !important;
    max-width: none !important;
    margin-left: -4px !important;
    margin-right: -4px !important;
    padding: 0 !important;
}

.tyso-match-detail-wrapper #lineups.tyso-tab-pane > div {
    max-width: none !important;
}

.tyso-match-detail-wrapper #lineups .tyso-match-grid.compact {
    width: 100% !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
    gap: 12px !important;
}

.tyso-match-detail-wrapper #lineups .tyso-match-card-link {
    width: 100% !important;
}

@media (max-width: 768px) {
    .tyso-match-detail-wrapper .tyso-detail-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        overflow-x: hidden !important;
        padding: 0 8px !important;
    }

    .tyso-match-detail-wrapper .tyso-detail-tabs .tyso-tab-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-height: 38px !important;
        padding: 9px 2px 8px !important;
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-top: 0 !important;
        border-bottom-width: 2px !important;
        font-size: 8.6px !important;
        font-weight: 500 !important;
        line-height: 1.05 !important;
        gap: 1px !important;
        white-space: nowrap !important;
        box-shadow: none !important;
        letter-spacing: 0 !important;
        background: transparent !important;
    }

    .tyso-match-detail-wrapper .tyso-detail-tabs .tyso-tab-btn[data-tab="lineups"] {
        font-size: 7.8px !important;
    }

    .tyso-match-detail-wrapper .tyso-detail-tabs .tyso-tab-btn.active {
        background: transparent !important;
        color: #07965a !important;
        border-bottom-color: #07965a !important;
    }

    .tyso-match-detail-wrapper .tyso-detail-tabs .tyso-tab-btn:not(.active) {
        background: transparent !important;
        color: #7d8883 !important;
        border-bottom-color: transparent !important;
    }

    #prediction.tyso-tab-pane {
        width: calc(100% + 32px) !important;
        max-width: none !important;
        margin: 0 -16px !important;
        padding: 0 !important;
    }

    #prediction .tyso-ai-panel {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        gap: 12px !important;
    }

    #prediction .tyso-ai-box {
        margin: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 14px 12px !important;
    }

    #events.tyso-tab-pane {
        overflow: visible !important;
    }

    .tyso-events-list {
        gap: 8px !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .tyso-event-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) !important;
        gap: 8px !important;
        min-height: 32px !important;
        align-items: center !important;
        padding: 3px 2px !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .tyso-event-row.is-home,
    .tyso-event-row.is-away {
        direction: ltr !important;
    }

    .tyso-event-row .tyso-event-home,
    .tyso-event-row .tyso-event-away {
        display: block !important;
        min-width: 0 !important;
    }

    .tyso-event-row .tyso-event-home {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .tyso-event-row .tyso-event-away {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }

    .tyso-event-row .tyso-event-content {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        min-width: 0 !important;
    }

    .tyso-event-row.is-home .tyso-event-content {
        justify-content: flex-end !important;
        text-align: right !important;
    }

    .tyso-event-row.is-away .tyso-event-content {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .tyso-event-row .tyso-event-minute {
        width: auto !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
        color: #7b8781 !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        text-align: right !important;
    }

    .tyso-event-row .tyso-event-icon {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    .tyso-event-row .tyso-event-initial {
        display: none !important;
    }

    .tyso-event-row .tyso-event-player {
        display: block !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
        color: #132018 !important;
        font-size: 12.5px !important;
        font-weight: 400 !important;
        line-height: 1.25 !important;
        text-align: left !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
}

/* Unified fixture list used by homepage, schedule and results pages. */
.tyso-home-section .tyso-unified-match-list,
.tyso-schedule-container .tyso-unified-match-list {
    display: grid !important;
    gap: 14px !important;
}

.tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head,
.tyso-schedule-container > .tyso-schedule-table-head {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) 76px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 12px !important;
    padding: 9px 14px !important;
    border: 1px solid #dbe8df !important;
    border-radius: 14px !important;
    background: #edf7f0 !important;
    color: #087c49 !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
}

.tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:first-child,
.tyso-schedule-container > .tyso-schedule-table-head > *:first-child,
.tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:nth-child(3),
.tyso-schedule-container > .tyso-schedule-table-head > *:nth-child(3) {
    text-align: center !important;
}

.tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:nth-child(2),
.tyso-schedule-container > .tyso-schedule-table-head > *:nth-child(2) {
    padding-right: 34px !important;
    text-align: right !important;
}

.tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:nth-child(4),
.tyso-schedule-container > .tyso-schedule-table-head > *:nth-child(4) {
    padding-left: 34px !important;
    text-align: left !important;
}

.tyso-unified-match-list .tyso-league-group {
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 1px solid #e1ece7 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 22px rgba(18, 64, 43, .05) !important;
}

.tyso-unified-match-list .tyso-league-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 13px 15px !important;
    border-bottom: 1px solid #edf2ef !important;
    background: #f7fbf8 !important;
}

.tyso-unified-match-list .tyso-league-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
}

.tyso-unified-match-list .tyso-league-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
}

.tyso-unified-match-list .tyso-league-text,
.tyso-unified-match-list .tyso-league-info > div {
    display: flex !important;
    min-width: 0 !important;
    flex-direction: column !important;
}

.tyso-unified-match-list .tyso-league-name {
    margin: 0 !important;
    overflow: hidden !important;
    color: #087c49 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-unified-match-list .tyso-league-subtitle {
    margin: 2px 0 0 !important;
    overflow: hidden !important;
    color: #66746b !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-unified-match-list .tyso-league-count {
    flex: 0 0 auto !important;
    padding: 4px 11px !important;
    border-radius: 999px !important;
    background: #edf7f0 !important;
    color: #087c49 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.tyso-unified-match-list .tyso-match-rows-list {
    display: flex !important;
    flex-direction: column !important;
}

.tyso-unified-match-list .tyso-match-row-link {
    display: block !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid #edf3f0 !important;
    color: inherit !important;
    text-decoration: none !important;
    transition: background-color .16s ease !important;
    box-shadow: none !important;
}

.tyso-unified-match-list .tyso-match-row-link:last-child {
    border-bottom: 0 !important;
}

.tyso-unified-match-list .tyso-match-row-link:hover {
    background: #fbfdfc !important;
}

.tyso-unified-match-list .tyso-match-row {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) 76px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 48px !important;
}

.tyso-unified-match-list .tyso-row-time {
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    padding-right: 10px !important;
    border-right: 1px solid #edf2ef !important;
    color: #66746b !important;
    text-align: center !important;
}

.tyso-unified-match-list .tyso-row-date {
    color: #66746b !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
}

.tyso-unified-match-list .tyso-row-hour {
    margin-top: 2px !important;
    color: #132018 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
}

.tyso-unified-match-list .tyso-row-team-home-cell,
.tyso-unified-match-list .tyso-row-team-away-cell {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    min-width: 0 !important;
}

.tyso-unified-match-list .tyso-row-team-home-cell {
    justify-content: flex-end !important;
    text-align: right !important;
}

.tyso-unified-match-list .tyso-row-team-away-cell {
    justify-content: flex-start !important;
    text-align: left !important;
}

.tyso-unified-match-list .tyso-row-team-name {
    min-width: 0 !important;
    overflow: hidden !important;
    color: #132018 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.tyso-unified-match-list .tyso-row-logo,
.tyso-unified-match-list .tyso-row-team-home-cell img,
.tyso-unified-match-list .tyso-row-team-away-cell img {
    width: 23px !important;
    height: 23px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
}

.tyso-unified-match-list .tyso-row-score {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.tyso-unified-match-list .tyso-row-score-badge,
.tyso-unified-match-list .tyso-row-score > div:first-child {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 52px !important;
    padding: 5px 8px !important;
    border-radius: 8px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
}

.tyso-unified-match-list .tyso-ft-mini,
.tyso-unified-match-list .tyso-live-mini,
.tyso-unified-match-list .tyso-row-score .blinking-text {
    margin-top: 3px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: .03em !important;
}

@media (max-width: 768px) {
    .tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head,
    .tyso-schedule-container > .tyso-schedule-table-head {
        grid-template-columns: 58px minmax(0, 1fr) 54px minmax(0, 1fr) !important;
        gap: 7px !important;
        padding: 8px 10px !important;
        font-size: 9px !important;
    }

    .tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:nth-child(2),
    .tyso-schedule-container > .tyso-schedule-table-head > *:nth-child(2) {
        padding-right: 18px !important;
    }

    .tyso-home-section .tyso-unified-match-list .tyso-schedule-table-head > *:nth-child(4),
    .tyso-schedule-container > .tyso-schedule-table-head > *:nth-child(4) {
        padding-left: 18px !important;
    }

    .tyso-unified-match-list .tyso-league-header {
        padding: 11px 12px !important;
    }

    .tyso-unified-match-list .tyso-league-logo {
        width: 24px !important;
        height: 24px !important;
    }

    .tyso-unified-match-list .tyso-match-row-link {
        padding: 9px 10px !important;
    }

    .tyso-unified-match-list .tyso-match-row {
        grid-template-columns: 58px minmax(0, 1fr) 54px minmax(0, 1fr) !important;
        gap: 7px !important;
        min-height: 58px !important;
    }

    .tyso-unified-match-list .tyso-row-time {
        padding-right: 7px !important;
    }

    .tyso-unified-match-list .tyso-row-logo,
    .tyso-unified-match-list .tyso-row-team-home-cell img,
    .tyso-unified-match-list .tyso-row-team-away-cell img {
        width: 20px !important;
        height: 20px !important;
    }

    .tyso-unified-match-list .tyso-row-team-home-cell,
    .tyso-unified-match-list .tyso-row-team-away-cell {
        gap: 6px !important;
    }

    .tyso-unified-match-list .tyso-row-team-name {
        font-size: 12px !important;
    }

    .tyso-unified-match-list .tyso-row-score-badge,
    .tyso-unified-match-list .tyso-row-score > div:first-child {
        min-width: 46px !important;
        padding: 5px 6px !important;
        font-size: 11.5px !important;
    }
}


