/* 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(139, 92, 246, 0.1);
            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(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .news-card {
            background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
            border: 2px solid #54adde;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

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

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

        .news-card-body {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-badge {
            background: #54adde;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
            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; }

        .news-card h5 {
            font-weight: bold;
            margin-bottom: 12px;
            font-size: 1.2rem;
            line-height: 1.4;
        }

        .news-card .meta {
            color: #9ca3af;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }

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

        .news-card p {
            color: #d1d5db;
            margin-bottom: 15px;
            flex: 1;
            line-height: 1.6;
        }

        .btn-read-more {
            background: linear-gradient(45deg, #54adde,#54adde);
            border: none;
        
            padding: 10px 20px;
            border-radius: 20px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            width: fit-content;
        }

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

        /* 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;
        }
