/* === 战斗报告 HTML 版 === */

#battle-result {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 20;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    color: #f4d98c;
}
#battle-result.active { display: flex; }

.br-panel {
    background: linear-gradient(180deg, #2a1a0e, #1a0f05);
    border: 2px solid #6a5a24;
    border-radius: 10px;
    padding: 24px 28px;
    max-width: 520px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* 自定义滚动条 */
.br-panel::-webkit-scrollbar { width: 6px; }
.br-panel::-webkit-scrollbar-track { background: transparent; }
.br-panel::-webkit-scrollbar-thumb { background: rgba(139,105,20,0.3); border-radius: 3px; }

.br-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #f4d98c;
    margin-bottom: 6px;
}
.br-winner {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 14px;
}
.br-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #6a5a24, transparent);
    margin: 12px 0;
}

/* 双方对比 */
.br-columns {
    display: flex;
    gap: 0;
}
.br-col {
    flex: 1;
    min-width: 0;
}
.br-col-divider {
    width: 1px;
    background: rgba(139,105,20,0.3);
    margin: 0 12px;
}
.br-col-name {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* 信息项 */
.br-label {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.br-units {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 2px 0;
}
.br-unit-tag {
    font-size: 13px;
    color: #ddd;
    background: rgba(255,255,255,0.06);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.br-base-info {
    text-align: center;
    font-size: 13px;
    color: #bbb;
    margin-top: 6px;
}
.br-base-info .destroyed {
    color: #e74c3c;
}

/* 奖励 */
.br-reward {
    text-align: center;
    background: rgba(139,105,20,0.2);
    border-radius: 6px;
    padding: 10px;
    margin-top: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #ffd700;
}

/* 按钮 */
.br-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    font-size: 17px;
    font-weight: bold;
    font-family: inherit;
    background: linear-gradient(180deg, #7a6a1a, #5a4a14);
    color: #f4d98c;
    border: 2px solid #8b6914;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.br-btn:hover {
    background: linear-gradient(180deg, #9a8a2a, #7a6a1a);
}
.br-btn:active {
    transform: scale(0.97);
}
