
        :root {
            --primary: #0066cc;
            --primary-light: #e6f0ff;
            --secondary: #ff6b6b;
            --dark: #1d3a72;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 12px;
            --box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            /* background-color: #f5f7fb; */
            color: #444;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
      
        
        /* Blog Header */
        .blog-header {
            text-align: center;
            padding: 100px 0 60px;
            background: linear-gradient(120deg, #f5f7fb, #e4edf9);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .blog-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .blog-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }
        
        .blog-header p {
            font-size: 1.25rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* Blog Feed */
        .blog-feed {
            max-width: 800px;
            margin: 0 auto 3rem;
            padding: 0 20px;
        }
        
        /* Blog Post */
        .blog-post {
            background: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 2.5rem;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }
        
        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .post-header {
            padding: 1.8rem 2rem 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
        
        .date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .post-content {
            padding: 1.5rem 2rem;
        }
        
        .post-text {
            margin: 1.2rem 0;
            color: #444;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .post-image {
            width: 100%;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.5s ease;
            max-height: 400px;
            object-fit: cover;
        }
        
        .post-image:hover {
            transform: scale(1.02);
        }
        
        .post-stats {
            display: flex;
            justify-content: space-between;
            padding: 1rem 2rem;
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
            color: var(--gray);
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
            padding: 8px 12px;
            border-radius: 30px;
        }
        
        .stat-item:hover {
            background-color: var(--primary-light);
            color: var(--primary);
        }
        
        .stat-item.liked {
            color: var(--secondary);
        }
        
        .stat-item.liked .fa-heart {
            color: var(--secondary);
        }
        
        .stat-item i {
            font-size: 1.1rem;
        }
        
        /* Comments Section */
        .comments-section {
            padding: 1.5rem 2rem;
        }
        
        .comments-section h6 {
            font-weight: 700;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--dark);
        }
        
        .comments-section h6 i {
            color: var(--primary);
        }
        
        .comments-list {
            margin-bottom: 1.5rem;
        }
        
        .comment {
            display: flex;
            gap: 15px;
            margin-bottom: 1.5rem;
        }
        
        .comment:last-child {
            margin-bottom: 0;
        }
        
        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .comment-content {
            flex: 1;
            background: #f8fafc;
            padding: 12px 16px;
            border-radius: 12px;
        }
        
        .comment-author {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }
        
        .comment-text {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 6px;
        }
        
        .comment-date {
            color: var(--gray);
            font-size: 0.85rem;
        }
        
        .comment-form {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .comment-input {
            padding: 12px 16px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 0.95rem;
            transition: var(--transition);
            font-family: inherit;
        }
        
        .comment-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .comment-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comment-btn:hover {
            background: #0055aa;
            transform: translateY(-2px);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a2a4a, #0d1b33);
            color: #e0e7ff;
            padding: 60px 0 0;
            margin-top: 60px;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        .footer p {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer i {
            color: var(--primary);
            margin-right: 10px;
            min-width: 20px;
            margin-top: 4px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }
        
        .copyright a {
            color: white;
            font-weight: 600;
        }
        
        .copyright a:hover {
            color: var(--secondary);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 2.5rem;
            }
            
            .post-header {
                padding: 1.5rem 1.5rem 0;
            }
            
            .post-content {
                padding: 1.2rem 1.5rem;
            }
            
            .post-title {
                font-size: 1.5rem;
            }
            
            .comments-section {
                padding: 1.2rem 1.5rem;
            }
            
            .post-stats {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .stat-item {
                flex: 1 0 45%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .blog-header {
                padding: 80px 0 40px;
            }
            
            .blog-header h1 {
                font-size: 2rem;
            }
            
            .post-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .post-stats {
                flex-direction: column;
                gap: 5px;
            }
            
            .stat-item {
                width: 100%;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .blog-post {
            animation: fadeIn 0.6s ease-out;
        }
        
        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .notification.show {
            opacity: 1;
            transform: translateY(0);
        }