:root {
    /* === 在这里调节模糊程度和背景图 === */
    --blur-amount: 10px;          /* 模糊半径，数字越大越模糊 */
    --bg-overlay-opacity: 0.6;   /* 内容背景白色的不透明度 (0.0-1.0)，越低越透 */
    --primary-color: #2c3e50;     /* 学术风格常用的深蓝色 */
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* 背景层：独立于内容，防止内容也被模糊 */
.bg-layer {
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: -1;
    /* 替换背景图 */
    background: url('images/bg.png') no-repeat center center fixed; 
    background-size: cover;
    
    /* 核心：模糊滤镜 */
    filter: blur(var(--blur-amount));
    
    /* 消除模糊边缘的白边，稍微放大一点 */
    transform: scale(1.05); 
}

/* 布局容器 */
.container {
    max-width: 900px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, var(--bg-overlay-opacity));
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 学术风格排版 */
header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h1 { margin: 0; color: var(--primary-color); }
h2 { color: var(--primary-color); border-left: 4px solid var(--primary-color); padding-left: 10px; margin-top: 30px;}
.subtitle { color: #666; font-weight: normal; margin-top: 5px; }

a { color: #3498db; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { line-height: 1.6; }
.paper-item { margin-bottom: 15px; }
.paper-title { font-weight: bold; display: block;}
