/* 复古风格全局样式 */
:root {
    --primary-color: #d4a373;
    --secondary-color: #faedcd;
    --accent-color: #ccd5ae;
    --dark-color: #6b705c;
    --text-color: #3a3a3a;
    --light-bg: #fefae0;
    --vintage-orange: #cb997e;
    --vintage-brown: #7f5539;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23d4a373" stroke-width="0.5" opacity="0.2"/></svg>');
    background-size: 20px 20px;
}

a {
    text-decoration: none;
    color: var(--vintage-brown);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 复古风格头部 */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    border-bottom: 3px double var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    color: var(--vintage-brown);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 15px;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
    border-top: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    width: 100%;
}

nav ul li a {
    padding: 5px 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* 复古主要内容区域 */
.main-content {
    background-color: white;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--primary-color);
    box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed var(--primary-color);
    pointer-events: none;
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px double var(--primary-color);
    color: var(--vintage-brown);
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

/* 复古文章网格 */
.vintage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.vintage-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.vintage-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0px var(--primary-color);
}

.vintage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--primary-color);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    margin-bottom: 15px;
    filter: sepia(0.3);
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--vintage-brown);
    font-family: 'Times New Roman', Times, serif;
}

.card-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--dark-color);
    border-top: 1px dashed var(--primary-color);
    padding-top: 10px;
}

/* 复古分类标签 */
.vintage-tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    margin-bottom: 10px;
    position: absolute;
    top: -10px;
    right: 10px;
}

/* 复古文章详情页 */
.vintage-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px double var(--primary-color);
    padding-bottom: 20px;
}

.article-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--vintage-brown);
    font-family: 'Times New Roman', Times, serif;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    margin: 20px 0;
    filter: sepia(0.3);
}

.article-content {
    line-height: 1.8;
    font-size: 17px;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--primary-color);
    margin: 20px auto;
    display: block;
    filter: sepia(0.3);
}

/* 复古分页导航 */
.vintage-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.vintage-pagination a {
    padding: 8px 20px;
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--vintage-brown);
    font-weight: bold;
}

.vintage-pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 复古友情链接 */
.vintage-links {
    background-color: var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border: 1px solid var(--primary-color);
}

.vintage-links h3 {
    margin-bottom: 20px;
    color: var(--vintage-brown);
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    text-align: center;
}

.vintage-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.vintage-links-container a {
    padding: 8px 15px;
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--vintage-brown);
}

.vintage-links-container a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 复古页脚 */
footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 3px double var(--primary-color);
}

.copyright {
    font-size: 14px;
    color: var(--dark-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .vintage-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    .main-content {
        padding: 20px;
    }
}