

.article-page {
    padding: 60px 0 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    margin-bottom: 32px;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-yellow);
    transform: translateX(-4px);
}

.article-full {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 32px;
}

.article-header .article-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(75,225,236,0.14);
    color: var(--accent-cyan);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(120deg, var(--accent-yellow), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.article-meta {
    color: var(--text-muted);
    font-size: 14px;
}

.article-image-full {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(75,225,236,0.2);
}

.article-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(75,225,236,0.12);
}

.article-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.article-body h2 {
    font-size: 28px;
    color: var(--accent-cyan);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-cta {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,183,3,0.1), rgba(75,225,236,0.1));
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(75,225,236,0.2);
}

.article-cta h3 {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
}


@media (max-width: 768px) {
    .article-page {
        padding: 40px 0 60px;
    }
    
    .article-image-full {
        height: 250px;
    }
    
    .article-body {
        padding: 24px;
    }
    
    .article-body h2 {
        font-size: 22px;
    }
}

