/* --- आपकी कस्टम CSS स्टाइल --- */
/* कंटेंट कलरिंग (मेमोरी में सेव्ड) */
.section-heading {
    font-weight: 700;
    color: #ff4500; /* OrangeRed - मुख्य हेडिंग कलर */
    border-bottom: 2px solid #09AAF2;
    padding-bottom: 5px;
    margin-bottom: 20px !important;
}
/* ब्लॉग लिस्ट आइटम होवर इफ़ेक्ट */
.blog-list-item:hover .card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.6) !important;
}
.card-body h3 a {
    color: #0c9696; /* Teal - मुख्य बिंदु/टाइटल कलर */
    font-size: 1.2rem;
    text-decoration: none;
}
.card-body p {
    color: #5f1eff; /* Dark Grey - लेख फ़ॉन्ट कलर */
}
/* थंबनेल कंटेनर स्टाइल */
.blog-thumbnail-container {
    max-height: 250px; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.blog-thumbnail-container img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}
.blog-thumbnail-container:hover img {
    transform: scale(1.05); /* ज़ूम इफ़ेक्ट */
}
/* पूरे कार्ड को क्लिकेबल बनाने के लिए लिंक */
.clickable-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}
@media (max-width: 768px) {
    .blog-thumbnail-container {
        max-height: 200px;
    }
}

/* ======================================================= */
/* आर्टिकल व्यू CSS */
/* ======================================================= */
.article-container {
    max-width: 900px;
    margin: 20px auto; 
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* सफलता/त्रुटि पॉप-अप स्टाइल */
.mu-alert-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    color: white;
    border-radius: 5px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s forwards;
    min-width: 300px;
}
.mu-alert-success { background-color: #5cb85c; }
.mu-alert-danger { background-color: #d9534f; }

@keyframes slideIn {
    from { right: -350px; opacity: 0; }
    to { right: 20px; opacity: 1; }
}

/* लेख फोंट और हेडिंग कलरिंग */
h1.main-heading, h3 { 
    color: #ec4cac; /* मुख्य हेडिंग */
    border-bottom: 2px solid rgba(105, 0, 255, 0.9);
    padding-bottom: 10px;
    margin-top: 20px; 
    margin-bottom: 20px;
    font-weight: 700;
}
h2.subtitle {
    color: #1f932b; 
    font-weight: 400;
    margin-top: 0;
    font-size: 1.9rem;
}

.post-body p {
    color: #0029ff; /* लेख फ़ॉन्ट कलर */
    text-align: justify;
}

.post-body b, .post-body strong {
    color: #01c87b;
    font-weight: 700;
}

.post-info span {
    color: #cc9901; /* Pink - हेडिंग (लेबल) कलर */ 
    display: inline-block; 
    line-height: 1.9;
    margin-right: 20px; 
}

.post-info b {
    color: #a600ff; 
    font-weight: bold;
}

/* लेख सारांश बॉक्स */
.summary-box {
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #5ae2a9;
    border-radius: 5px;
    background-color: #fbffff;
}
.summary-intro {
    font-weight: bold; 
    color: #ff1493; 
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block; 
}
.summary {
    color: #4607cc !important; 
    text-align: justify;
    display: block !important;
}

/* शेयरिंग बटन स्टाइल */
.post-header-share {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    border-top: 3px dashed #eee;
    padding-top: 10px;
}

.top-round-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: none;
    border: 1px solid #f7ffe5;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    color: #0003ff; 
}

.copy-round-btn {
    color: #219bff; 
    border-color: #8700ff;
}

.share-options {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: center; 
}

.share-row-single {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-top: 10px;
}

.bottom-square-btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 8px 12px; 
    border: none;
    border-radius: 5px; 
    cursor: pointer;
    font-size: 14px; 
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9); 
    min-width: 100px; 
    color: white; 
}

.copy-button-center {
    text-align: center; 
    margin: 15px 0;    
}
.copy-btn {
    background-color: #0b9292; 
    color: white;
    font-weight: bold; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin: 0 5px; 
}

/* अतिरिक्त मेटा जानकारी सेक्शन */
.additional-meta-info {
    padding: 10px 0;
    margin-top: 25px;
    border-top: 2px solid #edf9ff;
}

