@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
}

.hero-bg {
    background-image: url('https://static.app.985sy.com/admin-fast-system/gamedata/20260119/gamemap/fivepicf3ccdd27d2000e3f9255a7e3e2c488001768808492.jpg');
    background-size: cover;
    background-position: center;
}

.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 文章内容样式 */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.article-meta .category {
    background-color: rgba(123, 104, 238, 0.1);
    color: #7B68EE;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-right: 1rem;
}

.article-meta .date {
    color: #6b7280;
    font-size: 0.875rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.article-excerpt {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* 文章正文样式 */
.article-body {
    line-height: 1.8;
    color: #374151;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body .note {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 相关文章样式 */
.related-articles {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.related-articles h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.related-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card .content {
    padding: 1.5rem;
}

.related-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111827;
}

.related-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-bg {
        background-position: center;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .related-card img {
        height: 120px;
    }
}