@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-1635070041078-e363dbe005cb?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);
}

.live-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 49, 112, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(229, 49, 112, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 49, 112, 0);
    }
}

.avatar {
    border: 5px solid #fffffe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0e17;
}

::-webkit-scrollbar-thumb {
    background: #e53170;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8906;
}