  /* === SINGLE BLOG STYLES - SIMPLE & DATABASE-FRIENDLY === */
        .single-blog-section {
            padding: 100px 0 80px;
            background: var(--gradient-dark);
        }

        .blog-breadcrumb {
            margin-bottom: 2rem;
        }

        .breadcrumb-link {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }

        .breadcrumb-link:hover {
            color: var(--primary-light);
        }

        /* Post Container */
        .blog-post {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Header */
        .post-header {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .post-category {
            background: var(--gradient-primary);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .post-date,
        .post-reading {
            color: var(--gray-400);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .post-title {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin: 0;
        }

        /* Content */
        .post-content {
            color: var(--gray-300);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .post-content h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 4px solid var(--primary);
        }

        .post-content h2:first-of-type {
            margin-top: 0;
        }

        .post-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }

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

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

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

        .post-content strong {
            color: white;
            font-weight: 600;
        }

        /* Highlight Box */
        .highlight-box {
            background: rgba(0, 82, 255, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .highlight-box p {
            margin: 0;
            color: white;
            font-weight: 500;
        }

        /* Footer CTA */
        .post-footer {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-box {
            background: var(--gradient-primary);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
        }

        .cta-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--primary);
            padding: 0.875rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-post {
                padding: 2rem 1.5rem;
            }

            .post-title {
                font-size: 1.5rem;
            }

            .post-content h2 {
                font-size: 1.4rem;
            }

            .post-content h3 {
                font-size: 1.15rem;
            }

            .post-meta {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cta-box {
                padding: 2rem 1.5rem;
            }

            .cta-box h3 {
                font-size: 1.25rem;
            }
        }