        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }

        :root {
            --primary: #009EF7;
            --secondary: #50CD89;
            --danger: #F1416C;
            --dark: #1B1B18;
            --light: #F3F6F9;
        }

        /* Navbar */
        .navbar {
            background-color: #fff;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
            padding: 15px 0;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary) !important;
        }

        .nav-link {
            color: #6c7293 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }

        /* Header Section */
        .page-header {
            background: linear-gradient(135deg, rgba(0, 158, 247, 0.9) 0%, rgba(80, 205, 137, 0.9) 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .page-header::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .page-header::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.95;
        }

        /* Main Content */
        .news-section {
            padding: 60px 0;
        }

        /* Search & Filter */
        .filter-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }

        .filter-section h5 {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .search-input-group {
            position: relative;
        }

        .search-input-group input {
            border: 2px solid var(--light);
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-input-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 158, 247, 0.1);
        }

        .search-input-group button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            font-size: 18px;
        }

        .kategori-filter {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .kategori-filter button, .kategori-filter a.filter-btn {
            background: var(--light);
            border: 2px solid var(--light);
            color: #6c7293;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .kategori-filter button:hover,
        .kategori-filter button.active,
        .kategori-filter a.filter-btn:hover,
        .kategori-filter a.filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .clear-filter {
            display: inline-block;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
            text-decoration: none;
        }

        .clear-filter:hover {
            text-decoration: underline;
        }

        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-decoration: none;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .news-card-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 220px;
            background: linear-gradient(135deg, #009EF7 0%, #50CD89 100%);
        }

        .news-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-card-image {
            transform: scale(1.08);
        }

        .news-card-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            color: rgba(255, 255, 255, 0.3);
        }

        .news-card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

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

        .news-card-category {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
            width: fit-content;
        }

        .news-card-title {
            color: var(--dark);
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-excerpt {
            color: #6c7293;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--light);
            margin-bottom: 15px;
            font-size: 12px;
            color: #6c7293;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .meta-item i {
            color: var(--primary);
        }

        .news-card-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .news-card-link:hover {
            gap: 12px;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 30px;
        }

        .empty-state-icon {
            font-size: 80px;
            color: var(--light);
            margin-bottom: 20px;
        }

        .empty-state h3 {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .empty-state p {
            color: #6c7293;
            margin-bottom: 30px;
        }

        .empty-state-btn {
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .empty-state-btn:hover {
            background: #0086cc;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 158, 247, 0.3);
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 50px 0;
            flex-wrap: wrap;
        }

        .pagination {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 5px;
            margin: 0;
        }

        .pagination .page-link {
            color: var(--primary);
            border: 1px solid var(--light);
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pagination .page-link:hover {
            background-color: var(--light);
            border-color: var(--primary);
        }

        .pagination .page-item.active .page-link {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .pagination .page-item.disabled .page-link {
            color: #ccc;
            border-color: #e0e0e0;
        }

        .pagination-info {
            color: #6c7293;
            font-size: 14px;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            margin-bottom: 40px;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 50px 0;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .page-header p {
                font-size: 16px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .filter-section {
                padding: 20px;
            }

            .news-section {
                padding: 40px 0;
            }

            .news-card-image-wrapper {
                height: 180px;
            }

            .pagination {
                padding: 10px 15px;
                gap: 3px;
            }

            .pagination-info {
                width: 100%;
                text-align: center;
            }
        }

        /* Loading & Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .news-card {
            animation: fadeIn 0.5s ease forwards;
        }

        .news-card:nth-child(1) {
            animation-delay: 0s;
        }

        .news-card:nth-child(2) {
            animation-delay: 0.05s;
        }

        .news-card:nth-child(3) {
            animation-delay: 0.1s;
        }

        .news-card:nth-child(n+4) {
            animation-delay: 0.15s;
        }
        
