
                
        /* Blog Post Hero */
        .post-hero {
            padding: 150px 0 30px;
            background: rgb(123 61 255 / 24%);
            position: relative;
            overflow: hidden;
        }
        
        .post-hero-container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .post-category {
            display: inline-block;
            background: hsl(259, 100%, 62%);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .post-hero h1 {
            font-size: 2.0rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            line-height: 1.2;
        }
        
        .post-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            color: var(--gray-color);
        }
        
        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .post-meta-item i {
            color: hsl(259, 100%, 62%);
        }
        
        .author-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .author-details p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* Blog Post Content */
        
        .post-content {
            background: white;
            padding:20px 15px;
        }
        
        .post-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 5px;
        }
        
        .post-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 50px;
        }
        
        .post-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            padding: 5px;
            border-radius: 20px;
        }
        
        .post-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-color);
            display: flex;
            flex-direction: column;
        }
        
        .post-body h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .post-body h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: hsl(259, 100%, 62%);
            border-radius: 2px;
        }
        
        .post-body h3 {
            font-size: 1.5rem;
            margin: 40px 0 15px;
            color: var(--dark-color);
        }
        
        .post-body p {
            margin-bottom: 25px;
        }
        
        .post-body ul, .post-body ol {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        
        .post-body li {
            margin-bottom: 10px;
        }
        
        .post-body blockquote {
            border-left: 4px solid hsl(259, 100%, 62%);
            padding: 20px 30px;
            background: var(--light-blue);
            border-radius: 0 10px 10px 0;
            margin: 40px 0;
            font-style: italic;
            position: relative;
        }
        
        .post-body blockquote:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 3rem;
            color: hsl(259, 100%, 62%);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .post-body code {
            background: #f1f3f4;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
        }
        
        .post-body pre {
            background: #2d2d2d;
            color: #f8f8f2;
            padding: 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 30px 0;
            font-family: 'Courier New', monospace;
            line-height: 1.5;
        }
        
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 50px 0 30px;
        }
        
        .tag {
            background: var(--light-color);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        .post-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            margin: 50px 0;
        }
        
        .social-share h4 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-color);
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
        }
        
        .share-btn.facebook:hover {
            background:hsl(259, 100%, 62%);
            color: white;
        }
        
        .share-btn.twitter:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        .share-btn.linkedin:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        .share-btn.link:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        /* Author Bio */
        .author-bio {
            background: var(--light-blue);
            padding: 40px;
            border-radius: 15px;
            margin: 60px 0;
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .author-bio-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .author-bio-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-bio-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .author-bio-content p {
            margin-bottom: 15px;
            color: var(--gray-color);
        }
        
        .author-social {
            display: flex;
            gap: 10px;
        }
        
        .author-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--light-color);
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .author-social a:hover {
            background: hsl(259, 100%, 62%);
            color: white;
        }
        
        /* Comments Section */
        .comments-section {
            margin: 80px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: hsl(259, 100%, 62%);
            border-radius: 2px;
        }
        
        .comments-list {
            margin-bottom: 50px;
        }
        
        .comment {
            display: flex;
            gap: 20px;
            padding: 30px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .comment:last-child {
            border-bottom: none;
        }
        
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .comment-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .comment-meta {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 10px;
        }
        
        .comment-text {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .comment-reply {
            color: hsl(259, 100%, 62%);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .comment-reply:hover {
            color: hsl(259, 100%, 62%);
        }
        
        .comment-form {
            background: var(--light-blue);
            padding: 40px;
            border-radius: 15px;
        }
        
        .comment-form h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: hsl(259, 100%, 62%);
            box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Related Posts */
        .related-posts {
            background: var(--light-blue);
            padding: 80px 0;
            max-width: 1200px;
            margin: auto;
        }
        
        .related-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .related-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: hsl(259, 100%, 62%);
            border-radius: 2px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .related-img {
            max-height: 400px;
            overflow: hidden;
        }
        
        .related-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .related-card:hover .related-img img {
            transform: scale(1.1);
        }
        
        .related-content {
            padding: 25px;
        }
        
        .related-category {
            display: inline-block;
            background: hsl(259, 100%, 62%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .related-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .related-content h3 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .related-content h3 a:hover {
            color: hsl(259, 100%, 62%);
        }
        
        .related-meta {
            display: flex;
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 15px;
        }
        
        .related-meta span {
            margin-right: 15px;
        }
        
        
        /* Responsive Styles */
        @media (max-width: 768px) {
           
            
            .post-hero h1 {
                font-size: 2.2rem;
            }
            
            .post-image {
                height: auto;
                padding:5px;
            }
            
            .author-bio {
                flex-direction: column;
                text-align: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .comment {
                flex-direction: column;
            }
            
            .post-actions {
                flex-direction: column;
                gap: 30px;
                align-items: flex-start;
            }
            
            .comment-form {
            padding: 0px;
            
        }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .post-hero {
                padding: 120px 0 60px;
            }
            
            .post-hero h1 {
                font-size: 1.8rem;
            }
            
            .post-body h2 {
                font-size: 1.6rem;
            }
            
            .related-title {
                font-size: 1.8rem;
            }
        }
    