    /* ============================================
   ✨ ENHANCED ELEGANT BLOG DESIGN
   Premium Typography, Smooth Animations
   ============================================ */

    :root {
        --blog-black: #1a1a1a;
        --blog-dark: #2d2d2d;
        --blog-text: #4a4a4a;
        --blog-light: #8a8a8a;
        --blog-border: #e8e8e8;
        --blog-bg: #ffffff;
        --blog-cream: #faf9f7;
        --blog-accent: #c4956a;
        --blog-accent-light: rgba(196, 149, 106, 0.1);

        --font-serif: 'Cormorant Garamond', Georgia, serif;
        --font-sans: 'Inter', system-ui, sans-serif;
        --font-script: 'Dancing Script', cursive;

        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .blog-wrapper {
        font-family: var(--font-sans);
        background: var(--blog-bg);
        color: var(--blog-dark);
        line-height: 1.6;
    }

    /* Progress Bar - Enhanced */
    #progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blog-accent), #d4a574, var(--blog-accent));
        z-index: 9999;
        width: 0;
        transition: width 0.15s;
        box-shadow: 0 0 10px rgba(196, 149, 106, 0.5);
    }

    /* ============================================
   HERO SECTION - Enhanced
   ============================================ */
    .blog-hero {
        position: relative;
        height: 75vh;
        min-height: 550px;
        overflow: hidden;
    }

    .blog-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: heroZoom 25s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.08);
        }
    }

    .blog-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(ellipse at 50% 80%, rgba(196, 149, 106, 0.15) 0%, transparent 50%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.9) 100%);
    }

    /* ✨ Floating Sparkles */
    .hero-sparkle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--blog-accent);
        border-radius: 50%;
        z-index: 8;
        animation: sparkleFloat 6s ease-in-out infinite;
        pointer-events: none;
    }

    .hero-sparkle--1 {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
    }

    .hero-sparkle--2 {
        top: 30%;
        right: 15%;
        animation-delay: -2s;
    }

    .hero-sparkle--3 {
        bottom: 35%;
        left: 20%;
        animation-delay: -4s;
    }

    .hero-sparkle--4 {
        top: 50%;
        right: 25%;
        animation-delay: -1.5s;
    }

    .hero-sparkle--5 {
        bottom: 50%;
        left: 35%;
        animation-delay: -3s;
    }

    @keyframes sparkleFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: 0.4;
            box-shadow: 0 0 10px rgba(196, 149, 106, 0.5);
        }

        50% {
            transform: translateY(-25px) scale(1.5);
            opacity: 1;
            box-shadow: 0 0 25px rgba(196, 149, 106, 0.8);
        }
    }

    /* Decorative Frame - Enhanced */
    .hero-frame {
        position: absolute;
        inset: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        pointer-events: none;
        z-index: 5;
    }

    .hero-frame::before,
    .hero-frame::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 40px;
        border-color: var(--blog-accent);
        border-style: solid;
        opacity: 0.6;
    }

    .hero-frame::before {
        top: -1px;
        left: -1px;
        border-width: 2px 0 0 2px;
    }

    .hero-frame::after {
        bottom: -1px;
        right: -1px;
        border-width: 0 2px 2px 0;
    }

    @media (max-width: 768px) {
        .hero-frame {
            display: none;
        }
    }

    .blog-hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5rem 4rem;
        max-width: 950px;
        margin: 0 auto;
        z-index: 10;
    }

    @media (max-width: 768px) {
        .blog-hero-content {
            padding: 2.5rem;
        }
    }

    /* Category Badge - Enhanced */
    .blog-category {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        margin-bottom: 1.5rem;
        padding: 0.6rem 1.25rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .blog-category::before {
        content: '✦';
        font-size: 0.6rem;
        opacity: 0.8;
        color: var(--blog-accent) !important;
    }

    /* Title - Enhanced */
    .blog-title {
        font-family: var(--font-serif);
        font-size: clamp(2.25rem, 5.5vw, 4rem);
        font-weight: 600;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        line-height: 1.15;
        margin-bottom: 1.75rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    /* Meta - Enhanced */
    .blog-meta {
        display: flex;
        align-items: center;
        gap: 2rem;
        font-size: 0.9rem;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    .blog-meta span,
    .blog-meta div {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    .blog-meta i {
        color: var(--blog-accent) !important;
        -webkit-text-fill-color: var(--blog-accent) !important;
        color: rgba(255, 255, 255, 0.85);
    }

    .blog-meta-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .blog-meta-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blog-accent), #d4a574);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-weight: 600;
        font-size: 1.1rem;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .blog-meta-divider {
        width: 4px;
        height: 4px;
        background: var(--blog-accent);
        border-radius: 50%;
    }

    /* Scroll Indicator */
    .scroll-hint {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        color: rgba(255, 255, 255, 0.6);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    /* ============================================
   ARTICLE - Enhanced
   ============================================ */
    .blog-article {
        max-width: 720px;
        margin: 0 auto;
        padding: 5rem 2rem;
    }

    /* Excerpt - Enhanced Card */
    .blog-excerpt {
        text-align: center;
        padding: 3rem;
        margin-bottom: 4rem;
        background: var(--blog-cream);
        border-radius: 12px;
        position: relative;
        box-shadow: var(--shadow-sm);
    }

    .blog-excerpt::before {
        content: '"';
        position: absolute;
        top: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-serif);
        font-size: 5rem;
        line-height: 1;
        color: var(--blog-accent);
        opacity: 0.3;
    }

    .blog-excerpt p {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--blog-dark);
        line-height: 1.6;
        margin: 0;
    }

    /* Decorative line after excerpt */
    .blog-excerpt::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--blog-accent), transparent);
    }

    /* Article Body - Enhanced */
    .article-body {
        font-size: 1.125rem;
        line-height: 1.95;
        color: var(--blog-text);
    }

    .article-body p {
        margin-bottom: 1.75rem;
    }

    /* Drop Cap - Enhanced */
    .article-body>p:first-of-type::first-letter {
        float: left;
        font-family: var(--font-serif);
        font-size: 4.5rem;
        line-height: 0.75;
        font-weight: 600;
        color: var(--blog-accent);
        margin-right: 1rem;
        margin-top: 0.15rem;
        text-shadow: 2px 2px 0 rgba(196, 149, 106, 0.15);
    }

    .article-body h2 {
        font-family: var(--font-serif);
        font-size: 1.9rem;
        font-weight: 600;
        color: var(--blog-black);
        margin: 3.5rem 0 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }

    .article-body h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--blog-accent);
    }

    .article-body h3 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--blog-black);
        margin: 2.5rem 0 1rem;
    }

    /* Blockquote - Enhanced */
    .article-body blockquote {
        margin: 3rem -1rem;
        padding: 2.5rem 3rem;
        background: linear-gradient(135deg, var(--blog-cream), rgba(196, 149, 106, 0.08));
        border-left: 4px solid var(--blog-accent);
        border-radius: 0 12px 12px 0;
        font-family: var(--font-serif);
        font-size: 1.4rem;
        font-style: italic;
        color: var(--blog-dark);
        line-height: 1.65;
        box-shadow: var(--shadow-sm);
    }

    .article-body img {
        width: 100%;
        border-radius: 12px;
        margin: 2.5rem 0;
        box-shadow: var(--shadow-md);
    }

    .article-body a {
        color: var(--blog-accent);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.3s;
    }

    .article-body a:hover {
        border-bottom-color: var(--blog-accent);
    }

    .article-body ul,
    .article-body ol {
        margin: 1.75rem 0;
        padding-left: 0;
        list-style: none;
    }

    .article-body li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .article-body li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--blog-accent);
        font-weight: 500;
    }

    /* ============================================
   TAGS & SHARE - Enhanced
   ============================================ */
    .blog-footer {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 2rem 4rem;
    }

    .blog-footer-inner {
        padding: 2.5rem 0;
        border-top: 1px solid var(--blog-border);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .blog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .blog-tag {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--blog-text);
        text-decoration: none;
        padding: 0.5rem 1rem;
        background: var(--blog-cream);
        border-radius: 50px;
        transition: all 0.3s;
    }

    .blog-tag:hover {
        background: var(--blog-accent);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px var(--blog-accent-light);
    }

    .blog-share {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .share-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--blog-light);
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--blog-border);
        background: var(--blog-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blog-light);
        cursor: pointer;
        transition: all 0.3s;
    }

    .share-btn:hover {
        border-color: var(--blog-accent);
        color: var(--blog-accent);
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    /* Fixed Left Share Sidebar - Enhanced */
    .fixed-share-bar {
        position: fixed;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 60px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(196, 149, 106, 0.15);
    }

    .fixed-share-bar::before {
        content: 'SHARE';
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        color: var(--blog-light);
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--blog-border);
        margin-bottom: 0.5rem;
    }

    @media (max-width: 1200px) {
        .fixed-share-bar {
            display: none;
        }
    }

    .fixed-share-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--blog-border);
        background: var(--blog-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blog-light);
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
    }

    .fixed-share-btn:hover {
        transform: scale(1.15);
        box-shadow: 0 6px 20px rgba(196, 149, 106, 0.25);
    }

    .fixed-share-btn.facebook:hover {
        background: #1877f2;
        border-color: #1877f2;
        color: #fff;
    }

    .fixed-share-btn.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        border-color: #dc2743;
        color: #fff;
    }

    .fixed-share-btn.whatsapp:hover {
        background: #25d366;
        border-color: #25d366;
        color: #fff;
    }

    .fixed-share-btn.copy:hover {
        background: var(--blog-accent);
        border-color: var(--blog-accent);
        color: #fff;
    }

    /* ============================================
   AUTHOR - Enhanced Card
   ============================================ */
    .blog-author {
        max-width: 720px;
        margin: 0 auto 5rem;
        padding: 0 2rem;
    }

    .blog-author-inner {
        display: flex;
        gap: 2rem;
        align-items: center;
        padding: 2.5rem;
        background: linear-gradient(135deg, var(--blog-cream), #fff);
        border: 1px solid var(--blog-border);
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s;
    }

    .blog-author-inner:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    @media (max-width: 600px) {
        .blog-author-inner {
            flex-direction: column;
            text-align: center;
        }
    }

    .author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blog-accent), #d4a574);
        padding: 3px;
        flex-shrink: 0;
        box-shadow: 0 6px 20px var(--blog-accent-light);
    }

    .author-avatar-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--blog-cream);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 600;
        color: var(--blog-accent);
    }

    .author-content h4 {
        font-family: var(--font-serif);
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--blog-black);
        margin-bottom: 0.5rem;
    }

    .author-content p {
        font-size: 0.95rem;
        color: var(--blog-text);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .author-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--blog-accent);
        text-decoration: none;
        transition: gap 0.3s;
    }

    .author-link:hover {
        gap: 0.75rem;
    }

    /* ============================================
   RELATED POSTS - Enhanced Cards
   ============================================ */
    .blog-related {
        background: var(--blog-cream);
        padding: 6rem 2rem;
    }

    .related-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .related-script {
        font-family: var(--font-script);
        font-size: 1.5rem;
        color: var(--blog-accent);
        margin-bottom: 0.5rem;
        display: block;
    }

    .related-title {
        font-family: var(--font-serif);
        font-size: 2.25rem;
        font-weight: 600;
        color: var(--blog-black);
    }

    .related-grid {
        max-width: 1150px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    @media (max-width: 900px) {
        .related-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .related-grid {
            grid-template-columns: 1fr;
        }
    }

    .related-card {
        text-decoration: none;
        color: inherit;
        background: var(--blog-bg);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .related-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .related-card-img {
        aspect-ratio: 4/3;
        overflow: hidden;
    }

    .related-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

    .related-card:hover .related-card-img img {
        transform: scale(1.08);
    }

    .related-card-content {
        padding: 1.75rem;
    }

    .related-card h4 {
        font-family: var(--font-serif);
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--blog-black);
        line-height: 1.4;
        margin-bottom: 0.75rem;
        transition: color 0.3s;
    }

    .related-card:hover h4 {
        color: var(--blog-accent);
    }

    .related-card-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--blog-light);
    }

    .related-card-meta i {
        color: var(--blog-accent);
    }

    /* Reveal Animation */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
