* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #0a0e17;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    font-size: 14px;
}

/* 星空背景 */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* 流星效果 */
.meteor {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(100, 200, 255, 1) 30%, rgba(100, 200, 255, 1) 70%, rgba(255,255,255,0) 100%);
    transform-origin: left center;
    animation: meteorFall var(--duration) linear infinite;
    filter: drop-shadow(0 0 6px rgba(100, 200, 255, 1));
}

@keyframes meteorFall {
    0% {
        transform: translate3d(0, 0, 0) rotate(-45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate3d(var(--x-end), var(--y-end), 0) rotate(-45deg);
        opacity: 0;
    }
}

/* 侧边栏菜单 */
.sidebar {
    width: 220px;
    background: linear-gradient(145deg, rgba(15, 25, 45, 1), rgba(5, 10, 25, 1));
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 15px 0;
    border-right: 1px solid rgba(100, 150, 255, 0.8);
    box-shadow: 
        8px 0 25px rgba(0, 0, 0, 0.8),
        inset 3px 0 15px rgba(0, 200, 255, 0.6),
        inset -3px 0 15px rgba(0, 150, 255, 0.6);
    transform: translateX(0);
    transition: transform 0.3s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.sidebar-header {
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.5);
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 12px rgba(100, 150, 255, 0.7);
    position: relative;
    font-size: 1.2rem;
    color: #00ffea;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffea, transparent);
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 101;
    background: linear-gradient(145deg, #1a2a4f, #14223d);
    border: 1px solid rgba(100, 150, 255, 0.6);
    border-radius: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 10px rgba(0, 150, 255, 0.7),
        inset 2px 2px 5px rgba(0, 200, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5);
    display: none;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 
        0 0 15px rgba(0, 200, 255, 1),
        inset 2px 2px 5px rgba(0, 200, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #00ffea;
    position: relative;
    box-shadow: 0 0 5px #00ffea;
}

.menu-toggle span:before,
.menu-toggle span:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #00ffea;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #00ffea;
}

.menu-toggle span:before {
    top: -5px;
}

.menu-toggle span:after {
    top: 5px;
}

.menu-list {
    list-style: none;
    padding: 0 12px;
    transform: translateZ(20px);
}

.menu-item {
    padding: 16px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
    font-size: 1.05rem;
    margin-bottom: 8px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(30, 40, 70, 1), rgba(20, 30, 60, 1));
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.6),
        inset 2px 2px 8px rgba(80, 180, 255, 0.6),
        inset -2px -2px 8px rgba(0, 0, 0, 0.7);
    transform-style: preserve-3d;
    transform: translateZ(0);
    color: #e0e0ff;
    transform-origin: left center;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.menu-item:hover {
    background: linear-gradient(145deg, rgba(50, 100, 180, 1), rgba(30, 70, 140, 1));
    border-left: 4px solid #00ffff;
    box-shadow: 
        0 8px 20px rgba(0, 180, 255, 0.8),
        inset 2px 2px 10px rgba(100, 240, 255, 0.8),
        inset -2px -2px 10px rgba(0, 0, 0, 0.6);
    transform: translateZ(10px) translateY(-2px);
    color: #ffffff;
    z-index: 10;
}

.menu-item.active {
    background: linear-gradient(145deg, rgba(70, 150, 240, 1), rgba(40, 100, 200, 1));
    border-left: 4px solid #00ffff;
    box-shadow: 
        0 8px 25px rgba(0, 200, 255, 1),
        inset 2px 2px 12px rgba(150, 255, 255, 1),
        inset -2px -2px 12px rgba(0, 0, 0, 0.7);
    transform: translateZ(15px) translateY(-3px);
    color: #ffffff;
    z-index: 20;
    font-weight: 600;
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.menu-item:hover::after {
    transform: translateX(100%);
}

.menu-item i {
    margin-right: 12px;
    width: 22px;
    text-align: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: brightness(1.2);
}

.menu-item:hover i {
    transform: scale(1.2) translateZ(15px);
    filter: brightness(1.4);
}

.menu-item span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-item:hover span {
    letter-spacing: 1px;
}

.menu-item.active span {
}

/* 主容器 */
.main-content {
    flex: 1;
    margin-left: 220px;
    transition: margin-left 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
    position: relative;
    z-index: 1;
}

/* 头部标题 */
header {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 15px;
    position: relative;
}

h1 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(100, 100, 255, 0.5);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* 呼吸灯效果 */
.breathing-light {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ffea;
    box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
    animation: breathing 2s infinite alternate;
    margin-right: 8px;
}

@keyframes breathing {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* 文件上传区域 */
.upload-section {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.8), rgba(10, 20, 40, 0.9));
    border: 1px solid rgba(100, 150, 255, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 150, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.upload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 200, 255, 0.1) 50%, 
        transparent 100%);
    transform: skewX(-25deg);
    pointer-events: none;
}

