    .post-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    .post-header {
        margin-bottom: 50px;
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .post-categories {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .category-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        display: inline-block;
    }

    .category-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .post-title {
        font-size: 2rem;
        font-weight: 800;
        color: #1a202c;
        line-height: 1.2;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .post-meta-bar {
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 25px 30px;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-radius: 4px;
        flex-wrap: wrap;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin: 30px 0;
    }

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

    .author-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #c5065f;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
        transition: transform 0.3s ease;
    }

    .author-avatar:hover {
        transform: scale(1.05);
    }

    .author-avatar-placeholder {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .author-details strong {
        margin: 0;
        font-size: 1.1rem;
        color: #2d3748;
    }

    .author-details p {
        margin: 0;
        font-size: 0.9rem;
        color: #475569;
    }

    .post-stats {
        display: flex;
        gap: 20px;
        margin-left: auto;
        color: #475569;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #475569;
    }

    .featured-image-container {
        margin: 50px 0;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: fadeIn 0.8s ease-out;
        transition: transform 0.3s ease;
    }

    .featured-image-container:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }

    .featured-image {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Post Excerpt Styling */
    .post-excerpt {
        font-size: 1.3rem;
        color: #4a5568;
        line-height: 1.8;
        margin: 40px 0;
        padding: 25px 30px;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-left: 5px solid #667eea;
        border-radius: 0 12px 12px 0;
        font-style: italic;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    }

    .post-excerpt p {
        margin: 0;
    }

    .post-content {
        font-size: 1.125rem;
        line-height: 1.9;
        color: #2d3748;
        margin: 50px 0;
        animation: fadeIn 1s ease-out;
    }

    .post-content h1,
    .post-content h2,
    .post-content h3,
    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin-top: 2em;
        margin-bottom: 0.8em;
        color: #2d3748;
        font-weight: 700;
        line-height: 1.3;
    }

    .post-content h2 {
        font-size: 2rem;
        padding-bottom: 12px;
        position: relative;
    }

    .post-content h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

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

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

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

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

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2.5em 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .post-content img:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    }

    .post-content blockquote {
        border-left: 5px solid #667eea;
        padding: 20px 30px;
        margin: 2em 0;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-radius: 0 12px 12px 0;
        font-style: italic;
        color: #4a5568;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .post-content blockquote::before {
        content: '\201C';
        font-size: 4rem;
        color: #667eea;
        opacity: 0.2;
        position: absolute;
        top: -10px;
        left: 10px;
        font-family: Georgia, serif;
    }

    .post-content code {
        background: #2d3748;
        color: #f7fafc;
        padding: 3px 8px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
    }

    .post-content pre {
        background: #2d3748;
        color: #f7fafc;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 2em 0;
    }

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

    .post-tags {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin: 50px 0;
        padding: 35px;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .tag-label {
        font-weight: 700;
        color: #2d3748;
        margin-right: 10px;
    }

    .tag {
        background: #fff;
        color: #4a5568;
        padding: 8px 18px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    .tag:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .author-bio-section {
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        padding: 40px;
        border-radius: 16px;
        margin: 50px 0;
        border-left: 5px solid #c90c7a;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .author-bio-section:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }

    .author-bio-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .author-bio-avatar {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ee074d;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transition: transform 0.3s ease;
    }

    .author-bio-avatar:hover {
        transform: scale(1.08);
    }

    .author-bio-avatar-placeholder {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
    }

    .author-bio-name {
        margin: 0;
        font-size: 1.5rem;
        color: #2d3748;
        font-weight: 700;
    }

    .author-bio-text {
        color: #4a5568;
        line-height: 1.7;
        margin: 0;
    }

    .related-posts {
        margin-top: 80px;
        padding-top: 60px;
        border-top: 1px solid #e2e8f0;
    }

    .related-header {
        font-size: 2rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 40px;
        padding-bottom: 20px;
        position: relative;
    }

    .related-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .related-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        color: inherit;
        border: 1px solid #edf2f7;
    }

    .related-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
        border-color: #667eea;
    }

    .related-card:hover .related-image {
        transform: scale(1.05);
    }

    .related-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .related-content {
        padding: 20px;
    }

    .related-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 10px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .related-card:hover .related-title {
        color: #667eea;
    }

    .related-excerpt {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .badges-row {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .badge {
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: inline-block;
    }


    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    @media screen and (max-width: 768px) {
        .post-container {
            padding: 0 15px;
        }

        .post-title {
            font-size: 1.7rem;
            letter-spacing: -0.3px;
        }

        .post-content {
            font-size: 1.05rem;
        }

        .post-meta-bar {
            padding: 20px;
        }

        .post-stats {
            margin-left: 0;
            width: 100%;
            gap: 15px;
        }

        .author-bio-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .author-bio-section {
            padding: 25px;
        }

        .related-grid {
            grid-template-columns: 1fr;
        }

        .scroll-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }

        .share-section {
            padding: 25px 20px;
        }

        .share-buttons {
            justify-content: flex-start;
        }

        .post-excerpt {
            font-size: 1.15rem;
            padding: 20px;
        }

        .breadcrumb {
            padding: 15px 20px;
            font-size: 0.85rem;
        }

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

        .post-content h3 {
            font-size: 1.3rem;
        }
    }
    
    /* Breadcrumb Styles */
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 40px;
        padding: 18px 25px;
        font-size: 0.9rem;
        color: #475569;
        background: #f7fafc;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }
    
    .breadcrumb a {
        color: #4c51bf;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }
    
    .breadcrumb a:hover {
        color: #5a67d8;
        text-decoration: underline;
    }
    
    .breadcrumb-separator {
        color: #64748b;
    }
    
    .breadcrumb-title-desktop {
        display: inline;
    }
    
    .breadcrumb-title-mobile {
        display: none;
    }
    
    @media (max-width: 768px) {
        .breadcrumb-title-desktop {
            display: none;
        }
        
        .breadcrumb-title-mobile {
            display: inline;
        }
    }
    
    /* Share Buttons */
    .share-section {
        margin: 50px 0;
        padding: 35px 40px;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-radius: 16px;
        border-left: 5px solid #cc1881;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .share-section > span {
        display: block;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .share-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .share-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .share-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .share-btn:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .share-btn-twitter {
        background: #1570a6;
    }
    
    .share-btn-twitter:hover {
        background: #0d8bd9;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
    }
    
    .share-btn-facebook {
        background: #4267B2;
    }
    
    .share-btn-facebook:hover {
        background: #365899;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(66, 103, 178, 0.4);
    }
    
    .share-btn-linkedin {
        background: #0077b5;
    }
    
    .share-btn-linkedin:hover {
        background: #046293;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
    }
    
    .share-btn-email {
        background: #718096;
    }
    
    .share-btn-email:hover {
        background: #4a5568;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(113, 128, 150, 0.4);
    }

    /* Reading Progress Bar */
    .reading-progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        z-index: 1000;
        transition: width 0.1s ease;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }

    /* Selection Styling */
    ::selection {
        background: #667eea;
        color: #fff;
    }

    ::-moz-selection {
        background: #667eea;
        color: #fff;
    }

    /* Improve link styling in content */
    .post-content a {
        color: #667eea;
        text-decoration: none;
        border-bottom: 2px solid #667eea40;
        transition: all 0.3s ease;
    }

    .post-content a:hover {
        color: #764ba2;
        border-bottom-color: #764ba2;
    }
