* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
            overflow-x: hidden;
        }

        .blog-canvas-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.7;
        }

        .blog-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .blog-hero-section {
            padding: 120px 0 80px;
            text-align: center;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
            border-radius: 24px;
            margin: 40px 0 60px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .blog-category-tag {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .blog-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1e293b, #475569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .blog-hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 400;
        }

        .blog-meta-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .blog-author-card {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .blog-author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
        }

        .blog-author-details h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
        }

        .blog-publish-date {
            color: #64748b;
            font-size: 14px;
        }

        .blog-featured-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-bottom: 60px;
        }

        .blog-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 60px;
            align-items: start;
        }

        .blog-article-content {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .blog-content-h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 20px;
            color: #1e293b;
            position: relative;
        }

        .blog-content-h2::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 30px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 2px;
        }

        .blog-content-h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 16px;
            color: #334155;
        }

        .blog-content-paragraph {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 24px;
            color: #475569;
        }

        .blog-highlight-quote {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
            border-left: 4px solid #6366f1;
            padding: 24px;
            margin: 32px 0;
            border-radius: 8px;
            font-style: italic;
            font-size: 1.25rem;
            color: #1e293b;
        }

        .blog-content-list {
            list-style: none;
            margin: 24px 0;
        }

        .blog-content-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 12px;
            color: #475569;
            font-size: 1.125rem;
        }

        .blog-content-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #6366f1;
            font-weight: bold;
        }

        .blog-sidebar {
            position: sticky;
            top: 40px;
        }

        .blog-sidebar-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            margin-bottom: 32px;
        }

        .blog-sidebar-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1e293b;
        }

        .blog-sidebar-link {
            display: block;
            padding: 12px 0;
            color: #64748b;
            text-decoration: none;
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            transition: all 0.3s ease;
        }

        .blog-sidebar-link:hover {
            color: #6366f1;
            transform: translateX(8px);
        }

        .blog-related-section {
            margin-top: 80px;
            padding: 60px 0;
        }

        .blog-related-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            background: linear-gradient(135deg, #1e293b, #475569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .blog-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .blog-related-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;

        }
        .blog-related-card a{
            text-decoration: none;
        }

        .blog-related-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .blog-related-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }

        .blog-related-content {
            padding: 24px;
        }

        .blog-related-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1e293b;
        }

        .blog-related-excerpt {
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .blog-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .blog-hero-section {
                padding: 80px 20px 60px;
                margin: 20px 0 40px;
            }
            
            .blog-article-content {
                padding: 24px;
            }
            
            .blog-meta-info {
                flex-direction: column;
                gap: 16px;
            }
        }

        .blog-fade-in {
            opacity: 0;
            transform: translateY(40px);
        }

        .blog-slide-in-left {
            opacity: 0;
            transform: translateX(-40px);
        }

        .blog-slide-in-right {
            opacity: 0;
            transform: translateX(40px);
        }