    :root {
        --primary-saffron: #ff9933;
        --secondary-saffron: #e68a00;
        --saffron-light: #fff5e6;
        --text-dark: #2d3748;
        --text-muted: #718096;
    }

    /* --- Header & Hero Section --- */
    .blog-header {
        background: linear-gradient(135deg, #ff9933 0%, #ffb366 100%);
        padding: 4rem 0 5rem;
        color: white;
        margin-bottom: -3rem; /* Overlap effect */
        position: relative;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        background: transparent;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s;
    }
    
    .breadcrumb a:hover { opacity: 0.7; }
    .breadcrumb span { color: rgba(255, 255, 255, 0.7); }
    
    .blog-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .blog-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.95rem;
        opacity: 0.95;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        padding: 6px 14px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    /* --- Main Container & Image --- */
    .blog-container {
        max-width: 850px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 10;
    }
    
    .blog-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border: 4px solid white;
    }
    
    /* --- Content Typography --- */
    .blog-content {
        font-family: 'Merriweather', serif; /* Better reading font */
        font-size: 1.15rem;
        line-height: 1.9;
        color: var(--text-dark);
        margin-bottom: 3rem;
    }
    
    .blog-content p { margin-bottom: 1.5rem; }
    
    .blog-content h2 {
        font-family: 'Poppins', sans-serif;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a202c;
    }

    .blog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }
    
    /* --- Action Buttons (Like, Share, Comment) --- */
    .blog-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .action-group {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-action {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.6rem 1.2rem;
        border: 2px solid #eee;
        background: white;
        color: var(--text-muted);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
    }
    
    .btn-action:hover {
        border-color: var(--primary-saffron);
        color: var(--primary-saffron);
        background: var(--saffron-light);
        transform: translateY(-1px);
    }

    /* Like Button Active State */
    .btn-action.liked-active {
        background: var(--primary-saffron);
        border-color: var(--primary-saffron);
        color: white;
    }
    
    .btn-action.liked-active svg { fill: white; }

    /* --- Comments Section --- */
    .comments-section {
        margin-top: 2rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }
    
    .comments-section.active {
        max-height: 5000px;
        opacity: 1;
        margin-bottom: 4rem;
    }

    .comments-header {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
    
    .comment-form {
        background: var(--saffron-light);
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 153, 51, 0.2);
    }
    
    .comment-form textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid white;
        border-radius: 8px;
        font-size: 1rem;
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
        transition: all 0.3s;
        outline: none;
    }
    
    .comment-form textarea:focus {
        border-color: var(--primary-saffron);
        box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
    }
    
    .submit-btn {
        margin-top: 1rem;
        padding: 0.6rem 1.8rem;
        background: var(--primary-saffron);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        float: right;
    }
    
    .submit-btn:hover { background: var(--secondary-saffron); }
    
    /* Comment Items */
    .comment-item {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid #f0f0f0;
    }
    
    .comment-header-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .comment-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--primary-saffron);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 4px 6px rgba(255, 153, 51, 0.3);
    }
    
    .comment-meta { line-height: 1.3; }
    .comment-author { font-weight: 700; color: var(--text-dark); }
    .comment-time { font-size: 0.85rem; color: #999; }
    .comment-body { color: #4a5568; line-height: 1.6; padding-left: 3.5rem; }
    
    /* Toast Notification for Copy Link */
    #shareToast {
        visibility: hidden;
        min-width: 250px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 4px;
        padding: 12px;
        position: fixed;
        z-index: 1000;
        left: 50%;
        bottom: 30px;
        transform: translateX(-50%);
        font-size: 14px;
    }

    #shareToast.show { visibility: visible; animation: fadein 0.5s, fadeout 0.5s 2.5s; }

    @keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
    @keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .blog-title { font-size: 2rem; }
        .blog-image { height: 250px; margin-bottom: 2rem; }
        .blog-actions { flex-direction: column; align-items: stretch; gap: 10px; }
        .action-group { flex-direction: row; justify-content: space-between; }
        .btn-action { justify-content: center; flex: 1; }
        .comment-body { padding-left: 0; margin-top: 10px; }
    }
