/**
 * Blog Stylesheet for Aaradhyadhrma Website
 * Theme: Modern, Professional
 */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.1) 0%, rgba(37, 224, 160, 0.1) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(110, 143, 255, 0.1);
    top: -150px;
    right: -100px;
    z-index: 0;
}

.blog-hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(37, 224, 160, 0.1);
    bottom: -100px;
    left: -50px;
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.blog-hero-section .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Blog Card Styles */
.blog-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
    position: relative;
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta > span {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.blog-title a {
    color: var(--dark-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-read-more i {
    margin-left: 0.3rem;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

.author-info {
    display: flex;
    align-items: center;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.8rem;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: relative;
    margin-top: 0;
}

@media (min-width: 992px) {
    .position-lg-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 120px;
        z-index: 1;
    }
    
    /* Add padding to prevent content from being hidden under fixed header */
    .blog-detail-content-section {
        padding-top: 30px;
    }
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.sidebar-widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(110, 143, 255, 0.2);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.sidebar-search-form {
    display: flex;
    position: relative;
}

.sidebar-search-input {
    flex: 1;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.sidebar-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 143, 255, 0.2);
}

.sidebar-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
}

.category-list, .tag-list, .recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li, .recent-posts-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child, .recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-count {
    background-color: rgba(110, 143, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(110, 143, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.tag-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(110, 143, 255, 0.1);
    transition: var(--transition);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list li:hover {
    transform: translateX(5px);
}

.recent-post-item {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.recent-post-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.2) 0%, rgba(37, 224, 160, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.recent-post-item:hover .recent-post-img::after {
    opacity: 1;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-item:hover .recent-post-img img {
    transform: scale(1.1);
}

.recent-post-info {
    flex: 1;
}

.recent-post-info h6 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.recent-post-info h6 a {
    color: var(--dark-color);
    transition: var(--transition);
    display: inline-block;
}

.recent-post-info h6 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.recent-post-date i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

/* Pagination Styles */
.pagination-container {
    margin-top: 3rem;
}

.pagination .page-item .page-link {
    color: var(--dark-color);
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(110, 143, 255, 0.3);
}

.pagination .page-item .page-link:hover {
    background-color: rgba(110, 143, 255, 0.1);
    color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    color: var(--gray-color);
    pointer-events: none;
    background-color: transparent;
}

/* Blog Detail Page Styles */
.blog-detail-hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.1) 0%, rgba(37, 224, 160, 0.1) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.blog-detail-hero-section::before,
.blog-detail-hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.blog-detail-hero-section::before {
    width: 300px;
    height: 300px;
    background: rgba(110, 143, 255, 0.1);
    top: -150px;
    right: -100px;
}

.blog-detail-hero-section::after {
    width: 200px;
    height: 200px;
    background: rgba(37, 224, 160, 0.1);
    bottom: -100px;
    left: -50px;
}

.featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-content {
    line-height: 1.8;
    color: #444;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: rgba(110, 143, 255, 0.05);
    font-style: italic;
    color: #555;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content code {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: var(--font-monospace);
    font-size: 0.9em;
}

.post-content pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background-color: transparent;
    padding: 0;
}

.post-author-bio {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--box-shadow);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.5rem;
}

.author-details p {
    margin-bottom: 1rem;
    color: #666;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(110, 143, 255, 0.1);
    color: var(--primary-color);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.post-nav-link {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    max-width: 48%;
}

.post-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-nav-link.prev {
    padding-left: 1rem;
}

.post-nav-link.next {
    flex-direction: row-reverse;
    padding-right: 1rem;
}

.post-nav-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0.5rem;
}

.post-nav-content {
    overflow: hidden;
}

.post-nav-label {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-bottom: 0.3rem;
}

.post-nav-title {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-posts .section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(110, 143, 255, 0.2);
}

.related-posts .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.comments-section {
    margin-top: 3rem;
}

.comments-section .section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(110, 143, 255, 0.2);
}

.comments-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    margin-bottom: 2rem;
}

.comment-body {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-meta h5 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.comment-content {
    margin-bottom: 1rem;
    color: #555;
}

.comment-reply {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.comment-reply i {
    margin-right: 0.3rem;
}

.comment-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
}

.comment-form .form-group {
    margin-bottom: 1.5rem;
}

.comment-form .form-control {
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 143, 255, 0.2);
}

.comment-form textarea.form-control {
    min-height: 150px;
}

.comment-form-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.comment-form-btn:hover {
    box-shadow: 0 5px 15px rgba(110, 143, 255, 0.3);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.1) 0%, rgba(37, 224, 160, 0.1) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before,
.newsletter-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.newsletter-section::before {
    width: 300px;
    height: 300px;
    background: rgba(110, 143, 255, 0.1);
    top: -150px;
    right: -100px;
}

.newsletter-section::after {
    width: 200px;
    height: 200px;
    background: rgba(37, 224, 160, 0.1);
    bottom: -100px;
    left: -50px;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    margin-bottom: 2rem;
    color: #555;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 143, 255, 0.2);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.newsletter-btn:hover {
    box-shadow: 0 5px 15px rgba(110, 143, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 3rem;
        position: static;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-nav-link {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .blog-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-section .lead {
        font-size: 1rem;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        border-radius: var(--border-radius);
        width: 100%;
        padding: 0.8rem;
    }
}

/* Dark Mode Styles */
.dark-mode .blog-card,
.dark-mode .sidebar-widget,
.dark-mode .post-author-bio,
.dark-mode .post-nav-link,
.dark-mode .comment-body,
.dark-mode .comment-form {
    background-color: #1a202c;
    border-color: #2c3144;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .blog-hero-section {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.05) 0%, rgba(37, 224, 160, 0.05) 100%);
}

.dark-mode .blog-hero-section::before,
.dark-mode .blog-hero-section::after,
.dark-mode .newsletter-section::before,
.dark-mode .newsletter-section::after {
    opacity: 0.1;
}

.dark-mode .blog-title a,
.dark-mode .sidebar-widget-title,
.dark-mode .category-list a,
.dark-mode .recent-post-info h6 a,
.dark-mode .post-content,
.dark-mode .author-details h4,
.dark-mode .post-nav-title,
.dark-mode .comment-meta h5,
.dark-mode .newsletter-title,
.dark-mode .section-title {
    color: #f0f0f0;
}

.dark-mode .blog-excerpt,
.dark-mode .author-details p,
.dark-mode .post-content,
.dark-mode .comment-content,
.dark-mode .blog-meta span,
.dark-mode .newsletter-description {
    color: #adb5bd;
}

.dark-mode .blog-read-more {
    color: var(--primary-color);
}

.dark-mode .blog-read-more:hover {
    color: var(--secondary-color);
}

.dark-mode .blog-img div {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.05) 0%, rgba(37, 224, 160, 0.05) 100%) !important;
}

.dark-mode .blog-category-badge {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.8) 0%, rgba(37, 224, 160, 0.8) 100%);
}

