
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');
        
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #0f0e17;
    color: #fffffe;
    scroll-behavior: smooth;
}

.hero {
    background: linear-gradient(rgba(15, 14, 23, 0.7), rgba(15, 14, 23, 0.7)), 
                url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.magazine-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magazine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e53170, #ff8906);
}

.category-filter .active {
    background: linear-gradient(90deg, #e53170, #ff8906);
    color: white;
}

.avatar {
    border: 3px solid #fffffe;
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.3);
}

.artwork-item {
    transition: all 0.3s ease;
}

.artwork-item:hover {
    transform: scale(1.03);
}

.artwork-modal {
    background: rgba(15, 14, 23, 0.95);
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0e17;
}

::-webkit-scrollbar-thumb {
    background: #e53170;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8906;
}

/* 画廊网格布局 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}