
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .blog-hub {
            background: linear-gradient(135deg, #f8fafc 0%, #f8faff 100%);
            min-height: 100vh;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .page-header {
            background: linear-gradient(135deg, #6F54E6 0%, #5B42C7 100%);
            color: white;
            padding: 80px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            opacity: 0.3;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .header-content {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.25rem;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .search-section {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            width: 100%;
        }

        .search-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .search-field {
            width: 100%;
            padding: 16px 24px 16px 52px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-field::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .search-field:focus {
            border-color: #6F54E6;
            background: rgba(255, 255, 255, 0.15);
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
        }

        .content-area {
            padding: 60px 0;
        }

        .layout-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
            align-items: start;
        }

        .posts-section {
            display: flex;
            flex-direction: column;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e2e8f0;
            }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1e293b;
        }

        .posts-counter {
            background: #6F54E6;
            color: white;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 500;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.3s ease;
            }

        .post-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .post-image-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-card:hover .post-image {
            transform: scale(1.05);
        }

        .post-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(111, 84, 230, 0.9);
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .post-details {
            padding: 24px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .post-date {
            color: #64748b;
            font-size: 14px;
            font-weight: 500;
        }

        .meta-divider {
            width: 4px;
            height: 4px;
            background: #cbd5e1;
            border-radius: 50%;
        }

        .reading-time {
            color: #64748b;
            font-size: 14px;
        }

        .post-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-excerpt {
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #6F54E6;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .read-more-btn:hover {
            color: #5B42C7;
            gap: 12px;
        }

        .sidebar-area {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 5px;
            padding: 28px;
        }

        .widget-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .widget-icon {
            color: #6F54E6;
        }

        .popular-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .popular-item {
            display: flex;
            gap: 12px;
            padding: 12px;
            border-radius: 5px;
            transition: background-color 0.2s ease;
            text-decoration: none;
        }

        .popular-item:hover {
            background: #f8fafc;
        }

        .popular-thumbnail {
            width: 60px;
            height: 60px;
            border-radius: 5px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .popular-content {
            flex: 1;
        }

        .popular-title {
            font-size: 14px;
            font-weight: 500;
            color: #1e293b;
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .popular-date {
            font-size: 12px;
            color: #64748b;
        }

        .newsletter-signup {
            background: linear-gradient(135deg, #6F54E6 0%, #5B42C7 100%);
            color: white;
            text-align: center;
        }

        .newsletter-title {
            color: white;
            margin-bottom: 8px;
        }

        .newsletter-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-input {
            padding: 12px 16px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            outline: none;
        }

        .newsletter-btn {
            padding: 12px 24px;
            background: white;
            color: #6F54E6;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .newsletter-btn:hover {
            background: #f1f5f9;
            transform: translateY(-1px);
        }

        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: #64748b;
        }

        .empty-icon {
            margin: 0 auto 20px;
            opacity: 0.5;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #64748b;
            display: none;
        }

        .pagination-wrapper {
            margin-top: 60px;
            display: flex;
            justify-content: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .layout-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .posts-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .page-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 0 16px;
            }
            
            .page-header {
                padding: 60px 0 80px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            
            .search-field {
                padding: 14px 20px 14px 48px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .post-details {
                padding: 20px;
            }
            
            .sidebar-widget {
                padding: 20px;
            }
            
            .content-area {
                padding: 40px 0;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .post-card:nth-child(1) { animation-delay: 0.1s; }
        .post-card:nth-child(2) { animation-delay: 0.2s; }
        .post-card:nth-child(3) { animation-delay: 0.3s; }
        .post-card:nth-child(4) { animation-delay: 0.4s; }
        .post-card:nth-child(5) { animation-delay: 0.5s; }
        .post-card:nth-child(6) { animation-delay: 0.6s; }
