.article-section {
    padding: 6rem 0 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--tertiary-dark) 100%);
    min-height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    filter: blur(80px);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

:root.light-mode .article-section::before {
    background: radial-gradient(circle, rgba(30, 143, 214, 0.08) 0%, transparent 70%);
}

.article-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    filter: blur(80px);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}

:root.light-mode .article-section::after {
    background: radial-gradient(circle, rgba(227, 28, 121, 0.08) 0%, transparent 70%);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    position: relative;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 2px;
}

.article-section h1 {
    font-size: 3rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 50%, var(--accent-red) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -2px;
    animation: gradientShift 6s ease infinite;
    line-height: 1.2;
}

.article-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    margin-top: 1rem;
}

:root.light-mode .last-updated {
    background: rgba(30, 143, 214, 0.08);
    border: 1px solid rgba(30, 143, 214, 0.2);
}

:root.light-mode .last-updated {
    background: rgba(30, 143, 214, 0.08);
    border: 1px solid rgba(30, 143, 214, 0.2);
}

.article-content {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(17, 22, 41, 0.6) 100%);
    padding: 3rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
    line-height: 1.8;
}

:root.light-mode .article-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
    border: 1px solid rgba(30, 143, 214, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

:root.light-mode .article-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
    border: 1px solid rgba(30, 143, 214, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent-blue);
    font-weight: 700;
    position: relative;
    padding-left: 1.2rem;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    border-radius: 2px;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.article-content ul {
    margin: 1.2rem 0 1.5rem 1rem;
    list-style: none;
}

.article-content li {
    margin-bottom: 1rem;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
    font-size: 1.02rem;
}

.article-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.article-content strong {
    color: var(--accent-blue);
    font-weight: 700;
}

.article-content em {
    color: var(--accent-purple);
    font-style: italic;
}

.article-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.article-content a:hover {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

.article-content .article-return-btn {
    color: #fff !important;
}

.article-content .article-return-btn:hover {
    color: #fff !important;
    border-bottom-color: transparent !important;
}

.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-muted);
}

:root.light-mode .article-content blockquote {
    background: rgba(30, 143, 214, 0.08);
    border-left-color: var(--accent-blue);
}

.article-content .cost-breakdown,
.article-content .info-box {
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

:root.light-mode .article-content .cost-breakdown,
:root.light-mode .article-content .info-box {
    background: rgba(30, 143, 214, 0.1);
    border: 1px solid rgba(30, 143, 214, 0.3);
}

.article-content .social-links-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.article-content .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--accent-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

:root.light-mode .article-content .social-link {
    background: rgba(30, 143, 214, 0.1);
    border: 1px solid rgba(30, 143, 214, 0.25);
}

.article-content .social-link:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

.article-content .social-link.twitch:hover {
    background: #9146ff;
    border-color: #9146ff;
}

.article-content .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.article-return-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-return-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .article-section {
        padding: 3rem 0 2.5rem 0;
    }

    .article-header {
        margin-bottom: 1.5rem;
    }

    .article-section h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .article-content h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        padding-left: 1rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-content li {
        font-size: 0.98rem;
        padding-left: 1.5rem;
    }

    .article-container {
        padding: 0 15px;
    }

    .last-updated {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .article-section h1 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 1.5rem 1.2rem;
    }

    .article-content h2 {
        font-size: 1.2rem;
    }

    .article-content p,
    .article-content li {
        font-size: 0.95rem;
    }
}
