  /* Category Header */
        .category-header {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin: 30px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .category-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--bn-gradient);
        }

        .category-title {
            font-size: 2.5rem;
            color: var(--bn-dark);
            margin-bottom: 15px;
        }

        .category-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .category-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: var(--bn-accent);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #777;
        }

        /* Main Content Layout */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }

        /* Posts Grid */
        .posts-section {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .section-title {
            padding: 15px 20px;
            background: var(--bn-primary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title h2 {
            font-size: 1.4rem;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            padding: 25px;
        }

        .post-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            background: white;
        }

        .post-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .post-card-content {
            padding: 20px;
        }

        .post-card h3 {
            font-size: 1.2rem;
            line-height: 1.4;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .post-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.85rem;
            border-top: 1px solid #eee;
            padding-top: 12px;
        }

        .short-url-badge {
            background: var(--bn-bg);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: #666;
            font-family: monospace;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            gap: 10px;
        }

        .pagination a, .pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            background: white;
            border: 1px solid #ddd;
            transition: var(--transition);
        }

        .pagination a:hover {
            background: var(--bn-primary);
            color: white;
            border-color: var(--bn-primary);
        }

        .pagination .current {
            background: var(--bn-accent);
            color: white;
            border-color: var(--bn-accent);
        }

        .pagination .disabled {
            background: #f8f9fa;
            color: #6c757d;
            cursor: not-allowed;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .widget-title {
            padding: 15px 20px;
            background: var(--bn-primary);
            color: white;
            font-size: 1.2rem;
        }

        .widget-content {
            padding: 20px;
        }

        .popular-news li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .popular-news li:last-child {
            border-bottom: none;
        }

        .popular-news img {
            width: 70px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-left: 10px;
        }

        .popular-news h4 {
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .categories-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .categories-list li:last-child {
            border-bottom: none;
        }

        .categories-list a {
            transition: var(--transition);
        }

        .categories-list a:hover {
            color: var(--bn-primary);
        }

        .categories-list span {
            background: var(--bn-bg);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tags-cloud a {
            background: var(--bn-bg);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .tags-cloud a:hover {
            background: var(--bn-primary);
            color: white;
        }

        /* No Posts Message */
        .no-posts {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .no-posts i {
            font-size: 4rem;
            color: var(--bn-primary);
            margin-bottom: 20px;
        }

        .no-posts h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Error Page */
        .error-container {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 50px;
            text-align: center;
            margin: 50px 0;
        }

        .error-icon {
            font-size: 4rem;
            color: var(--bn-accent);
            margin-bottom: 20px;
        }

        .error-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .error-message {
            font-size: 1.2rem;
            color: #777;
            margin-bottom: 30px;
        }