.additional-meta-info h4 {
    color: #6900ff;
    border-bottom: 2px dashed #0052ff;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* मेटा आइटम बॉक्स स्टाइल */
.meta-item-box {
    margin-bottom: 10px;
    padding: 5px 0;
}
.meta-item-box strong {
    color: #038e15; 
    font-weight: 700;
    display: block; 
    margin-bottom: 5px;
}
.meta-value-container {
    display: block;
    width: 100%;
    background-color: #f2fffc; 
    border: 2px solid #9600ff;
    padding: 10px 12px;
    border-radius: 10px;
}

.tag-list, .category-link, .topic-link, .source-link {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #e5e8ff; 
    color: #003ffd !important; /* टैग्स फोंट कलर */
    text-decoration: none !important;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.2s;
    cursor: pointer;
    word-break: break-word; 
}

.tag-container {
    display: inline;
}

.category-link, .topic-link, .source-link {
    background-color: #f8f9fa; 
    color: #ff007a; 
    border: 1px solid #22b666;
    font-weight: 700;
}

/* URL Slug Styling (संशोधित) */
.slug-value {
    color: #008000; /* Green */
    font-weight: 600;
    cursor: copy; /* कर्सर को कॉपी आइकन दिखाएँ */
}

/* संबंधित पोस्ट सेक्शन */
.related-posts-section {
    margin-top: 40px; 
    padding-top: 10px; 
    border-top: 2px solid #00fff7;
}

.related-posts-section h3 {
     color: #049512; 
     border-bottom: 2px solid rgba(4, 149, 18, 0.5);
     margin-bottom: 15px;
}

.related-posts-list-v2 {
    list-style-type: none;
    padding: 0;
    margin-top: 5px; 
    border: 2px solid #e9ffe3; 
    padding: 10px;
    border-radius: 10px;
}

.related-posts-list-v2 li {
    margin-bottom: 5px;
}
.related-posts-list-v2 li a {
    color: #006eff; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: block;
}

/* मल्टी-कलर बटन स्टाइल */
.btn-multicolor {
    background-image: linear-gradient(to right, #205c07, #7a5e9e, #00bfff); 
    color: white;
    font-weight: bold;
    border: none;
    /* साइज़ कंट्रोल करने के लिए पैडिंग */
    padding: 3px 9px; 
    /* बॉर्डर रेडियस - कोनों को गोल करने के लिए */
    border-radius: 10px; 
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}
.btn-multicolor:hover {
    background-image: linear-gradient(to right, #00bfff, #7a5e9e, #205c07); 
    color: white;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}


/* सब्सक्रिप्शन Modal CSS */
.subscription-form .honeypot-field {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}
#customSubscribeModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1050; 
    overflow-y: auto;
}
#customSubscribeModal .modal-content-custom {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin: 50px auto;
    position: relative;
    text-align: center;
}
#customSubscribeModal .close-btn-custom {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
    border: none;
    background: none;
}
#customSubscribeModal .modal-title {
    color: #ff4500;
    font-weight: bold;
    margin-bottom: 10px;
}
.subscription-form input[type="email"],
.subscription-form input[type="text"] {
    border: 2px solid #ff4500;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    max-width: 300px; 
    text-align: center;
}
.subscription-form button[type="submit"] {
    background-color: #038e15; 
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.subscription-form .captcha-label {
    color: #006eff; 
    display:block; 
    margin-bottom: 5px;
}
.subscription-form .captcha-input {
    border: 2px solid #006eff; 
}

/* --- नया कमेंट सेक्शन CSS --- */
.comments-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #28a745;
}
.comments-section h3 {
    color: #28a745; /* Green - कमेंट हेडिंग */
    font-size: 1.7rem;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.comment-form-container {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #f8f9fa;
}
.comment-form .form-control {
    border-radius: 5px;
}
.comment-form .honeypot-field-cmt {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}
.comment-box {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.comment-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}
.comment-author-info strong {
    color: #007bff; /* Blue */
    font-size: 1.1rem;
}
.comment-date {
    color: #6c757d; /* Grey */
    font-size: 0.85rem;
}
.comment-body-text {
    color: #343a40; /* Dark text */
    text-align: justify;
}
.comment-reply {
    margin-top: 10px;
    padding: 10px 15px;
    border-left: 3px solid #ffc107; /* Yellow for Reply */
    background-color: #fffbe6;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #856404;
}
.comment-reply strong {
    color: #000;
}