.upload-title {
    font-size: 1.4rem;
    color: #00ffea;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.file-upload {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file-input-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.text-input-wrapper {
    position: relative;
    background: linear-gradient(145deg, #1a2a4f, #14223d);
    border: 1px solid rgba(100, 150, 255, 0.5);
    border-radius: 8px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 2px 2px 5px rgba(0, 200, 255, 0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5);
}

.text-input-wrapper input {
    background: transparent;
    border: none;
    color: #e0e0ff;
    padding: 12px 15px;
    width: 200px;
    font-size: 1rem;
    outline: none;
}

.text-input-wrapper input::placeholder {
    color: #a0a0d0;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(145deg, #1a2a4f, #14223d);
    border: 1px solid rgba(100, 150, 255, 0.5);
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 2px 2px 5px rgba(0, 200, 255, 0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5);
}

.file-input-wrapper:hover {
    background: linear-gradient(145deg, #1f3565, #192a4f);
    box-shadow: 
        0 6px 20px rgba(0, 100, 255, 0.5),
        inset 2px 2px 8px rgba(0, 200, 255, 0.5),
        inset -2px -2px 8px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.file-input-wrapper:active {
    transform: translateY(1px);
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-text {
    color: #00ffea;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(0, 200, 255, 0.5);
}

.file-info {
    color: #a0a0d0;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 0 0 5px rgba(160, 160, 208, 0.5);
}

.desktop-only {
    display: inline;
}

.mobile-only {
    display: none;
}

.button-icon {
    width: 20px;
    height: 20px;
    fill: #00ffea;
    margin-right: 8px;
    filter: drop-shadow(0 0 3px rgba(0, 255, 234, 0.7));
}

.upload-button {
    background: linear-gradient(145deg, #0077be, #005a99);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 2px 2px 5px rgba(100, 230, 255, 0.3),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
}

.upload-button:hover {
    background: linear-gradient(145deg, #0099e6, #0077be);
    box-shadow: 
        0 6px 20px rgba(0, 150, 255, 0.6),
        inset 2px 2px 8px rgba(100, 230, 255, 0.5),
        inset -2px -2px 8px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.upload-button:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 2px 2px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(100, 230, 255, 0.3);
}

/* 上传进度条样式 */
.upload-progress-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    stroke: rgba(26, 42, 79, 0.5);
}

.progress-ring-circle {
    stroke: #00ffea;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
    stroke-dasharray: 314.159; /* 2 * π * r */
    stroke-dashoffset: 314.159; /* 初始值为周长，表示0% */
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.7);
}

.progress-status {
    margin-top: 15px;
    font-size: 1rem;
    color: #a0a0d0;
    text-align: center;
    text-shadow: 0 0 5px rgba(160, 160, 208, 0.5);
}

.file-list-container {
    background: rgba(10, 20, 40, 0.7);
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 
        inset 0 0 10px rgba(0, 150, 255, 0.2);
}

.file-list-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #00ffea;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(0, 200, 255, 0.5);
}

.file-count {
    color: #00ff99;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.file-list::-webkit-scrollbar {
    width: 8px;
}

.file-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.file-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0077be, #005a99);
    border-radius: 4px;
}

.file-list li {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.2);
    color: #e0e0ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-list li:last-child {
    border-bottom: none;
}

.file-list-placeholder {
    text-align: center;
    color: #a0a0d0;
    font-style: italic;
}

.file-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}

.file-size {
    color: #00ffcc;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.remove-file {
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.5);
    color: #ff5555;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 10px;
}

.remove-file:hover {
    background: rgba(255, 50, 50, 0.4);
}

/* 仪表盘区域 */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.dashboard-card {
    background: rgba(20, 30, 48, 0.8);
    border: 1px solid rgba(100, 100, 255, 0.4);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 100, 255, 0.5);
}

.dashboard-card:hover::before {
    transform: scaleX(1);
}

.card-title {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #00ffea;
    display: flex;
    align-items: center;
}

