.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #e0e0e0;
}

.article-name {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #c3c3c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.article-description {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 75%;
}

.tags {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tags a {
    background: #4351cc;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.article-meta {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.article-title {
    text-decoration: none;
}

.article-title h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-title p {
    color: #c0c0c0;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
}

time {
    color: #a0a0a0;
    font-size: 14px;
    white-space: none;
}

.article-body {
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
}

.article-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.article-content {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.related-articles-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .category-name {
        font-size: 32px;
    }

    .category-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .feature-icon {
        height: 200px;
    }

    .articles-grid h3 {
        font-size: 20px;
    }
    
    .article-image {
        height: auto;
    }

    .article-body {
        padding: 20px;
        margin: 20px auto;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .article-meta {
        display: block;
    }
}

