.match-panel-wrap {
    padding: 0 0 24px;
}

.match-panel-header {
    margin-bottom: 20px;
}

.match-panel-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 800;
    color: #181c32;
}

.match-panel-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
}

.panel-time {
    color: #7e8299;
    font-size: 13px;
    font-weight: 600;
}

.panel-chart-box,
.panel-data-card,
.summary-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.panel-chart-box {
    padding: 16px;
    height: 100%;
}

.panel-chart-head {
    font-size: 14px;
    font-weight: 700;
    color: #181c32;
    margin-bottom: 10px;
}

.panel-chart {
    width: 100%;
    height: 250px;
}

.panel-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.summary-item {
    padding: 18px;
}

.summary-label {
    font-size: 13px;
    color: #7e8299;
    font-weight: 600;
    margin-bottom: 8px;
}

.summary-value {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 6px;
}

.summary-desc {
    font-size: 13px;
    color: #3f4254;
    line-height: 1.7;
    font-weight: 500;
}

.panel-data-card {
    padding: 22px;
}

.panel-data-title {
    font-size: 16px;
    font-weight: 800;
    color: #181c32;
    margin-bottom: 16px;
}

.team-data-box,
.league-data-row {
    padding: 16px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.team-data-box:last-child,
.league-data-row:last-child {
    border-bottom: none;
}

.team-name,
.league-team {
    font-size: 14px;
    font-weight: 800;
    color: #181c32;
    margin-bottom: 8px;
}

.team-data-text,
.league-data-text {
    font-size: 14px;
    line-height: 1.9;
    color: #3f4254;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .match-panel-title {
        font-size: 24px;
    }

    .panel-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .match-panel-title {
        font-size: 20px;
    }

    .panel-data-card,
    .summary-item,
    .panel-chart-box {
        padding: 16px;
    }

    .team-data-text,
    .league-data-text,
    .summary-desc {
        font-size: 13px;
        line-height: 1.85;
    }
}


.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-image: url('./assets/img/qy/1.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 20%,
        rgba(255,255,255,0.75) 45%,
        rgba(255,255,255,0.2) 70%,
        transparent 100%
    );
}