:root {
    --paper-color: #f8f1e5;
    --ink-color: #3a3226;
    --accent-brown: #8b4513;
}

body {
    background-color: var(--paper-color);
    background-image: 
        linear-gradient(rgba(210,180,140,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210,180,140,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    font-family: "SimSun", "宋体", serif;
    color: var(--ink-color);
    line-height: 1.6;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 标题样式 */
.archive-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px double var(--accent-brown);
    padding-bottom: 1rem;
}

.archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--ink-color);
    margin: 0;
}

.archive-subtitle {
    font-style: italic;
    margin-top: 0.5rem;
}

/* 简洁列表 */
.issue-list {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
}

.issue-item {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(139,69,19,0.3);
    display: flex;
    align-items: center;
}

.issue-item:last-child {
    border-bottom: none;
}

.issue-date {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: var(--accent-brown);
    width: 100px;
    flex-shrink: 0;
}

.issue-link {
    flex-grow: 1;
    text-decoration: none;
    color: var(--ink-color);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.issue-link:hover {
    color: var(--accent-brown);
}

.issue-link::before {
    content: "❖";
    color: var(--accent-brown);
    margin-right: 10px;
}

/* 分页控件 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.page-button {
    padding: 0.5rem 1rem;
    background: rgba(139,69,19,0.1);
    border: 1px solid var(--accent-brown);
    color: var(--ink-color);
    cursor: pointer;
    transition: all 0.2s;
}

.page-button:hover {
    background: rgba(139,69,19,0.2);
}

.page-button.active {
    background: var(--accent-brown);
    color: var(--paper-color);
}

/* 页脚 */
.archive-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-brown);
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .archive-title {
        font-size: 2rem;
    }
    
    .issue-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .issue-date {
        margin-bottom: 0.5rem;
    }
}
