* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8fb;
    color: #2d1b4e;
    line-height: 1.6;
}

.navbar {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(5deg);
}

.nav-link {
    color: #64748b !important;
    font-weight: 600;
    transition: color 0.3s;
    margin: 0 15px;
}

.nav-link:hover {
    color: #7c3aed !important;
}

.article-hero {
    padding: 60px 0 40px;
    background: white;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-date {
    color: #7c3aed;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.article-category {
    background: #7c3aed;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d1b4e;
}

.article-excerpt {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.article-content {
    padding: 0 0 80px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d1b4e;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d1b4e;
}

.article-body p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-body li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #475569;
}

.article-body blockquote {
    border-left: 4px solid #7c3aed;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #64748b;
    font-size: 20px;
}

.article-body img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.article-body a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-body a:hover {
    color: #5b21b6;
    text-decoration: underline;
}

.related-articles {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.news-card {
    background: #f8f8fb;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #7c3aed;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.news-col {
    margin-bottom: 30px;
    display: flex;
}

.news-col>* {
    width: 100%;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    background: white;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer p {
    margin: 0;
    color: #64748b;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid #e2e8f0;
}

.social-icon:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-excerpt {
        font-size: 16px;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-body h2 {
        font-size: 24px;
    }

    .article-body p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}