:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #007AFF;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --border-color: #eee;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* 导航栏样式 - 保持简洁 */
header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { font-weight: 600; font-size: 1.2rem; text-decoration: none; color: #000; }

nav a { text-decoration: none; color: var(--secondary-color); margin-left: 20px; font-size: 0.9rem; transition: color 0.3s; }
nav a:hover { color: var(--accent-color); }

/* 主体内容 */
main { max-width: 800px; margin: 40px auto; padding: 0 20px; }

h1 { font-weight: 600; font-size: 2rem; margin-bottom: 40px; text-align: center; }

.update-timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--border-color); }

.update-item { position: relative; margin-bottom: 50px; }

.update-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--bg-color);
}

.update-date { font-weight: 600; color: var(--secondary-color); font-size: 0.85rem; text-transform: uppercase; margin-bottom: 10px; }

.update-card { background: var(--card-bg); border-radius: 8px; padding: 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.update-card h3 { margin-top: 0; font-size: 1.25rem; }

.update-tags { display: flex; gap: 10px; margin-bottom: 15px; }
.tag { font-size: 0.75rem; padding: 2px 8px; border-radius: 4px; background: #f0f0f0; color: var(--secondary-color); }
.tag.new { background: #e3f2fd; color: var(--accent-color); }

.update-list { padding-left: 18px; margin: 0; }
.update-list li { margin-bottom: 8px; font-size: 0.95rem; }

footer { text-align: center; padding: 40px 0; color: #999; font-size: 0.8rem; border-top: 1px solid var(--border-color); margin-top: 60px; }

/* 移动端适配 */
@media (max-width: 600px) {
    h1 { font-size: 1.6rem; }
    .update-card { padding: 20px; }
}