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

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

.cricket-module {
    padding: 18px;
    margin: 0 0 28px;
}

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

.cricket-module__head span,
.cricket-page__head span {
    color: #00897b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

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

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

.cricket-mini-card {
    border: 1px solid #e9eef4;
    border-radius: 8px;
    background: #fbfcfe;
    overflow: hidden;
}

.cricket-mini-card a {
    display: grid;
    gap: 8px;
    padding: 13px;
    color: #102033;
    text-decoration: none;
}

.cricket-mini-card span,
.cricket-mini-card em {
    color: #687586;
    font-size: 12px;
    font-style: normal;
}

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

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

.cricket-score-tile strong {
    color: #102033;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.cricket-score-tile__score {
    border-radius: 6px;
    padding: 8px 10px;
    background: #102033;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.cricket-score-tile small {
    color: #687586;
    font-size: 12px;
    line-height: 1.35;
}

.cricket-mini-card.is-live strong,
.cricket-live-pill {
    color: #d92323;
}

.cricket-mini-card.is-live .cricket-score-tile__score {
    background: #d92323;
}

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

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

.cricket-tabs,
.cricket-detail-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.cricket-score-list,
.cricket-series-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.cricket-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;
}

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

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

.cricket-card__meta,
.cricket-card__status {
    color: #687586;
    font-size: 12px;
}

.cricket-card__title {
    display: block;
    color: #102033;
    font-size: 19px;
    font-weight: 800;
    margin: 8px 0;
    text-decoration: none;
}

.cricket-card__score {
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 10px 12px;
    background: #102033;
    color: #ffffff;
    margin: 12px 0;
}

.cricket-card__score strong {
    color: #ffffff;
}

.cricket-card__score span {
    border-radius: 999px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
}

.cricket-card.is-live .cricket-card__score {
    background: #d92323;
}

.cricket-card__status {
    justify-content: flex-start;
    flex-wrap: wrap;
}

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

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

.cricket-empty,
.cricket-public-note {
    padding: 18px;
}

.cricket-public-note {
    border-color: #ffe0a3;
    background: #fff8e7;
    margin-bottom: 18px;
}

.cricket-table-wrap,
.cricket-detail-card {
    padding: 18px;
    margin-bottom: 22px;
    overflow-x: auto;
}

.cricket-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

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

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

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

.cricket-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;
}

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

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

.cricket-detail-score strong {
    border-radius: 10px;
    padding: 14px 18px;
    background: #102033;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    text-align: center;
}

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

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

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

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

.cricket-detail-result {
    border-radius: 8px;
    padding: 12px;
    margin: 14px 0 0;
    background: #eef7f5;
    color: #102033;
    font-weight: 800;
}

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

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

.cricket-detail-tabs {
    margin-bottom: 18px;
}

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

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

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