.article-page {
    padding: 40px 0 80px;
}

.alert-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
}

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

.article-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #888;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #fff;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.article-content strong {
    color: #a0a0ff;
    font-weight: 600;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.related-news {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100,100,255,0.2);
    border-radius: 12px;
}

.related-news h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.related-news a {
    display: block;
    color: #667eea;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.related-news a:hover {
    color: #764ba2;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
}
