/* --- KATEGORI FILTER --- */
.category-container {
    display: flex;
    gap: 10px;
    padding: 15px 4%;
    background-color: #111;
    overflow-x: auto;
    border-bottom: 1px solid #333;
}
.cat-btn {
    background-color: #222;
    color: #ccc;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    transition: 0.3s;
}
.cat-btn:hover, .cat-btn.active {
    background-color: #e50914;
    color: white;
    border-color: #e50914;
}

/* --- PAGINATION (Halaman 1, 2, 3) --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.page-btn {
    background-color: #222;
    color: white;
    border: 1px solid #444;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}
.page-btn:hover, .page-btn.active {
    background-color: #e50914;
    border-color: #e50914;
}
