/* postmatch.css - 赛后亮点弹窗 */

.postmatch-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.78);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: pm-fadein 0.3s ease;
}
@keyframes pm-fadein { from { opacity: 0; } to { opacity: 1; } }

.postmatch {
    width: min(560px, 100%);
    background: linear-gradient(160deg, #182337, #0a1024);
    border: 1px solid rgba(240, 192, 64, 0.35);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    overflow: hidden;
}

.postmatch__header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.postmatch__title {
    margin: 0 0 6px 0;
    font-size: 26px; letter-spacing: 4px; font-weight: 900;
}
.postmatch__title--win { color: #f0c040; }
.postmatch__title--lose { color: #8892a4; }
.postmatch__score { font-size: 18px; color: #d6dae3; }

.postmatch__section { padding: 16px 20px; }
.postmatch__section h3 {
    margin: 0 0 10px 0;
    font-size: 14px; color: #f0c040; letter-spacing: 2px;
}

.postmatch__tags {
    display: flex; flex-direction: column; gap: 8px;
}
.pm-tag {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(240, 192, 64, 0.08);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 8px;
}
.pm-tag__icon { font-size: 20px; flex-shrink: 0; }
.pm-tag__text { flex: 1; font-size: 13px; color: #e8eaf0; font-weight: 600; }
.pm-tag__rw { font-size: 12px; color: #f0c040; }

.postmatch__milestones { background: rgba(78, 168, 222, 0.08); }
.postmatch__milestone-list { display: flex; flex-direction: column; gap: 6px; }
.pm-ms {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #e8eaf0;
    padding: 8px 12px;
    background: rgba(0,0,0,0.25);
    border-radius: 6px;
}
.pm-ms strong { color: #4ea8de; }
.pm-ms small { color: #8892a4; font-size: 11px; margin-left: auto; }

.postmatch__coach-report {
    background: rgba(78,168,222,0.06);
    border-top: 1px solid rgba(78,168,222,0.14);
}
.postmatch__coach-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.postmatch__coach-item {
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.22);
    color: #d6dae3;
    font-size: 12px;
    line-height: 1.55;
}

.postmatch__footer {
    padding: 14px 20px;
    display: flex; justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}
