/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    overflow-x: hidden;
}

/* Brand Header */
.brand-header {
    width: 100%;
    display: flex;
    height: 50px;
}

.brand-red {
    background-color: #dc2626;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.brand-black {
    background-color: #1a1a1a;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 10px;
}

.brand-text {
    color: white;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

/* Navigation */
.nav-links::-webkit-scrollbar {
    height: 4px;
}

.nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.nav-links::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

/* Search Modal Animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-modal.active .search-modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-text {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .brand-text {
        font-size: 20px;
    }
}
 .article-content {
        font-size: 1.0625rem;
        line-height: 1.75;
        color: #1f2937;
    }
    
    .article-content p {
        margin-bottom: 1.25em;
    }
    
    .article-content h2 {
        color: #111827;
        font-size: 1.75rem;
        font-weight: 700;
        margin-top: 2em;
        margin-bottom: 0.75em;
        line-height: 1.3;
    }
    
    .article-content h3 {
        color: #111827;
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 1.75em;
        margin-bottom: 0.75em;
        line-height: 1.3;
    }
    
    .article-content h4 {
        color: #111827;
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
    }
    
    .article-content img {
        border-radius: 0.5rem;
        margin: 1.75em 0;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    }
    
    .article-content a {
        color: #dc2626;
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    
    .article-content a:hover {
        color: #991b1b;
    }
    
    .article-content ul, .article-content ol {
        margin: 1.25em 0;
        padding-left: 1.75em;
    }
    
    .article-content li {
        margin-bottom: 0.5em;
    }
    
    .article-content blockquote {
        border-left: 4px solid #dc2626;
        padding-left: 1.25em;
        margin: 1.5em 0;
        font-style: italic;
        color: #4b5563;
    }
    
    .article-content strong {
        font-weight: 600;
        color: #111827;
    }
    
    .article-content code {
        background: #f3f4f6;
        padding: 0.2em 0.4em;
        border-radius: 0.25rem;
        font-size: 0.9em;
        font-family: monospace;
    }
    
    .article-content pre {
        background: #1f2937;
        color: #f9fafb;
        padding: 1.25em;
        border-radius: 0.5rem;
        overflow-x: auto;
        margin: 1.5em 0;
    }
    
    .article-content pre code {
        background: transparent;
        padding: 0;
        color: inherit;
    }
    
    .article-content hr {
        border: none;
        border-top: 2px solid #e5e7eb;
        margin: 2em 0;
    }
    
    .article-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5em 0;
    }
    
    .article-content th, .article-content td {
        border: 1px solid #e5e7eb;
        padding: 0.75em;
        text-align: left;
    }
    
    .article-content th {
        background: #f9fafb;
        font-weight: 600;
    }