        .kategori-card {
            border-radius: 12px; 
            overflow: hidden; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.06); 
            background: #fff; 
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .kategori-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(147, 4, 28, 0.15);
            border-color: #f39c12;
        }
        .kategori-card img {
            transition: transform 0.5s ease;
        }
        .kategori-card:hover img {
            transform: scale(1.08);
        }
        
        .pagination-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            margin-bottom: 40px;
            padding-top: 25px;
            border-top: 2px dashed #eee;
        }
        .pagination-container .btn {
            border-radius: 30px;
            font-weight: bold;
            padding: 10px 25px;
            background: #f39c12;
            border: none;
            color: white;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
        }
        .pagination-container .btn:hover {
            background: #d35400;
            transform: translateY(-2px);
        }
    
