/* Page Header */
        .page-header {
            margin-top: 80px;
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.85), rgba(84, 173, 222, 0.3)), 
                        url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1920&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            text-align: center;
            border-bottom: 2px solid #54adde;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #54adde, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #d1d5db;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Category Filter */
        .category-filter {
            padding: 30px 0;
            background: rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 56px;
            z-index: 100;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .filter-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: rgba(84, 173, 222, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 25px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(45deg, #54adde, white);
            border-color: #54adde;
            transform: translateY(-2px);
        }

        /* News Section */
        .news-section {
            padding: 50px 0;
        }

        /* Featured News */
        .featured-news {
            margin-bottom: 60px;
        }

        .featured-card {
            background: rgba(84, 173, 222, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .featured-card:hover {
            border-color: #54adde;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(84, 173, 222, 0.3);
        }

        .featured-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .featured-content {
            padding: 30px;
        }

        .featured-badge {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        .featured-card h2 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .featured-card .meta {
            color: #9ca3af;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .featured-card .meta i {
            color: #54adde;
            margin-right: 5px;
        }

        .featured-card p {
            color: #d1d5db;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    align-items: start;
}

.news-card {
    background: rgba(84, 173, 222, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: #54adde;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(84, 173, 222, 0.3);
}

/* Small image */
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card body */
.news-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Badge */
.news-badge {
    background: #54adde;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.news-badge.community { background: #10b981; }
.news-badge.music { background: #8b5cf6; }
.news-badge.event { background: #f59e0b; }
.news-badge.sports { background: #ef4444; }
.news-badge.interview { background: #06b6d4; }

/* Title - max 2 lines */
.news-card h5 {
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Paragraph - max 2 lines */
.news-card p {
    color: #d1d5db;
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more button */
.btn-read-more {
    background: #54adde;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.75rem;
    width: fit-content;
}

.btn-read-more:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(84, 173, 222, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .news-card img {
        height: 100px;
    }
}
        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .pagination {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
        }

        .page-item {
            display: inline-block;
        }

        .page-link {
            padding: 10px 18px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 8px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }

        .page-link:hover,
        .page-item.active .page-link {
            background: linear-gradient(45deg, #54adde, white);
            border-color: #54adde;
            color: white;
        }