.dark-mode .category-list li, 
.dark-mode .recent-posts-list li {
    border-bottom-color: #2c3144;
}

.dark-mode .category-count {
    background-color: rgba(110, 143, 255, 0.2);
    color: var(--primary-color);
}

.dark-mode .tag-link {
    background-color: rgba(110, 143, 255, 0.1);
    color: var(--primary-color);
}

.dark-mode .tag-link:hover {
    background-color: var(--primary-color);
    color: #121825;
}

.dark-mode .recent-post-img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.dark-mode .recent-post-img div {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.1) 0%, rgba(37, 224, 160, 0.1) 100%) !important;
}

.dark-mode .sidebar-search-input,
.dark-mode .newsletter-input,
.dark-mode .comment-form .form-control {
    background-color: #2c3144;
    border-color: #2c3144;
    color: #f0f0f0;
}

.dark-mode .sidebar-search-input:focus,
.dark-mode .newsletter-input:focus,
.dark-mode .comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 143, 255, 0.3);
}

.dark-mode .sidebar-search-input::placeholder,
.dark-mode .newsletter-input::placeholder,
.dark-mode .comment-form .form-control::placeholder {
    color: #adb5bd;
}

.dark-mode .sidebar-search-btn {
    color: var(--primary-color);
}

.dark-mode .post-content code,
.dark-mode .post-content pre {
    background-color: #2c3144;
    color: #f0f0f0;
}

.dark-mode .newsletter-section {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.05) 0%, rgba(37, 224, 160, 0.05) 100%);
}

.dark-mode .comment-avatar .author-placeholder,
.dark-mode .author-avatar .author-placeholder {
    background: linear-gradient(135deg, rgba(110, 143, 255, 0.3) 0%, rgba(37, 224, 160, 0.3) 100%);
    color: #f0f0f0;
}

.dark-mode .pagination .page-item .page-link {
    background-color: transparent;
    color: #f0f0f0;
}

.dark-mode .pagination .page-item .page-link:hover {
    background-color: rgba(110, 143, 255, 0.2);
}

.dark-mode .alert-info {
    background-color: rgba(110, 143, 255, 0.1);
    border-color: rgba(110, 143, 255, 0.2);
    color: #f0f0f0;
}

.dark-mode .social-share-btn {
    background-color: #2c3144;
    color: #f0f0f0;
}

.dark-mode .social-share-btn:hover {
    background-color: var(--primary-color);
    color: #121825;
}
