.football-module,
.football-page {
    color: #1d2733;
}

.football-module {
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    padding: 18px;
    margin: 0 0 28px;
    background: #ffffff;
}

.sports-score-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 0 30px;
}

.sports-score-board > .football-module,
.sports-score-board > .cricket-module {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    min-width: 0;
}

.sports-score-board .football-module__body,
.sports-score-board .cricket-module__body {
    flex: 1 1 auto;
    align-content: start;
}

@media (min-width: 768px) {
    .sports-score-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}

.football-module__head,
.football-page__head,
.football-card__meta,
.football-card__teams,
.football-card__status,
.football-detail-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.football-module__kicker,
.football-page__head span {
    display: block;
    color: #00897b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.football-module h3,
.football-page h1,
.football-table-wrap h2 {
    margin: 0;
    color: #102033;
}

.football-module__head a,
.football-tabs a {
    color: #00897b;
    font-weight: 700;
}

.football-match-row {
    border: 1px solid #e9eef4;
    border-radius: 8px;
    background: #fbfcfe;
    overflow: hidden;
}

.football-match-row a {
    display: block;
    padding: 13px;
    color: #102033;
    text-decoration: none;
}

.football-module__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.football-score-tile__meta,
.football-score-tile__teams,
.football-score-tile__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.football-score-tile__meta {
    color: #687586;
    font-size: 12px;
    margin-bottom: 10px;
}

.football-score-tile__meta em {
    font-style: normal;
}

.football-score-tile__teams {
    color: #102033;
}

.football-score-tile__teams span {
    flex: 1 1 0;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.football-score-tile__teams span:last-child {
    text-align: right;
}

.football-score-tile__teams strong {
    flex: 0 0 auto;
    border-radius: 6px;
    padding: 5px 9px;
    background: #102033;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
}

.football-score-tile__foot {
    justify-content: flex-start;
    margin-top: 10px;
    color: #687586;
    font-size: 12px;
}

.football-match-row.is-live .football-score-tile__teams strong,
.football-live-pill {
    background: #d92323;
    color: #ffffff;
}

.football-page {
    padding: 48px 0;
    background: #f8fafc;
}

.football-page__head {
    align-items: flex-end;
    margin-bottom: 24px;
}

.football-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.football-tabs a {
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    padding: 8px 12px;
    background: #ffffff;
    text-decoration: none;
}

.football-tabs--compact {
    margin-bottom: 18px;
}

.football-score-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .football-score-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.football-card,
.football-detail-card,
.football-table-wrap,
.football-empty,
.football-public-note {
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    background: #ffffff;
}

.football-card {
    padding: 16px;
    box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.football-card:hover {
    border-color: #bfd7d2;
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.1);
    transform: translateY(-2px);
}

.football-card.is-live {
    border-color: #ffd0d0;
    background: linear-gradient(180deg, #fffafa 0%, #ffffff 44%);
}

.football-card__meta {
    color: #687586;
    font-size: 12px;
    margin-bottom: 12px;
}

.football-card__teams {
    color: #102033;
    font-size: 18px;
    text-decoration: none;
    align-items: stretch;
    min-height: 58px;
}

.football-card__teams strong,
.football-detail-score strong {
    min-width: 84px;
    text-align: center;
    color: #102033;
}

.football-card__teams span {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    min-width: 0;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.football-card__teams span:last-child {
    justify-content: flex-end;
    text-align: right;
}

.football-card__teams strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 12px;
    background: #102033;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

.football-card__status {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 12px;
    color: #687586;
    font-size: 13px;
}

.football-card__status span {
    border-radius: 999px;
    padding: 4px 8px;
    background: #f3f6f8;
}

.football-card .football-live-pill {
    background: #d92323;
    color: #ffffff;
    font-weight: 800;
}

.football-empty,
.football-public-note {
    padding: 18px;
    margin-bottom: 18px;
}

.football-public-note {
    border-color: #ffe0a3;
    background: #fff8e7;
}

.football-table-wrap {
    padding: 18px;
    margin-bottom: 22px;
    overflow-x: auto;
}

.football-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.football-table th,
.football-table td {
    border-bottom: 1px solid #eef1f4;
    padding: 10px 8px;
    text-align: left;
}

.football-detail-card {
    padding: 22px;
    margin-bottom: 24px;
}

.football-detail-hero {
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(16, 32, 51, 0.08);
}

.football-detail-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #687586;
    font-size: 13px;
    font-weight: 700;
}

.football-detail-score {
    font-size: 20px;
    margin-bottom: 20px;
}

.football-detail-score span {
    flex: 1 1 0;
    min-width: 0;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.football-detail-score span:last-child {
    text-align: right;
}

.football-detail-score strong {
    border-radius: 10px;
    padding: 14px 18px;
    background: #102033;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.football-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.football-detail-facts div {
    border-radius: 8px;
    padding: 12px;
    background: #f7f9fb;
}

.football-detail-facts span {
    display: block;
    color: #687586;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.football-detail-facts strong {
    display: block;
    color: #102033;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.football-detail-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px 18px;
}

.football-detail-grid dt {
    color: #687586;
    font-weight: 700;
}

@media (max-width: 767px) {
    .football-page__head,
    .football-card__teams,
    .football-detail-score,
    .football-detail-hero__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .football-card__teams strong,
    .football-detail-score strong {
        min-width: 0;
        text-align: left;
    }

    .football-detail-score span:last-child {
        text-align: left;
    }

    .football-detail-facts {
        grid-template-columns: 1fr;
    }
}
