.article-info-box{
    color: var(--text-secondary) !important;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content p {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-image {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 0, 255, 0.1));
    border: 2px solid var(--neon-magenta);
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.2);
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.featured-article h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.featured-article p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--neon-magenta);
    padding-bottom: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.article-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), inset 0 0 20px rgba(0, 217, 255, 0.05);
    transform: translateY(-5px);
}

.article-card:hover::before {
    left: 100%;
}

.article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--neon-magenta);
}

.article-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: var(--neon-cyan);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    border: 1px solid var(--neon-cyan);
    width: fit-content;
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 1rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--neon-cyan);
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        height: 300px;
    }

    .featured-article {
        padding: 1.5rem;
    }

    .featured-article h2 {
        font-size: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}