<style>
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #06b6d4;
            --accent: #8b5cf6;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #94a3b8;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-2: linear-gradient(135deg, var(--accent), var(--primary));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9fbfd;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Particles background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Blog Post Page Styles */
        .post-page {
            padding: 150px 5% 100px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .post-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .post-category {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 8px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .post-header h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.3;
            color: var(--dark);
        }

        .post-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            margin-bottom: 30px;
            font-size: 1rem;
            color: var(--gray);
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .featured-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #334155;
        }

        .post-content p {
            margin-bottom: 25px;
        }

        .post-content h2 {
            font-size: 2rem;
            margin: 50px 0 25px;
            color: var(--dark);
            position: relative;
            padding-left: 20px;
        }

        .post-content h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 80%;
            width: 6px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .post-content h3 {
            font-size: 1.6rem;
            margin: 40px 0 20px;
            color: var(--primary-dark);
        }

        .post-content blockquote {
            background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--dark);
        }

        .post-content ul, .post-content ol {
            padding-left: 30px;
            margin: 25px 0;
        }

        .post-content li {
            margin-bottom: 15px;
        }

        .post-content img {
            width: 100%;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .author-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin: 80px 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .author-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-details h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .author-details .author-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #e2e8f0;
            color: var(--dark);
            border-radius: 50%;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .related-posts {
            margin: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .related-post {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .related-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .related-image {
            height: 200px;
            overflow: hidden;
        }

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

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

        .related-content {
            padding: 25px;
        }

        .related-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .related-content a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .related-content a:hover {
            color: var(--primary);
        }

        .related-meta {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .read-more:hover {
            color: var(--primary-dark);
            gap: 12px;
        }

        .newsletter {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin: 100px 0;
        }

        .newsletter h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--gray);
            font-size: 1.1rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .newsletter-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .post-header h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .author-card {
                flex-direction: column;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .post-header h1 {
                font-size: 2.3rem;
            }
            
            .featured-image {
                height: 350px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .post-page {
                padding: 130px 5% 80px;
            }
            
            .newsletter {
                padding: 40px 25px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .post-header h1 {
                font-size: 2rem;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .featured-image {
                height: 250px;
            }
            
            .post-content {
                font-size: 1rem;
            }
            
            .post-content h2 {
                font-size: 1.7rem;
            }
            
            .post-content h3 {
                font-size: 1.4rem;
            }
        }
    </style>