.article-container {
    padding: 0;
    background: var(--dark-secondary);
    min-height: 100vh;
}

.article-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.article-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.article-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.article-meta {
    font-size: 18px;
    color: var(--text-secondary);
}

.article-header {
    display: none;
}

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

.article-section {
    margin-bottom: 50px;
    background: var(--dark-tertiary);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.article-section:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.article-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.article-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-list strong {
    color: var(--primary-color);
}

.article-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-tertiary) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.article-cta h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

.nav-back,
.nav-next {
    padding: 15px 30px;
    background: var(--dark-tertiary);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-back:hover,
.nav-next:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-section {
        padding: 25px;
    }

    .article-section h2 {
        font-size: 24px;
    }

    .article-cta {
        padding: 30px 20px;
    }

    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .nav-back,
    .nav-next {
        text-align: center;
    }
}
