html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.article-btn.secondary {
    background: transparent;
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: none;
}

.article-btn.secondary:hover {
    background: #22c55e;
    color: #000;
    transform: translateY(-2px);
}
body.blog-article-body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #050c1a; 
}

body.blog-article-body::before {
    content: "";
    position: fixed;
    top: -5%; 
    left: -5%;
    width: 110%; 
    height: 110%;
    background: linear-gradient(rgba(5, 12, 26, 0.85), rgba(5, 12, 26, 0.9)), 
                url('/assets/images/blog-article_back.webp') no-repeat center center;
    background-size: cover;
    z-index: -1;
    animation: liveBackgroundArticle 25s infinite alternate ease-in-out;
}

@keyframes liveBackgroundArticle {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-10px, 10px); }
}

.article-page {
    padding: 40px 20px 60px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-hero {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.article-breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumbs a:hover {
    color: #22c55e;
    text-decoration: underline;
}

.article-breadcrumbs span {
    color: #64748b;
}

.article-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
}

.article-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
    color: #cbd5e1;
}

.article-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-content h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 700;
}

.article-content h2:not(:first-child) {
    margin-top: 35px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0 0 15px 0; 
}

.article-note {
    margin-top: 35px;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.08); 
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
}

.article-note strong {
    color: #22c55e;
}

.article-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.article-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: #22c55e;
    color: #000;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.article-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
    .article-page {
        padding: 30px 16px 50px;
    }

    .article-hero {
        padding: 25px 20px;
    }

    .article-hero h1 {
        font-size: 30px;
    }

    .article-intro {
        font-size: 16px;
    }

    .article-content {
        padding: 25px 20px;
    }

    .article-content h2 {
        font-size: 23px;
        margin-top: 25px !important;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-note {
        padding: 18px;
    }
}