/* ====================================
   1. 基础变量 (Root Variables)
   ==================================== */
:root {
    /* 品牌基础色 */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    
    /* 语义化颜色变量 (默认浅色模式) */
    --bg-page: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); /* 页面背景 */
    --bg-color: #ffffff;      /* 卡片/模态框背景 */
    --text-color: var(--dark);
    --text-muted: var(--gray);
    --border-color: #e2e8f0;  /* 通用边框颜色 */
    --highlight-bg: #f8fafc;  /* 浅色高亮背景 (如 stats-box, image-item) */
    
    /* 结构和效果变量 */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

/* ====================================
   2. 通用重置和基础样式
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, "Microsoft YaHei", sans-serif;
    background: var(--bg-page);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 2rem;
}

/* ====================================
   3. 导航栏 (Header)
   ==================================== */
/* 注意: 原始代码使用了 .hd, 您的 HTML 使用了 .navbar。这里沿用原始 CSS 的 .hd */
.hd {
    width: 100%;
    height: 50px;
    background-color: var(--primary); /* 使用 Primary 色作为导航背景 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hd .link-list {
    padding: 0 16px;
    height: 50px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hd .link-list a {
    font-size: 16px;
    color: var(--light, #fff); /* 确保链接在高亮背景下可见 */
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.hd .link-list a:hover {
    font-weight: bold;
    opacity: 0.9;
}

/* ====================================
   4. 主体内容结构 (Container & Card)
   ==================================== */
.container {
    width: 100%;
    max-width: 1200px; /* 设定最大宽度 */
    margin: 5rem auto; /* 自动居中 */
    padding: 0 2rem; /* 默认内边距 */
}

.card {
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-body {
    padding: 1.5rem;
}

/* ====================================
   5. 上传区 (Upload Area)
   ==================================== */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary);
    background-color: var(--highlight-bg); /* 使用高亮背景变量 */
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.upload-text {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* ====================================
   6. 按钮 (Buttons)
   ==================================== */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
    text-align: center;
    text-decoration: none; /* 确保作为 <a> 时也有按钮效果 */
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #0da271; /* 使用略深于 secondary 的硬编码值，或者定义 --secondary-dark */
}

.btn:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
}

/* ====================================
   7. 控制台 (Controls, Sliders, Actions)
   ==================================== */
.control-group {
    margin-bottom: 1.5rem;
}

.control-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem; /* 微调间距 */
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.slider-value {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    color: var(--primary); /* 让数值更突出 */
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* ====================================
   8. 统计盒子 (Stats Boxes)
   ==================================== */
.stats-box {
    background-color: var(--highlight-bg); /* 使用高亮背景变量 */
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 0 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.positive {
    color: var(--secondary);
}

/* ====================================
   9. 图片列表 (Image List)
   ==================================== */
.file-info {
    background-color: var(--highlight-bg); /* 使用高亮背景变量 */
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    /* 保持 display: none; 直到 JS 触发 */
}

.image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-color); /* 确保列表背景与卡片背景一致 */
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--highlight-bg);
    transition: transform 0.2s;
    position: relative; /* 用于徽章定位 */
}

.image-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-comparison {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.image-preview {
    flex: 1;
    text-align: center;
}

.preview-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.image-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 4px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-info {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.image-name {
    font-size: 0.75rem;
    text-align: center;
    word-break: break-all;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* 状态和进度 */
.image-status {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.status-pending {
    color: var(--gray);
    background-color: #f1f5f9; /* 保持浅灰 */
}

.status-processing {
    color: var(--primary);
    background-color: #dbeafe; /* 保持浅蓝 */
}

.status-completed {
    color: #059669; /* 保持深绿 */
    background-color: #d1fae5; /* 保持浅绿 */
}

.status-error {
    color: #dc2626; /* 保持深红 */
    background-color: #fee2e2; /* 保持浅红 */
}

.batch-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f1f5f9; /* 保持浅灰 */
    border-radius: var(--radius);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary);
    width: 0%;
    transition: width 0.3s;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.size-comparison {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.5rem;
}

.size-item {
    text-align: center;
    flex: 1;
}

.size-value {
    font-size: 0.8rem;
    font-weight: 600;
}

.size-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.reduction-badge {
    background-color: var(--secondary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 0.25rem;
    /* 位置调整 */
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ====================================
   10. 底部信息区 (Info Box)
   ==================================== */
.info-box {
    /* 宽度保持与 .container 一致 */
    max-width: 1200px; 
    margin: 2rem auto; 
    padding: 25px 2rem;
    
    background-color: var(--highlight-bg); 
    border-radius: var(--radius);
    border-left: 4px solid var(--primary); 
    box-shadow: var(--shadow);
}

.info-box h2 {
    position: relative;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25rem; /* 增大标题 */
    font-weight: 700;
    display: flex;
    align-items: center;
}

/* 标题下划线 */
.info-box h2::after {
    content: '';
    position: absolute;
    bottom: -4px; 
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.info-box p {
    color: var(--text-muted);
    margin: 10px 0;
    line-height: 1.6;
}

/* ====================================
   11. 模态框 (Modal) - 统一变量命名
   ==================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-color); /* 统一 */
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--text-color); /* 统一 */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    background: var(--highlight-bg); /* 统一 */
}

.modal-info {
    padding: 15px;
    background: var(--highlight-bg); /* 统一 */
    border-radius: 8px;
    border: 1px solid var(--border-color); /* 统一 */
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color); /* 统一 */
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.modal-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-color); /* 统一 */
    border-radius: 6px;
    border: 1px solid var(--border-color); /* 统一 */
}

.modal-stat .stat-label {
    font-weight: 500;
    color: var(--text-color); /* 统一 */
}

.modal-stat .stat-value {
    color: var(--primary); /* 统一 */
    font-weight: 600;
}

/* ====================================
   12. 页脚和加载动画 (Footer & Spinner)
   ==================================== */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 1rem auto;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    /* 保持 display: none; 直到 JS 触发 */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================================
   13. 响应式调整 (Media Queries)
   ==================================== */
@media (max-width: 1300px) and (min-width: 769px) {
    /* 中等到大屏幕，调整容器内边距 */
    .container {
        padding: 0 4rem;
    }
}

@media (max-width: 768px) {
    /* 移动端调整 */
    .container {
        padding: 0 1rem; 
        margin: 2rem auto;
    }
    
    .hd .link-list {
        padding: 0 1rem;
        gap: 12px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .image-list {
        grid-template-columns: 1fr;
    }

    .batch-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    
    .stats-box {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .image-comparison {
        flex-direction: column;
    }

    .image-thumbnail {
        height: 150px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .modal-stats {
        grid-template-columns: 1fr;
    }
    
    #modalImage {
        max-height: 60vh;
    }
    
    .info-box {
        padding: 20px 1rem;
    }
}