.card-title .breathing-light {
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

/* 图表容器 */
.chart-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 20, 35, 0.6);
    border-radius: 5px;
    color: #666;
    border: 1px dashed rgba(100, 100, 255, 0.4);
    position: relative;
    overflow: hidden;
}

/* 同比环比数据展示 */
.trend-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 12px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

.trend-item {
    text-align: center;
}

.trend-value {
    font-size: 0.9rem;
    font-weight: bold;
}

.trend-up {
    color: #00ff7f;
}

.trend-down {
    color: #ff4d4d;
}

.trend-label {
    font-size: 0.7rem;
    color: #aaa;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.visible {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .upload-section {
        padding: 15px;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-card {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .sidebar {
        width: 200px;
    }
    
    .menu-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .sidebar-header h2 {
        font-size: 1rem;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: inline;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3rem;
    }
    
    header {
        padding: 15px 0;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 180px;
    }
    
    .card-title {
        font-size: 0.95rem;
    }
    
    .upload-title {
        font-size: 1.1rem;
    }
}

/* 加载动画 */
.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #00ffea;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, rgba(20, 30, 50, 0.95), rgba(10, 20, 40, 0.95));
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(100, 150, 255, 0.5);
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 200, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 200, 255, 0.1) 50%, 
        transparent 100%);
    pointer-events: none;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 25, 45, 0.8);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffea, transparent);
}

.modal-header h2 {
    color: #00ffea;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover,
.close:focus {
    color: #00ffea;
    background: rgba(0, 200, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0077be, #005a99);
    border-radius: 4px;
}

#jsonContent {
    color: #e0e0ff;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    font-size: 0.9rem;
}

.json-key {
    color: #00ffcc;
    font-weight: bold;
}

.json-string {
    color: #00ccff;
}

.json-number {
    color: #ff9966;
}

.json-boolean {
    color: #ff66cc;
}

.json-null {
    color: #999999;
}

.json-property {
    margin-bottom: 6px;
}

.json-array-item {
    margin-left: 15px;
    margin-bottom: 4px;
}

.file-record {
    background: rgba(30, 40, 70, 0.6);
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.file-record::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 200, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(0, 200, 255, 0.05) 0%, transparent 15%);
    pointer-events: none;
}

.file-record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.2);
}

.file-record-title {
    color: #00ffea;
    font-weight: bold;
    font-size: 1rem;
}

.file-record-url {
    color: #00ccff;
    font-size: 0.8rem;
    word-break: break-all;
    margin-top: 6px;
    padding: 6px;
    background: rgba(0, 30, 60, 0.5);
    border-radius: 4px;
}

.file-record-url a {
    color: #00ccff;
    text-decoration: none;
}

.file-record-url a:hover {
    text-decoration: underline;
}

.file-record-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    color: #a0a0d0;
}

.meta-value {
    font-size: 0.85rem;
    color: #e0e0ff;
    font-weight: 500;
}

.record-summary {
    background: rgba(20, 30, 50, 0.8);
    border: 1px solid rgba(100, 150, 255, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.record-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(0, 200, 255, 0.1) 90deg, 
            transparent 180deg,
            rgba(0, 200, 255, 0.05) 270deg,
            transparent 360deg);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.summary-title {
    color: #00ffea;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
    position: relative;
    display: inline-block;
}

.summary-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffea, transparent);
}

.summary-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 40, 80, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(0, 200, 255, 0.2);
    min-width: 100px;
}

.summary-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff99;
    text-shadow: 0 0 6px rgba(0, 255, 153, 0.5);
}

.summary-label {
    font-size: 0.8rem;
    color: #a0a0d0;
    margin-top: 4px;
}

/* SVG装饰图标 */
.svg-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
    fill: #00ffea;
    filter: drop-shadow(0 0 2px rgba(0, 255, 234, 0.7));
}

.file-icon {
    fill: #00ccff;
}

.time-icon {
    fill: #ff9966;
}

.size-icon {
    fill: #ff66cc;
}

.id-icon {
    fill: #99ff66;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .summary-content {
        gap: 10px;
    }
    
    .file-record-meta {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        min-width: 80px;
        padding: 6px 10px;
    }
    
    .summary-value {
        font-size: 1rem;
    }
    
    .summary-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 12px;
    }
    
    .file-record {
        padding: 10px;
    }
    
    .summary-title {
        font-size: 1rem;
    }
    
    .summary-content {
        gap: 8px;
    }
    
    .summary-item {
        min-width: 70px;
        padding: 5px 8px;
    }
    
    .summary-value {
        font-size: 0.9rem;
    }
}
