* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #2a1f0d;
    color: #fff;
}

.header {
    background: #1a1407;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5em;
    color: #ffd700;
    text-shadow: 2px 2px #1a1407;
}

.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-title {
    color: #ffd700;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.article-meta {
    color: #ffe8a3;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.article-content {
    background: #1a1407;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffd70033;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
    color: #ffe8a3;
}

.article-content h2 {
    color: #ffd700;
    margin: 30px 0 20px;
}

.article-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
    color: #ffe8a3;
}

.article-content li {
    margin-bottom: 10px;
}

/* 角色预览卡片 */
.character-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.character-card {
    background: #2a1f0d;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffd70033;
    text-align: center;
}

.character-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.character-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.character-card p {
    font-size: 0.9em;
    color: #ffe8a3;
}

/* 公告框 */
.notice-box {
    background: #2a1f0d;
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 30px 0;
    color: #ffe8a3;
}

/* 下载按钮区域 */
.download-section {
    text-align: center;
    margin: 40px 0;
}

.download-btn {
    background: linear-gradient(135deg, #ffd700 0%, #FFA500 100%);
    color: #1a1407;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* 相关链接 */
.related-links {
    margin-top: 40px;
    padding: 20px;
    background: #1a1407;
    border-radius: 10px;
    border: 1px solid #ffd70033;
}

.related-links h3 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    background: #2a1f0d;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffd70033;
    transition: transform 0.3s;
}

.link-card:hover {
    transform: translateY(-3px);
}

.link-card a {
    color: #ffd700;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* 返回首页按钮 */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    text-decoration: none;
    margin-bottom: 20px;
}

.back-to-home:hover {
    color: #FFA500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
    }

    .article-title {
        font-size: 1.5em;
    }

    .article-content {
        padding: 20px;
    }

    .character-preview {
        grid-template-columns: 1fr;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    
    .article-meta {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .download-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }
} 