.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
}

/* Global Styles (Extended) */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Article Page Styles */
.article-page {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background-color: #1e1e2f;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.article-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Article Title */
.article-page .article-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Article Metadata */
.article-page .article-meta {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin-bottom: 25px;
    text-align: center;
}

/* Article Content */
.article-page .article-content {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.9;
    margin-bottom: 35px;
    text-align: justify;
}

/* Headings inside Article */
.article-page .article-content h2,
.article-page .article-content h3 {
    color: #ffffff;
    margin-top: 35px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Paragraphs inside Article */
.article-page .article-content p {
    margin-bottom: 25px;
}

/* Blockquotes */
.article-page blockquote {
    font-size: 1.3rem;
    margin: 25px 0;
    padding: 20px;
    background-color: #2a2a3b;
    border-left: 5px solid #ff9f55;
    color: #ccc;
    line-height: 1.7;
    quotes: "“" "”";
    transition: background-color 0.3s ease;
}

.article-page blockquote::before {
    content: open-quote;
    font-size: 2.5rem;
    color: #ff9f55;
    margin-right: 10px;
}

.article-page blockquote::after {
    content: close-quote;
    font-size: 2.5rem;
    color: #ff9f55;
    margin-left: 10px;
}

.article-page blockquote:hover {
    background-color: #38384a;
}

/* Images inside Article */
.article-page .article-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 35px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.article-page .article-content img:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

/* Lists inside Article */
.article-page .article-content ul,
.article-page .article-content ol {
    margin: 25px 0;
    padding-left: 40px;
}

.article-page .article-content ul li,
.article-page .article-content ol li {
    margin-bottom: 15px;
    color: #cccccc;
}

/* Links inside Article */
.article-page .article-content a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}

.article-page .article-content a:hover {
    color: #ffd791;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .article-page {
        padding: 25px;
    }

    .article-page .article-title {
        font-size: 2rem;
    }

    .article-page .article-content {
        font-size: 1.1rem;
    }
}

/* Centering and styling for the image */
.img_art {
    width: 100%;
    max-width: auto;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.img_art:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
