/* 全局设定：深色背景，突出中间的“纸张” */
body {
    background-color: #2b2b2b; /* 桌面的颜色 */
    /* 核心字体栈：先找 Google 的宋体，再找系统的宋体/明体 */
    font-family: 'Noto Serif TC', 'Songti SC', 'SimSun', 'Special Elite', serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px; /* 增加一点上下的空间 */
    margin: 0;
    color: #1a1a1a; /* 墨水色 */
}

/* 核心：模拟旧纸张 */
.paper-container {
    background-color: #f4e4bc; /* 泛黄纸色 */
    width: 100%;
    max-width: 1000px; /* 【修改】加宽了纸张宽度，看起来更大气 */
    padding: 60px 80px; /* 【修改】增加了内部留白，更有公文感 */
    box-shadow: 0 0 25px rgba(0,0,0,0.6); /* 投影加深 */
    position: relative;
    
    /* 噪点纹理 */
    background-image: radial-gradient(#d3c6a0 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 英文大标题 */
h1 {
    text-align: center;
    font-family: 'Special Elite', monospace; /* 英文标题保留打字机风 */
    font-size: 3.5rem; /* 【修改】字号加大 */
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.1;
}

/* 中文副标题 */
.cn-title {
    text-align: center;
    font-size: 2.2rem;
    margin-top: 5px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 10px; /* 字间距拉大，更有民国牌匾感 */
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 15px;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    font-family: 'Special Elite', serif;
}

.latin-motto {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    font-weight: bold;
}

.double-line {
    border: 0;
    border-top: 2px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    height: 6px; /* 加粗分割线 */
    margin: 40px 0;
}

/* 图片样式 */
.vintage-photo {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
    width: 200px; /* 【修改】图片也稍微放大一点 */
    height: auto;
    filter: sepia(0.8) grayscale(0.2) contrast(1.1);
    border: 8px solid #fff; 
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.content-row::after {
    content: "";
    clear: both;
    display: table;
}

/* 正文样式 */
p {
    font-size: 1.3rem; /* 【修改】正文字号加大，便于阅读 */
    line-height: 1.8;  /* 行高增加，显得不拥挤 */
    margin-bottom: 25px;
    text-align: justify; /* 两端对齐，像报纸排版 */
}

h3 {
    font-size: 1.8rem;
    border-left: 5px solid #8b0000; /* 左边加个深红色的竖条装饰 */
    padding-left: 15px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

ul {
    list-style-type: none; /* 去掉默认圆点，自己定义 */
    padding-left: 10px;
}

li {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #aaa; /* 列表左侧加个淡淡的线 */
}

.signature {
    float: right;
    font-weight: bold;
    margin-top: 20px;
    margin-right: 20px;
    font-family: 'Special Elite', serif;
}

/* 印章样式 */
.stamp {
    position: absolute;
    top: 50px;
    right: 50px;
    border: 4px solid #b22222;
    color: #b22222;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 1.5rem;
    transform: rotate(12deg);
    opacity: 0.7;
    font-family: 'Special Elite', cursive;
    letter-spacing: 2px;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 60px;
    opacity: 0.7;
    font-family: 'Special Elite', serif;
}

/* 手机端适配：如果不加这个，手机上字会太大 */
@media (max-width: 768px) {
    .paper-container {
        padding: 30px;
        width: 95%;
    }
    h1 { font-size: 2.2rem; }
    .cn-title { font-size: 1.6rem; }
    .vintage-photo {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        transform: rotate(0);
    }
}
