 /* Blog specific styles with dark mode support */
        .blog-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px 8px 0 0;
        }


        .blog-featured-image,
        .blog-post-image,
        .recommendation-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-featured-image {
            height: 250px;
        }

        .recommendation-image {
            height: 180px;
        }

        .blog-post-card:hover .blog-post-image,
        .recommendation-card:hover .recommendation-image {
            transform: scale(1.05);
        }

        .blog-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
        }

        .blog-category {
            font-size: 0.75rem;
            padding: 4px 8px;
        }

        .blog-excerpt {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        .category-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* Dark mode styles */
        .wp-night-mode-on .blog-post-card,
        .wp-night-mode-on .category-card,
        .wp-night-mode-on .recommendation-card {
            background-color: #2c2c2c;
            border-color: #404040;
        }

        .wp-night-mode-on .category-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .wp-night-mode-on .text-muted {
            color: #adb5bd !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .blog-featured-image {
                height: 180px;
            }

            .blog-post-image {
                height: 150px;
            }
        }

        /* Slider customization */
        .blog-slider .slick-track {
            display: flex;
            align-items: stretch;
        }

        .blog-slider .slick-slide > div {
            height: 100%;
        }

        .blog-item {
            margin: 0 10px;
        }


/* Blog Detail Styles */
        .blog-featured-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .blog-featured-image {
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-featured-image:hover {
            transform: scale(1.02);
        }

        .blog-categories .badge {
            font-size: 0.8rem;
            padding: 6px 12px;
        }

        .blog-meta {
            font-size: 0.9rem;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .blog-description {
            background: rgba(0,123,255,0.05);
            border-left: 4px solid #007bff;
            border-radius: 0 8px 8px 0;
        }

        .blog-content-wrapper {
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .blog-content-wrapper img{
            width: 100%;
            height: auto;
            margin: 1.5rem 0;
        }
        .blog-content-wrapper h3 {
            color: var(--manga-title-color, #333);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .blog-content-wrapper h4 {
            color: var(--manga-title-color, #333);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .blog-content-wrapper p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }

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

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

        .blog-thumb-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .breadcrumb {
            font-size: 0.9rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: #6c757d;
        }

        .badge-outline-secondary {
            color: #6c757d;
            border: 1px solid #6c757d;
            background: transparent;
        }

        .badge-outline-secondary:hover {
            background: #6c757d;
            color: white;
        }

        /* Dark mode styles */
        .wp-night-mode-on .blog-description {
            background: rgba(0,123,255,0.1);
            color: #e9ecef;
        }

        .wp-night-mode-on .blog-meta {
            border-bottom-color: #404040;
        }

        .wp-night-mode-on .blog-content-wrapper h3,
        .wp-night-mode-on .blog-content-wrapper h4 {
            color: #e9ecef;
        }

        .wp-night-mode-on .card-custom {
            background-color: #2c2c2c;
            border-color: #404040;
        }

        .wp-night-mode-on .border-bottom {
            border-bottom-color: #404040 !important;
        }

        .wp-night-mode-on .text-muted {
            color: #adb5bd !important;
        }

        .wp-night-mode-on .bg-light {
            background-color: #343a40 !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .blog-featured-image {
                height: 250px;
            }

            .blog-meta {
                font-size: 0.8rem;
            }

            .blog-content-wrapper {
                font-size: 1rem;
            }

            h1 {
                font-size: 1.5rem !important;
            }
        }

        /* Print styles */
        @media print {
            .blog-actions,
            .card,
            .breadcrumb {
                display: none;
            }
        }

        .red {
        background: red;
        }

        .blue {
        background: blue;
        }

        .green {
        background: green;
        }

        .yellow {
        background: yellow;
        }

        .black {
        background: black;
        }

        .white {
        background: white;
        }

        .gray,
        .grey {
        background: gray;
        }

        .orange {
        background: orange;
        }

        .purple {
        background: purple;
        }

        .pink {
        background: pink;
        }

        .brown {
        background: brown;
        }
