@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/fivepic032b2cc936860b03048302d991c3498f1768808502.jpg');
    background-size: cover;
    background-position: center;
}

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

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.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-card {
    border-radius: 1rem;
    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;
}

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

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

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #7B68EE;
    color: white;
    border-color: #7B68EE;
}

.pagination a.active {
    background-color: #7B68EE;
    color: white;
    border-color: #7B68EE;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-bg {
        background-position: center;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .article-card img {
        height: 150px;
    }
    
    .pagination a {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}